ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1RpcTriggerAnalysis/interface/SynchroSelectorL1Muon.h
Revision: 1.1
Committed: Thu Mar 24 21:39:22 2011 UTC (14 years, 1 month ago) by konec
Content type: text/plain
Branch: MAIN
CVS Tags: Artur_11_07_2013_B, Artur_11_07_2013_A, Artur_11_07_2013, Artur_28_06_2013, Mikolaj_cmssw533, Mikolaj_cmssw52x, Kasia_30_04_2012, Mikolaj_08_10_2011, Mikolaj_05_10_2011, Mikolaj_14_09_2011, Artur_27_07_2011, Artur_25_07_2011, HEAD
Log Message:
*** empty log message ***

File Contents

# Content
1 #ifndef SynchroSelectorL1Muon_H
2 #define SynchroSelectorL1Muon_H
3
4 #include "UserCode/L1RpcTriggerAnalysis/interface/SynchroSelector.h"
5 #include <vector>
6 #include "DataFormats/L1GlobalMuonTrigger/interface/L1MuRegionalCand.h"
7
8 class TObjArray;
9 class TH1F;
10
11
12 class SynchroSelectorL1Muon : public SynchroSelector {
13 public:
14 SynchroSelectorL1Muon(const edm::ParameterSet&, TObjArray&);
15 virtual ~SynchroSelectorL1Muon(){}
16 virtual void update(const edm::Event&ev, const edm::EventSetup& es);
17 virtual bool takeIt(const RPCDetId & det, const edm::Event&ev, const edm::EventSetup& es);
18 private:
19 std::vector<L1MuRegionalCand> theL1Muons;
20 TH1F *hDeltaEta, *hDeltaPhi;
21 };
22 #endif
23