CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/Validation/MuonCSCDigis/src/CSCDigiValidation.h

Go to the documentation of this file.
00001 #ifndef CSCDigiValidation_H
00002 #define CSCDigiValidation_H
00003 
00004 // user include files
00005 
00006 #include "FWCore/Framework/interface/Event.h"
00007 #include "FWCore/Framework/interface/ESHandle.h"
00008 #include "FWCore/Framework/interface/EDAnalyzer.h"
00009 
00010 #include "DQMServices/Core/interface/DQMStore.h"
00011 #include "SimMuon/MCTruth/interface/PSimHitMap.h"
00012 #include "Geometry/CSCGeometry/interface/CSCGeometry.h"
00013 
00014 class CSCStripDigiValidation;
00015 class CSCWireDigiValidation;
00016 class CSCComparatorDigiValidation;
00017 class CSCALCTDigiValidation;
00018 class CSCCLCTDigiValidation;
00019 
00020 class CSCDigiValidation : public edm::EDAnalyzer {
00021 public:
00022   explicit CSCDigiValidation(const edm::ParameterSet&);
00023   ~CSCDigiValidation();
00024   virtual void analyze(const edm::Event&, const edm::EventSetup&);
00025   virtual void endJob() ;
00026  
00027 
00028  private:
00029   DQMStore* dbe_;
00030   std::string outputFile_;
00031   PSimHitMap theSimHitMap;
00032   CSCGeometry * theCSCGeometry;
00033 
00034   CSCStripDigiValidation      * theStripDigiValidation;
00035   CSCWireDigiValidation       * theWireDigiValidation;
00036   CSCComparatorDigiValidation * theComparatorDigiValidation;
00037   CSCALCTDigiValidation * theALCTDigiValidation;
00038   CSCCLCTDigiValidation * theCLCTDigiValidation;
00039 
00040 };
00041 
00042 #endif
00043