ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1RpcTriggerAnalysis/interface/AnaSiMuDistribution.h
Revision: 1.2
Committed: Mon May 20 23:27:11 2013 UTC (11 years, 11 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: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 konec 1.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 konec 1.2 double ptMin, ptMax, etaMinRef, etaMaxRef, phiMinRef, phiMaxRef;
21 konec 1.1 bool checkMatchedDets;
22     std::vector<uint32_t> matchedDets;
23     };
24     #endif
25