// tsncom27.cc // Nick Macks (macks@fnal.gov), Summer 2002 // CLHEP: HepSymMatrix*HepVector multiplication #include "CLHEP/Matrix/Vector.h" #include "CLHEP/Matrix/SymMatrix.h" using namespace std; // Function declarations void Identification(); void GetDimensions(int&); void Describe(const int&); void BuildMatrix(HepSymMatrix&, const int&); void BuildVector(HepVector&, const int&); void Show(const HepSymMatrix&, const HepVector&); void GetCalcs(int&); void GetRuns(int&); void Calculate(HepSymMatrix&, HepVector&, const int&, const int&, const int&); // Package ID void Identification() { cout << "Using CLHEP\n"; } // Ask for the desired dimensions void GetDimensions(int& dimension) { cout << "Enter the desired dimension(1-6): "; cin >> dimension; while ( (dimension < 1) || (dimension > 6) ) { cout << "Enter an integer between 1 and 6: "; cin >> dimension; } } // Describe how the matrix and the vector were defined void Describe(const int& dimension) { cout << "Matrix was defined 'HepSymMatrix (" << dimension << ")'\n"; cout << "Vector was defined 'HepVector (" << dimension << ")'\n"; } // Build the matrix void BuildMatrix(HepSymMatrix& matrix, const int& dimension) { for (int i=0; i j) matrix[i][j] = 2 + i*2 + j*(dimension*2); } } } // Build the vector void BuildVector(HepVector& vector, const int& dimension) { for (int i=0; i> N; } // Get the number of runs void GetRuns(int& run) { cout << "How many runs? "; cin >> run; cout << "\n"; } // Multiply the HepSymMatrix with the HepVector void Calculate(HepSymMatrix& matrix, HepVector& vector, const int& dimension, const int& N, const int& runs) { // Define a counter int counter = 0; // Define a vector to hold the result HepVector product (dimension); // Loop "run" times for (int r=0; r