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

Last change on this file since 9337 was 9317, checked in by tbretz, 16 years ago
*** empty log message ***
File size: 813 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;
10class MParList;
11
12class MJSimulation : public MJob
13{
14private:
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
25public:
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.