ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1RpcTriggerAnalysis/interface/SynchroSelectorMuon.h
Revision: 1.2
Committed: Mon Oct 1 19:19:57 2012 UTC (12 years, 7 months 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, HEAD
Changes since 1.1: +5 -0 lines
Log Message:
major changes,

File Contents

# Content
1 #ifndef SynchroSelectorMuon_H
2 #define SynchroSelectorMuon_H
3
4 #include "UserCode/L1RpcTriggerAnalysis/interface/SynchroSelector.h"
5
6 class TObjArray;
7 class TH1F;
8 class TrajectoryStateOnSurface;
9
10 class SynchroSelectorMuon : public SynchroSelector {
11 public:
12 SynchroSelectorMuon(const edm::ParameterSet&, TObjArray& );
13 SynchroSelectorMuon(const edm::ParameterSet&);
14 void initHistos(TObjArray& histos);
15 virtual ~SynchroSelectorMuon(){}
16 virtual bool takeIt(const RPCDetId & det, const edm::Event&ev, const edm::EventSetup& es);
17 bool checkTraj( TrajectoryStateOnSurface & aTSOS, const RPCDetId & det,
18 const edm::Event&ev, const edm::EventSetup& es);
19 private:
20 TH1F * hDxy ;
21 };
22 #endif