Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:56:43

0001 #ifndef Alignment_MuonAlignmentAlgorithms_ReadPGInfo_H
0002 #define Alignment_MuonAlignmentAlgorithms_ReadPGInfo_H
0003 
0004 /** \class ReadPGInfo
0005  *  $Date: 2010/02/25 11:33:32 $
0006  *  $Revision: 1.3 $
0007  *  \author Luca Scodellaro <Luca.Scodellaro@cern.ch>
0008  */
0009 
0010 #include <TFile.h>
0011 #include <TMatrixD.h>
0012 #include <TMath.h>
0013 
0014 #define TOTALCHAMBERS 264
0015 
0016 class ReadPGInfo {
0017 public:
0018   ReadPGInfo(const char *name);
0019   ~ReadPGInfo();
0020   char *getId(int, int, int);
0021   TMatrixD giveR(int, int, int);
0022   TMatrixD giveQC(int, int, int);
0023   TMatrixD giveSurvey(int, int, int);
0024   TMatrixD giveQCCal(int, int, int);
0025 
0026 private:
0027   TFile *rootFile;
0028 };
0029 
0030 #endif