Line | |
---|
1 | #ifndef MARS_MJSimulation
|
---|
2 | #define MARS_MJSimulation
|
---|
3 |
|
---|
4 | #ifndef MARS_MJob
|
---|
5 | #include "MJob.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MHn;
|
---|
9 | class MArgs;
|
---|
10 | class MParList;
|
---|
11 |
|
---|
12 | class MJSimulation : public MJob
|
---|
13 | {
|
---|
14 | private:
|
---|
15 | Bool_t fForceMode; // Force execution even if RUNE-section was not foundm
|
---|
16 |
|
---|
17 | Bool_t fCamera; // Switch on/off camera (for fast reflector processing)
|
---|
18 | Bool_t fForceTrigger; // Force the use of the trigger "electronics"
|
---|
19 |
|
---|
20 | Bool_t WriteResult(const MParList &plist);
|
---|
21 | Bool_t CheckEnvLocal();
|
---|
22 |
|
---|
23 | void SetupHist(MHn &hist) const;
|
---|
24 |
|
---|
25 | public:
|
---|
26 | MJSimulation(const char *name=NULL, const char *title=NULL);
|
---|
27 |
|
---|
28 | void SetForceMode(Bool_t force=kTRUE) { fForceMode = force; }
|
---|
29 |
|
---|
30 | // Process
|
---|
31 | Bool_t Process(const MArgs &args);
|
---|
32 |
|
---|
33 | ClassDef(MJSimulation, 0) // Job to run the simulation (ceres)
|
---|
34 | };
|
---|
35 |
|
---|
36 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.