CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_13_patch3/src/CalibMuon/DTCalibration/plugins/DTFakeTTrigESProducer.h

Go to the documentation of this file.
00001 #ifndef _DTFAKETTRIG_H
00002 #define _DTFAKETTRIG_H
00003 
00012 // system include files
00013 #include <memory>
00014 
00015 // user include files
00016 #include "FWCore/Framework/interface/Frameworkfwd.h"
00017 #include "FWCore/Framework/interface/ESProducer.h"
00018 #include "FWCore/Framework/interface/EventSetupRecordIntervalFinder.h"
00019 
00020 #include "FWCore/Framework/interface/Event.h"
00021 #include "FWCore/Framework/interface/MakerMacros.h"
00022 
00023 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00024 
00025 class DTTtrig;
00026 class DTTtrigRcd;
00027 
00028 class DTFakeTTrigESProducer : public edm::ESProducer, public edm::EventSetupRecordIntervalFinder  {
00029 public:
00030   DTFakeTTrigESProducer(const edm::ParameterSet&);
00031   virtual ~DTFakeTTrigESProducer();
00032   
00033   DTTtrig* produce(const DTTtrigRcd&);
00034 private:
00035   // ----------member data ---------------------------
00036   void setIntervalFor(const edm::eventsetup::EventSetupRecordKey &, const edm::IOVSyncValue&, edm::ValidityInterval & );
00037   
00038   double tMean;
00039   double sigma;
00040   double kFact;
00041 };
00042 
00043 #endif