00001 #ifndef DTAlbertoBenvenutiTask_H 00002 #define DTAlbertoBenvenutiTask_H 00003 00004 00005 /* 00006 * \file DTAlbertoBenvenutiTask.h 00007 * 00008 * $Date: 2010/01/05 10:14:40 $ 00009 * $Revision: 1.4 $ 00010 * \author G. Mila - INFN Torino 00011 * 00012 */ 00013 00014 00015 #include "FWCore/Framework/interface/Frameworkfwd.h" 00016 #include <FWCore/Framework/interface/EDAnalyzer.h> 00017 #include <DataFormats/Common/interface/Handle.h> 00018 #include <FWCore/Framework/interface/ESHandle.h> 00019 #include <FWCore/Framework/interface/Event.h> 00020 #include <FWCore/Framework/interface/MakerMacros.h> 00021 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00022 00023 #include "DataFormats/LTCDigi/interface/LTCDigi.h" 00024 00025 #include <memory> 00026 #include <iostream> 00027 #include <fstream> 00028 #include <string> 00029 #include <vector> 00030 #include <map> 00031 #include "TH1F.h" 00032 00033 class DTGeometry; 00034 class DTWireId; 00035 class DTTtrig; 00036 class DTT0; 00037 00038 00039 class DTAlbertoBenvenutiTask: public edm::EDAnalyzer{ 00040 00041 public: 00042 00044 DTAlbertoBenvenutiTask(const edm::ParameterSet& ps); 00045 00047 virtual ~DTAlbertoBenvenutiTask(); 00048 00049 protected: 00050 00052 void beginJob(); 00053 00054 void beginRun(const edm::Run&, const edm::EventSetup&); 00055 00057 void bookHistos(const DTWireId dtWire); 00058 00060 void analyze(const edm::Event& e, const edm::EventSetup& c); 00061 00063 void endJob(); 00064 00065 private: 00066 00067 bool debug; 00068 int nevents; 00069 00071 int tMax; 00072 int maxTDCHits; 00073 00075 float tTrig; 00076 float tTrigRMS; 00077 float kFactor; 00078 00079 edm::Handle<LTCDigiCollection> ltcdigis; 00080 00081 edm::ParameterSet parameters; 00082 00083 edm::ESHandle<DTGeometry> muonGeom; 00084 00085 edm::ESHandle<DTTtrig> tTrigMap; 00086 edm::ESHandle<DTT0> t0Map; 00087 00088 std::string outputFile; 00089 00090 std::map<DTWireId, TH1F*> TBMap; 00091 00092 00093 }; 00094 00095 #endif