Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-07 04:35:40

0001 #ifndef SiStripDeDxMipBuilder_H
0002 #define SiStripDeDxMipBuilder_H
0003 
0004 #include "FWCore/MessageLogger/interface/MessageLogger.h"
0005 #include "FWCore/Utilities/interface/Exception.h"
0006 #include "FWCore/Framework/interface/ESHandle.h"
0007 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0008 #include "FWCore/Framework/interface/one/EDAnalyzer.h"
0009 #include "FWCore/Framework/interface/Event.h"
0010 //#include "FWCore/Utilities/interface/FileInPath.h"
0011 
0012 #include "CondFormats/PhysicsToolsObjects/interface/Histogram2D.h"
0013 
0014 //#include "CLHEP/Random/RandFlat.h"
0015 //#include "CLHEP/Random/RandGauss.h"
0016 
0017 class SiStripDeDxMipBuilder : public edm::one::EDAnalyzer<> {
0018 public:
0019   explicit SiStripDeDxMipBuilder(const edm::ParameterSet& iConfig);
0020 
0021   ~SiStripDeDxMipBuilder() {}
0022 
0023   virtual void analyze(const edm::Event&, const edm::EventSetup&);
0024 
0025 private:
0026   //edm::FileInPath fp_;
0027   bool printdebug_;
0028 };
0029 
0030 #endif