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
|