1 | /* ======================================================================== *\
|
---|
2 | !
|
---|
3 | ! *
|
---|
4 | ! * This file is part of MARS, the MAGIC Analysis and Reconstruction
|
---|
5 | ! * Software. It is distributed to you in the hope that it can be a useful
|
---|
6 | ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
|
---|
7 | ! * It is distributed WITHOUT ANY WARRANTY.
|
---|
8 | ! *
|
---|
9 | ! * Permission to use, copy, modify and distribute this software and its
|
---|
10 | ! * documentation for any purpose is hereby granted without fee,
|
---|
11 | ! * provided that the above copyright notice appear in all copies and
|
---|
12 | ! * that both that copyright notice and this permission notice appear
|
---|
13 | ! * in supporting documentation. It is provided "as is" without express
|
---|
14 | ! * or implied warranty.
|
---|
15 | ! *
|
---|
16 | !
|
---|
17 | !
|
---|
18 | ! Author(s): Antonio Stamerra 1/2003 <mailto:antono.stamerra@pi.infn.it>
|
---|
19 | ! Author(s): Marcos Lopez 1/2003 <mailto:marcos@gae.ucm.es>
|
---|
20 | !
|
---|
21 | ! Copyright: MAGIC Software Development, 2000-2003
|
---|
22 | !
|
---|
23 | !
|
---|
24 | \* ======================================================================== */
|
---|
25 |
|
---|
26 | /////////////////////////////////////////////////////////////////////////////
|
---|
27 | // //
|
---|
28 | // MTriggerLvl2Calc //
|
---|
29 | // This is a task to calculate the 2nd level trigger selection //
|
---|
30 | // parameters //
|
---|
31 | // //
|
---|
32 | // Input containers: //
|
---|
33 | // MMcTriggerLvl2 //
|
---|
34 | // //
|
---|
35 | /////////////////////////////////////////////////////////////////////////////
|
---|
36 |
|
---|
37 | #include "MMcTriggerLvl2Calc.h"
|
---|
38 | #include "MMcTriggerLvl2.h"
|
---|
39 |
|
---|
40 |
|
---|
41 | #include "MParList.h"
|
---|
42 | #include "MLog.h"
|
---|
43 | #include "MLogManip.h"
|
---|
44 |
|
---|
45 | #include "MMcEvt.hxx"
|
---|
46 | #include "MMcTrig.hxx"
|
---|
47 | #include "MMcRunHeader.hxx"
|
---|
48 |
|
---|
49 | #include <TH1.h>
|
---|
50 |
|
---|
51 | ClassImp(MMcTriggerLvl2Calc);
|
---|
52 |
|
---|
53 | // --------------------------------------------------------------------------
|
---|
54 | //
|
---|
55 | // Default constructor
|
---|
56 | //
|
---|
57 | //
|
---|
58 | MMcTriggerLvl2Calc::MMcTriggerLvl2Calc(const char *name, const char *title)
|
---|
59 | {
|
---|
60 | fName = name ? name : "MMcTriggerLvl2Calc";
|
---|
61 | fTitle = title ? title : "Task to Fill the MMcTriggerLvl2 object";
|
---|
62 |
|
---|
63 | // AddToBranchList("MMcEvt.fEnergy");
|
---|
64 | //AddToBranchList(Form("%s.fNumFirstLevel", "MMcTrig"));
|
---|
65 | //AddToBranchList(Form("%s.fPixelsFirst[73][4]", "MMcTrig"));
|
---|
66 |
|
---|
67 |
|
---|
68 | // h1 = new TH1F("h1","h1",30,0,30);
|
---|
69 | }
|
---|
70 |
|
---|
71 |
|
---|
72 | // --------------------------------------------------------------------------
|
---|
73 | //
|
---|
74 | // PreProcess
|
---|
75 | //
|
---|
76 | //
|
---|
77 | Bool_t MMcTriggerLvl2Calc::PreProcess (MParList *pList)
|
---|
78 | {
|
---|
79 | // connect the raw data with this task
|
---|
80 |
|
---|
81 | fMcEvt = (MMcEvt*)pList->FindObject("MMcEvt");
|
---|
82 | if (!fMcEvt)
|
---|
83 | {
|
---|
84 | *fLog << err << dbginf << "MMcEvt not found... exit." << endl;
|
---|
85 | return kFALSE;
|
---|
86 | }
|
---|
87 |
|
---|
88 | fMcTrig = (MMcTrig*)pList->FindObject("MMcTrig");
|
---|
89 | if (!fMcTrig)
|
---|
90 | {
|
---|
91 | *fLog << err << dbginf << "MMcTrig not found... exit." << endl;
|
---|
92 | return kFALSE;
|
---|
93 | }
|
---|
94 |
|
---|
95 | fMMcTriggerLvl2 = (MMcTriggerLvl2*)pList->FindObject("MMcTriggerLvl2");
|
---|
96 | if (!fMMcTriggerLvl2)
|
---|
97 | {
|
---|
98 | *fLog << err << dbginf << "MMcTriggerLvl2 not found... exit." << endl;
|
---|
99 | return kFALSE;
|
---|
100 | }
|
---|
101 |
|
---|
102 | // Check if the variable fCompactNN has been correctly set;
|
---|
103 | // accepted values for fCompactNN are (up to now) 2 and 3.
|
---|
104 | if (fMMcTriggerLvl2->GetCompactNN()<2 || fMMcTriggerLvl2->GetCompactNN()>3)
|
---|
105 | {
|
---|
106 | *fLog << err << dbginf << "fCompactNN is not correctly set ("<<fMMcTriggerLvl2->GetCompactNN() <<") ... exit" <<endl;
|
---|
107 | return kFALSE;
|
---|
108 | }
|
---|
109 | else
|
---|
110 | *fLog << "Compact pixel is set with at least "<<fMMcTriggerLvl2->GetCompactNN() << " NN" <<endl;
|
---|
111 |
|
---|
112 |
|
---|
113 | return kTRUE;
|
---|
114 | }
|
---|
115 |
|
---|
116 |
|
---|
117 | // --------------------------------------------------------------------------
|
---|
118 | //
|
---|
119 | // Process
|
---|
120 | //
|
---|
121 | //
|
---|
122 | Bool_t MMcTriggerLvl2Calc::Process()
|
---|
123 | {
|
---|
124 | //const Float_t energy = fMcEvt->GetEnergy();
|
---|
125 |
|
---|
126 | fMMcTriggerLvl2->SetLv1(fMcTrig);
|
---|
127 | fMMcTriggerLvl2->Calc();
|
---|
128 |
|
---|
129 | //fMMcTriggerLvl2->DrawLv1();
|
---|
130 | //fMMcTriggerLvl2->DrawCell(fMMcTriggerLvl2->GetBiggerFiredCell() );
|
---|
131 | //fMMcTriggerLvl2->Print();
|
---|
132 |
|
---|
133 | // h1->Fill(fMMcTriggerLvl2->GetLutPseudoSize() );
|
---|
134 |
|
---|
135 |
|
---|
136 | return kTRUE;
|
---|
137 | }
|
---|
138 |
|
---|
139 |
|
---|
140 | // --------------------------------------------------------------------------
|
---|
141 | //
|
---|
142 | // PostProcess : Display the histogram
|
---|
143 | // !to be fixed: create an histogram class!
|
---|
144 | //
|
---|
145 | Bool_t MMcTriggerLvl2Calc::PostProcess()
|
---|
146 | {
|
---|
147 |
|
---|
148 | // *fLog << inf << "Filling..." << endl;
|
---|
149 |
|
---|
150 | // h1->Draw();
|
---|
151 |
|
---|
152 | return kTRUE;
|
---|
153 | }
|
---|
154 |
|
---|