source: trunk/MagicSoft/Mars/mfilter/MFTriggerLvl1.h@ 1885

Last change on this file since 1885 was 1481, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 1.4 KB
Line 
1#ifndef MARS_MFTriggerLvl1
2#define MARS_MFTriggerLvl1
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MFTriggerLvl1 //
7// //
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef MARS_MFilter
11#include "MFilter.h"
12#endif
13
14class MMcTrig;
15class MParList;
16
17class MFTriggerLvl1 : public MFilter
18{
19private:
20 MMcTrig *fMcTrig;
21 TString fContName;
22
23 typedef enum { kELowerThan, kEGreaterThan } FilterType_t;
24 FilterType_t fFilterType;
25
26 Bool_t fResult; //!
27 Int_t fValue;
28
29 void Init(const char type, const Int_t val,
30 const char *name, const char *title);
31
32 void StreamPrimitive(ofstream &out) const;
33
34public:
35 MFTriggerLvl1(const char *cname="MMcTrig", const char type='>', const Int_t val=0,
36 const char *name=NULL, const char *title=NULL);
37 MFTriggerLvl1(MMcTrig *mctrig, const char type='>', const Int_t val=0,
38 const char *name=NULL, const char *title=NULL);
39
40 Bool_t IsExpressionTrue() const;
41 Bool_t PreProcess(MParList *pList);
42 Bool_t Process();
43
44 ClassDef(MFTriggerLvl1, 1) // A Filter for the Level 1 Trigger
45};
46
47#endif
Note: See TracBrowser for help on using the repository browser.