Line | |
---|
1 | #ifndef MARS_MJStar
|
---|
2 | #define MARS_MJStar
|
---|
3 |
|
---|
4 | #ifndef MARS_MJob
|
---|
5 | #include "MJob.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MJStar : public MJob
|
---|
9 | {
|
---|
10 | private:
|
---|
11 | Bool_t fMuonAnalysis;
|
---|
12 |
|
---|
13 | Bool_t WriteResult();
|
---|
14 | Bool_t CheckEnvLocal();
|
---|
15 |
|
---|
16 | public:
|
---|
17 | MJStar(const char *name=NULL, const char *title=NULL);
|
---|
18 |
|
---|
19 | // Setup
|
---|
20 | void DisableMuonAnalysis(Bool_t b=kTRUE) { fMuonAnalysis = !b; }
|
---|
21 |
|
---|
22 | // Process
|
---|
23 | Bool_t Process();
|
---|
24 |
|
---|
25 | ClassDef(MJStar, 0) // Tool to create a pedestal file (MPedestalCam)
|
---|
26 | };
|
---|
27 |
|
---|
28 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.