// tsncom13.cc // Nick Macks (macks@fnal.gov), Summer 2002 // CLHEP: HepMatrix trace calculation #include "CLHEP/Matrix/Matrix.h" using namespace std; // Function declarations void Identification(); void GetDimension(int&); void Describe(const int&); void BuildMatrix(HepMatrix&, const int&); void Show(const HepMatrix&); void GetCalcs(int&); void GetRuns(int&); void Calculate(HepMatrix&, const int&, const int&); // Package ID void Identification() { cout << "Using CLHEP\n"; } // Ask for the desired dimension void GetDimension(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 HepMatrix was defined void Describe(const int& dimension) { cout << "Matrix was defined 'HepMatrix (" << dimension << ", " << dimension << ")'\n"; } // Build the HepMatrix void BuildMatrix(HepMatrix& matrix, 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"; } // Find the trace of the HepMatrix void Calculate(HepMatrix& matrix, const int& N, const int& run) { // Define a counter int counter = 0; // Define a double to hold the result double trace = 0.; // Loop "run" times for (int r=0; r