Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:34

0001 #ifndef jhugon_StatisticsFile_h
0002 #define jhugon_StatisticsFile_h
0003 
0004 // system include files
0005 #include <vector>
0006 #include <string>
0007 #include <iostream>
0008 #include <fstream>
0009 
0010 // user include files
0011 
0012 namespace csctf_analysis {
0013   class StatisticsFile {
0014   public:
0015     StatisticsFile();
0016     StatisticsFile(const std::string);
0017     ~StatisticsFile();
0018 
0019     void Create(const std::string);
0020     void Close() { statFileOut.close(); }
0021 
0022     void WriteStatistics(TrackHistogramList tfHistList, TrackHistogramList refHistList);
0023 
0024     ofstream statFileOut;
0025 
0026   private:
0027   };
0028 }  // namespace csctf_analysis
0029 #endif