source: trunk/MagicSoft/Mars/mjobs/MJSimulation.h@ 9292

Last change on this file since 9292 was 9275, checked in by tbretz, 16 years ago
*** empty log message ***
File size: 557 bytes
Line 
1#ifndef MARS_MJSimulation
2#define MARS_MJSimulation
3
4#ifndef MARS_MJob
5#include "MJob.h"
6#endif
7
8class MHn;
9class MArgs;
10
11class MJSimulation : public MJob
12{
13private:
14 Bool_t fForceMode;
15
16 Bool_t WriteResult();
17 Bool_t CheckEnvLocal();
18
19 void SetupHist(MHn &hist) const;
20
21public:
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.