source: trunk/MagicSoft/Mars/mmontecarlo/MCollAreaTrigger.h@ 694

Last change on this file since 694 was 686, checked in by harald, 24 years ago
Added the first implementation of macro to calculate the trigger collection area. the macro is called getCollArea.C
File size: 583 bytes
Line 
1#ifndef MCOLLAREATRIGGER_H
2#define MCOLLAREATRIGGER_H
3
4#ifndef MTASK_H
5#include "MTask.h"
6#endif
7
8class MParList;
9class MMcEvt ;
10class MMcTrig ;
11class MCollArea;
12
13class MCollAreaTrigger : public MTask {
14 private:
15 MMcEvt *fMcEvt ; //!
16 MMcTrig *fMcTrig ; //!
17 MCollArea *fCollArea ; //!
18
19 public:
20 MCollAreaTrigger (const char *name=NULL, const char *title=NULL);
21
22 Bool_t PreProcess(MParList *pList);
23 Bool_t Process() ;
24 Bool_t PostProcess() ;
25
26 ClassDef(MCollAreaTrigger, 1) // Task to fill the collection area histograms
27
28};
29
30#endif
31
Note: See TracBrowser for help on using the repository browser.