Line | |
---|
1 | #ifndef MARS_MTriggerPrescFact
|
---|
2 | #define MARS_MTriggerPrescFact
|
---|
3 |
|
---|
4 | #ifndef MARS_MParContainer
|
---|
5 | #include "MParContainer.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | #ifndef ROOT_TArrayL
|
---|
9 | #include <TArrayL.h>
|
---|
10 | #endif
|
---|
11 |
|
---|
12 | class MTriggerPrescFact : public MParContainer
|
---|
13 | {
|
---|
14 | friend class MReportTrigger;
|
---|
15 |
|
---|
16 | private:
|
---|
17 |
|
---|
18 | static const Int_t gsNPrescFacts=8; // number of factors
|
---|
19 |
|
---|
20 | TArrayL fPrescFact; // Array with the prescaling factors
|
---|
21 |
|
---|
22 | public:
|
---|
23 | MTriggerPrescFact() : fPrescFact(gsNPrescFacts)
|
---|
24 | {
|
---|
25 | fName = "MTriggerPrescFact";
|
---|
26 | fTitle = "Container for the L2 Prescaling Factors ";
|
---|
27 | }
|
---|
28 |
|
---|
29 | TArrayL GetPrescFactors() const { return fPrescFact; }
|
---|
30 |
|
---|
31 | Double_t operator[](const Int_t idx)
|
---|
32 | {
|
---|
33 | if (idx > gsNPrescFacts)
|
---|
34 | return kFALSE;
|
---|
35 |
|
---|
36 | return fPrescFact[idx];
|
---|
37 | }
|
---|
38 |
|
---|
39 | ClassDef(MTriggerPrescFact, 1) // Container for the L2 Prescaling Factors
|
---|
40 | };
|
---|
41 |
|
---|
42 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.