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 |
|
---|
11 | class MJSimulation : public MJob
|
---|
12 | {
|
---|
13 | private:
|
---|
14 | Bool_t fForceMode;
|
---|
15 |
|
---|
16 | Bool_t WriteResult();
|
---|
17 | Bool_t CheckEnvLocal();
|
---|
18 |
|
---|
19 | void SetupHist(MHn &hist) const;
|
---|
20 |
|
---|
21 | public:
|
---|
22 | MJSimulation(const char *name=NULL, const char *title=NULL);
|
---|
23 |
|
---|
24 | void SetForceMode(Bool_t force=kTRUE) { fForceMode = force; }
|
---|
25 |
|
---|
26 | // Process
|
---|
27 | Bool_t Process(const MArgs &args);
|
---|
28 |
|
---|
29 | ClassDef(MJSimulation, 0) // Job to run the simulation (ceres)
|
---|
30 | };
|
---|
31 |
|
---|
32 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.