1 |
#ifndef UserCode_L1RpcTriggerAnalysis_AnaSiMuDistribution_H
|
2 |
#define UserCode_L1RpcTriggerAnalysis_AnaSiMuDistribution_H
|
3 |
|
4 |
|
5 |
class TObjArray;
|
6 |
class HitSpecObj;
|
7 |
class TrackObj;
|
8 |
class EventObj;
|
9 |
#include <vector>
|
10 |
#include <cstdint>
|
11 |
|
12 |
namespace edm {class ParameterSet;}
|
13 |
|
14 |
class AnaSiMuDistribution {
|
15 |
public:
|
16 |
AnaSiMuDistribution (const edm::ParameterSet&);
|
17 |
void init(TObjArray& histos);
|
18 |
bool filter(const EventObj* ev, const TrackObj * simu, const HitSpecObj * hitSpec);
|
19 |
private:
|
20 |
double ptMin, ptMax, etaMinRef, etaMaxRef, phiMinRef, phiMaxRef;
|
21 |
bool checkMatchedDets;
|
22 |
std::vector<uint32_t> matchedDets;
|
23 |
};
|
24 |
#endif
|
25 |
|