File indexing completed on 2024-04-06 11:57:22
0001 #ifndef Alignment_SurveyAnalysis_SurveyOutput_h
0002 #define Alignment_SurveyAnalysis_SurveyOutput_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #include <vector>
0014
0015 #include "TFile.h"
0016
0017 #include "Alignment/CommonAlignment/interface/Utilities.h"
0018
0019 class Alignable;
0020
0021 class SurveyOutput {
0022 public:
0023 SurveyOutput(const align::Alignables&, const std::string& fileName);
0024
0025
0026 void write(unsigned int iter
0027 );
0028
0029 private:
0030 const align::Alignables& theAlignables;
0031
0032 TFile theFile;
0033 };
0034
0035 #endif