1 | /////////////////////////////////////////////////////////////////////////////
|
---|
2 | // //
|
---|
3 | // MCerPhotCalc //
|
---|
4 | // //
|
---|
5 | /////////////////////////////////////////////////////////////////////////////
|
---|
6 |
|
---|
7 | #include "MCerPhotCalc.h"
|
---|
8 |
|
---|
9 | #include "MParList.h"
|
---|
10 |
|
---|
11 | #include "MLog.h"
|
---|
12 | #include "MLogManip.h"
|
---|
13 |
|
---|
14 | #include "MRawEvtPixelIter.h"
|
---|
15 | #include "MCerPhotEvt.h"
|
---|
16 | #include "MPedestalPix.h"
|
---|
17 | #include "MPedestalCam.h"
|
---|
18 |
|
---|
19 | ClassImp(MCerPhotCalc)
|
---|
20 |
|
---|
21 | MRawEvtData *fRawEvt; // raw event data (time slices)
|
---|
22 | MPedestalCam *fPedestals; // Pedestals of all pixels in the camera
|
---|
23 | MCerPhotEvt *fCerPhotEvt; // Cerenkov Photon Event used for calculation
|
---|
24 |
|
---|
25 | MCerPhotCalc::MCerPhotCalc(const char *name, const char *title)
|
---|
26 | {
|
---|
27 | *fName = name ? name : "MCerPhotCalc";
|
---|
28 | *fTitle = title ? title : "Task to calculate Cerenkov photons from raw data";
|
---|
29 | }
|
---|
30 |
|
---|
31 | Bool_t MCerPhotCalc::PreProcess( MParList *pList )
|
---|
32 | {
|
---|
33 | fRawEvt = (MRawEvtData*)pList->FindObject("MRawEvtData");
|
---|
34 | if (!fRawEvt)
|
---|
35 | {
|
---|
36 | *fLog << dbginf << "MRawEvtData not found... aborting." << endl;
|
---|
37 | return kFALSE;
|
---|
38 | }
|
---|
39 |
|
---|
40 | fPedestals = (MPedestalCam*)pList->FindObject("MPedestalCam");
|
---|
41 | if (!fPedestals)
|
---|
42 | {
|
---|
43 | *fLog << dbginf << "MPedestalCam not found... aborting." << endl;
|
---|
44 | return kFALSE;
|
---|
45 | }
|
---|
46 |
|
---|
47 | fCerPhotEvt = (MCerPhotEvt*)pList->FindCreateObj("MCerPhotEvt");
|
---|
48 | if (!fCerPhotEvt)
|
---|
49 | return kFALSE;
|
---|
50 |
|
---|
51 | return kTRUE;
|
---|
52 | }
|
---|
53 |
|
---|
54 | Bool_t MCerPhotCalc::Process()
|
---|
55 | {
|
---|
56 | fCerPhotEvt->Clear();
|
---|
57 |
|
---|
58 | MRawEvtPixelIter pixel(fRawEvt);
|
---|
59 |
|
---|
60 | while (pixel.Next())
|
---|
61 | {
|
---|
62 | const UInt_t pixid = pixel.GetPixelId();
|
---|
63 |
|
---|
64 | const MPedestalPix &ped = (*fPedestals)[pixid];
|
---|
65 |
|
---|
66 | const Float_t nphot = (Float_t)pixel.GetSumHiGainFadcSamples() - ped.GetMean();
|
---|
67 | fCerPhotEvt->AddPixel(pixid, nphot, 0);
|
---|
68 |
|
---|
69 | // FIXME! Handling of Lo Gains is missing!
|
---|
70 | }
|
---|
71 |
|
---|
72 | return kTRUE;
|
---|
73 | }
|
---|
74 |
|
---|