Go to the documentation of this file.00001 #ifndef MuonRPCGeometry_RPCPhiEff_h
00002 #define MuonRPCGeometry_RPCPhiEff_h
00003
00004
00005 #include <memory>
00006
00007
00008 #include "FWCore/Framework/interface/Frameworkfwd.h"
00009 #include "FWCore/Framework/interface/EDAnalyzer.h"
00010
00011 #include "FWCore/Framework/interface/Event.h"
00012 #include "FWCore/Framework/interface/MakerMacros.h"
00013
00014 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00015
00016 #include <SimDataFormats/Track/interface/SimTrackContainer.h>
00017
00018 #include "DataFormats/MuonDetId/interface/RPCDetId.h"
00019 #include "DataFormats/RPCDigi/interface/RPCDigiCollection.h"
00020
00021 #include <L1Trigger/RPCTrigger/interface/RPCLogCone.h>
00022 #include <L1Trigger/RPCTrigger/interface/RPCConst.h>
00023
00024 #include "DataFormats/L1GlobalMuonTrigger/interface/L1MuRegionalCand.h"
00025
00026 #include "DataFormats/Math/interface/LorentzVector.h"
00027
00028 #include <iostream>
00029 #include <set>
00030 #include <fstream>
00031 #include <sstream>
00032
00033 #include "L1Trigger/RPCTrigger/interface/RPCConst.h"
00034
00035
00036
00037
00038
00039 class RPCPhiEff:public edm::EDAnalyzer {
00040 public:
00041 explicit RPCPhiEff(const edm::ParameterSet &);
00042 ~RPCPhiEff();
00043
00044
00045 private:
00046 virtual void beginJob(const edm::EventSetup &);
00047 virtual void analyze(const edm::Event &, const edm::EventSetup &);
00048 std::string fromCones(const edm::Event & iEvent);
00049 std::string fromRaw(const edm::Event & iEvent);
00050 virtual void endJob();
00051 std::ofstream m_outfileC;
00052 std::ofstream m_outfileR;
00053
00054
00055
00056
00057 RPCConst rpcconst;
00058
00059 edm::InputTag m_rpcb;
00060 edm::InputTag m_rpcf;
00061 edm::InputTag m_g4;
00062 edm::InputTag m_rpcdigi;
00063
00064 RPCConst m_const;
00065
00066
00067 };
00068
00069 #endif
00070