12 |
|
|
13 |
#include "../VerboseCollection/VerboseCollection.h" |
#include "../VerboseCollection/VerboseCollection.h" |
14 |
|
|
15 |
|
/*! @enum EffCollection_ErrMethod to select the method of error computation */ |
16 |
|
enum EffCollection_ErrMethod { |
17 |
|
EFFERR_SERGIO, ///< Flag for Sergio Ricciarini's Fortran routine |
18 |
|
EFFERR_ROOT |
19 |
|
///< Flag for ROOT TGraphAsymErrors::BayesDivide() |
20 |
|
}; |
21 |
|
|
22 |
/*! @brief A verbose collection which computes the efficiency of a set of cuts. |
/*! @brief A verbose collection which computes the efficiency of a set of cuts. |
23 |
* |
* |
24 |
* This class subdivides the cuts it contains into two classes: selection and detector |
* This class subdivides the cuts it contains into two classes: selection and detector |
30 |
* the cuts. |
* the cuts. |
31 |
* This class implements specific methods to add selection and detector cuts; cuts added |
* This class implements specific methods to add selection and detector cuts; cuts added |
32 |
* with the standard #AddCut method will be treated as detector cuts. The same for actions. |
* with the standard #AddCut method will be treated as detector cuts. The same for actions. |
33 |
|
* Error computation is done either using Sergio Ricciarini's Fortran routine or ROOT's |
34 |
|
* TGraphAsimmErrors::BayesDivide(). For both methods, the efficiency is arbitrarily set to |
35 |
|
* 1.1 when less than 8 events survive the selection cuts. This is needed to avoid convergence |
36 |
|
* problems in Sergio's routine, and the ROOT output has been consequently adapted to this |
37 |
|
* convention. |
38 |
* |
* |
39 |
*/ |
*/ |
40 |
class EffCollection: public VerboseCollection { |
class EffCollection: public VerboseCollection { |
44 |
/*! @brief Constructor. |
/*! @brief Constructor. |
45 |
* |
* |
46 |
* @param collectionName The collection's name. |
* @param collectionName The collection's name. |
47 |
* @param rigBinsFile The file with the rigidity bins. |
* @param outFileBase The output file base name. If "", no file output will be produced; otherwise, |
48 |
* @param outFileBase The output file base name. If != "", 3 text files will be produced: |
* a file named outFilebase + collection's name + ".txt" will be produced, containing |
49 |
* - outFileBase + "-sel.txt": events surviving the selection cuts for each bin; |
* the number of events surviving the detector cuts (1st column), the selection cuts (2nd column), |
50 |
* - outFileBase + "-det.txt": events surviving the detector cuts for each bin; |
* the efficiency (3rd column), the lower (4th column) and upper (5th column) length |
51 |
* - outFileBase + "-eff.txt": efficiency for each bin (will be 0 if no event survives selection cuts). |
* of the efficiency's error bar. |
52 |
* @param absRig If true, the absolute rigidity of the selected events will be considered. |
* @param errMethod The method to use for error computation. Possible values are defined in #EffCollection_ErrMethod. |
53 |
* |
* @param owns If true, the collection will own the cuts and the actions, ie., it will |
54 |
|
* destroy them in its destructor. |
55 |
*/ |
*/ |
56 |
EffCollection(const char *collectionName, TString rigBinsFile, TString &outFileBase = "", bool absRig = false); |
EffCollection(const char *collectionName, TString outFileBase = "", int errMethod = EFFERR_ROOT, bool owns = true); |
57 |
|
|
58 |
/*! @brief Destructor. */ |
/*! @brief Destructor. */ |
59 |
~EffCollection() { |
~EffCollection() { |
66 |
* |
* |
67 |
* @param cut The PamCut-derived object to add to the collection. |
* @param cut The PamCut-derived object to add to the collection. |
68 |
*/ |
*/ |
69 |
void AddCut(PamCut &cut) { |
void AddCut(PamCut *cut) { |
70 |
AddDetectorCut(cut); |
AddDetectorCut(cut); |
71 |
} |
} |
72 |
|
|
76 |
* selection cut. |
* selection cut. |
77 |
* @param cut The PamCut-derived object to add to the collection. |
* @param cut The PamCut-derived object to add to the collection. |
78 |
*/ |
*/ |
79 |
void AddDetectorCut(PamCut &cut); |
void AddDetectorCut(PamCut *cut); |
80 |
|
|
81 |
/*! @brief Adds a selection cut to the collection. |
/*! @brief Adds a selection cut to the collection. |
82 |
* |
* |
84 |
* selection cut. |
* selection cut. |
85 |
* @param cut The PamCut-derived object to add to the collection. |
* @param cut The PamCut-derived object to add to the collection. |
86 |
*/ |
*/ |
87 |
void AddSelectionCut(PamCut &cut); |
void AddSelectionCut(PamCut *cut); |
88 |
|
|
89 |
/*! @brief Adds an action to the detector cuts queue. |
/*! @brief Adds an action to the detector cuts queue. |
90 |
* |
* |
92 |
* |
* |
93 |
* @param action The CollectionAction-derived object to add to the collection. |
* @param action The CollectionAction-derived object to add to the collection. |
94 |
*/ |
*/ |
95 |
void AddAction(CollectionAction &action) { |
void AddAction(CollectionAction *action) { |
96 |
AddDetectorAction(action); |
AddDetectorAction(action); |
97 |
} |
} |
98 |
|
|
103 |
* |
* |
104 |
* @param action The CollectionAction-derived object to add to the collection. |
* @param action The CollectionAction-derived object to add to the collection. |
105 |
*/ |
*/ |
106 |
void AddDetectorAction(CollectionAction &action); |
void AddDetectorAction(CollectionAction *action); |
107 |
|
|
108 |
/*! @brief Adds an action to the selection cuts queue. |
/*! @brief Adds an action to the selection cuts queue. |
109 |
* |
* |
112 |
* |
* |
113 |
* @param action The CollectionAction-derived object to add to the collection. |
* @param action The CollectionAction-derived object to add to the collection. |
114 |
*/ |
*/ |
115 |
void AddSelectionAction(CollectionAction &action); |
void AddSelectionAction(CollectionAction *action); |
116 |
|
|
117 |
/*! @brief Applies the selection and detector cuts to the current event. |
/*! @brief Applies the selection and detector cuts to the current event. |
118 |
* |
* |
128 |
*/ |
*/ |
129 |
void Finalize(); |
void Finalize(); |
130 |
|
|
131 |
private: |
protected: |
132 |
|
|
133 |
|
/*! This collection contains the selection cuts. */ |
134 |
SmartCollection _selCollection; |
SmartCollection _selCollection; |
135 |
|
|
136 |
|
/*! This collection contains the detector cuts. */ |
137 |
SmartCollection _detCollection; |
SmartCollection _detCollection; |
138 |
|
|
139 |
|
/*! The base name of the output file. */ |
140 |
TString _outFileBase; |
TString _outFileBase; |
|
bool _absRig; |
|
|
vector<float> _bins; |
|
|
vector<unsigned int> _sel; |
|
|
vector<unsigned int> _det; |
|
141 |
|
|
142 |
unsigned int _outUp, _outDown; |
/*! The method used for error computation. */ |
143 |
|
int _errMethod; |
144 |
|
|
145 |
|
/*! The number of events surviving the detector cuts. */ |
146 |
|
unsigned int _det; |
147 |
|
|
148 |
|
/*! The number of events surviving the selection cuts. */ |
149 |
|
unsigned int _sel; |
150 |
|
|
151 |
}; |
}; |
152 |
|
|
153 |
#endif /* EFFCOLLECTION_H_ */ |
#endif /* EFFCOLLECTION_H_ */ |