| Line | |
|---|
| 1 | #ifndef MARS_MCalibColorSet
|
|---|
| 2 | #define MARS_MCalibColorSet
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MARS_MTask
|
|---|
| 5 | #include "MTask.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | class MParList;
|
|---|
| 9 | class MRawEvtHeader;
|
|---|
| 10 |
|
|---|
| 11 | class MCalibColorSet : public MTask
|
|---|
| 12 | {
|
|---|
| 13 | private:
|
|---|
| 14 |
|
|---|
| 15 | static const Int_t gkIFAEBoxInaugurationRun; //! Run number of first IFAE box calibration (set to: 20113)
|
|---|
| 16 | static const Int_t gkMCRunLimit; //! Maximum MC run number (now set to: 1000)
|
|---|
| 17 |
|
|---|
| 18 | MRawEvtHeader *fHeader; //! Event header with the pulse pattern information
|
|---|
| 19 |
|
|---|
| 20 | UInt_t fPattern; // Current pulse pattern
|
|---|
| 21 | Bool_t fIsValid; // Have to set the pulse pattern?
|
|---|
| 22 |
|
|---|
| 23 | Bool_t ReInit(MParList *pList);
|
|---|
| 24 | Int_t PreProcess(MParList *pList);
|
|---|
| 25 | Int_t Process();
|
|---|
| 26 |
|
|---|
| 27 | public:
|
|---|
| 28 |
|
|---|
| 29 | MCalibColorSet(const char *name=NULL, const char *title=NULL);
|
|---|
| 30 |
|
|---|
| 31 | void Clear(const Option_t *o="");
|
|---|
| 32 |
|
|---|
| 33 | ClassDef(MCalibColorSet, 0) // Task to workaround missing colors
|
|---|
| 34 | };
|
|---|
| 35 |
|
|---|
| 36 | #endif
|
|---|
| 37 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.