Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:57:22

0001 #ifndef Alignment_SurveyAnalysis_SurveyOutput_h
0002 #define Alignment_SurveyAnalysis_SurveyOutput_h
0003 
0004 /** \class SurveyOutput
0005  *
0006  *  Write variables to ntuple for survey analysis.
0007  *
0008  *  $Date: 2007/01/09 $
0009  *  $Revision: 1 $
0010  *  \author Chung Khim Lae
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   /// write out variables
0026   void write(unsigned int iter  // iteration number
0027   );
0028 
0029 private:
0030   const align::Alignables& theAlignables;
0031 
0032   TFile theFile;
0033 };
0034 
0035 #endif