source: trunk/MagicSoft/Mars/mmontecarlo/MMcEnerThreCalc.h@ 860

Last change on this file since 860 was 837, checked in by jlopez, 23 years ago
Header for MMcEnerThreCalc.cc
File size: 1.3 KB
Line 
1#ifndef MMCENERTHRECALC_H
2#define MMCENERTHRECALC_H
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MMcEnerThreCalc //
7// //
8// Compute the energy threshold from Monte Carlo data //
9// //
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef MTASK_h
13#include "MTask.h"
14#endif
15
16class MMcEvt;
17class MMcTrig;
18class MMcEnerThre;
19
20class MMcEnerThreCalc : public MTask
21{
22 private:
23
24 MMcEvt* fMMcEvt; // Container with Monte Carlo information
25 MMcTrig** fMMcTrig; // Container with Monte Carlo trigger information
26 MMcEnerThre* fMMcEnerThre; // Container where we save the energy threshold
27 // information
28 Int_t fDimension;
29
30 public:
31
32 MMcEnerThreCalc ( const int dim = 0,
33 const char* name = NULL, const char* title = NULL);
34
35 Bool_t PreProcess(MParList* pList);
36 Bool_t Process();
37 Bool_t PostProcess();
38
39 ClassDef(MMcEnerThreCalc, 0) // Task to fill the energy threshold information
40};
41
42#endif
43
44
45
Note: See TracBrowser for help on using the repository browser.