source: trunk/MagicSoft/Mars/manalysis/MCerPhotCalc.h@ 2132

Last change on this file since 2132 was 1715, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 1.7 KB
Line 
1#ifndef MARS_MCerPhotCalc
2#define MARS_MCerPhotCalc
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MCerPhotCalc //
7// //
8// Integrates the desired ADC time slices of one pixel and substracts the //
9// pedestal (offset) value //
10// //
11/////////////////////////////////////////////////////////////////////////////
12#ifndef ROOT_TArrayF
13#include <TArrayF.h>
14#endif
15
16#ifndef MARS_MTask
17#include "MTask.h"
18#endif
19
20class MRawEvtData;
21class MPedestalCam;
22class MCerPhotEvt;
23class MRawRunHeader;
24
25class MCerPhotCalc : public MTask
26{
27 MPedestalCam *fPedestals; // Pedestals of all pixels in the camera
28 MRawEvtData *fRawEvt; // raw event data (time slices)
29 MCerPhotEvt *fCerPhotEvt; // Cerenkov Photon Event used for calculation
30 MRawRunHeader *fRunHeader; // RunHeader information
31
32 Bool_t fEnableFix; // fix for a bug in files from older camera versions (<=40)
33
34 TArrayF fWeight; // Weights for adding up the ADC slices
35 Float_t fSumQuadWeights;
36
37 void SetDefaultWeights();
38
39public:
40 MCerPhotCalc(const char *name=NULL, const char *title=NULL);
41
42 Bool_t PreProcess(MParList *pList);
43 Bool_t Process();
44 Bool_t ReInit(MParList *pList);
45
46 // FIXME: The array size should be checked!
47 void SetWeights(const TArrayF &w) { fWeight = w; }
48
49 ClassDef(MCerPhotCalc, 0) // Task to calculate cerenkov photons from raw data
50};
51
52
53#endif
Note: See TracBrowser for help on using the repository browser.