source: trunk/MagicSoft/Mars/mjobs/MJStar.h@ 8884

Last change on this file since 8884 was 8434, checked in by tbretz, 17 years ago
*** empty log message ***
File size: 478 bytes
Line 
1#ifndef MARS_MJStar
2#define MARS_MJStar
3
4#ifndef MARS_MJob
5#include "MJob.h"
6#endif
7
8class MJStar : public MJob
9{
10private:
11 Bool_t fMuonAnalysis;
12
13 Bool_t WriteResult();
14 Bool_t CheckEnvLocal();
15
16public:
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.