29 |
|
|
30 |
void PamCut::Process(PamLevel2 *events, ULong_t firstEvent, ULong_t lastEvent) { |
void PamCut::Process(PamLevel2 *events, ULong_t firstEvent, ULong_t lastEvent) { |
31 |
|
|
32 |
|
// Prepare the collection for the new analysis |
33 |
|
Setup(events); |
34 |
|
|
35 |
// Check the range of events to analyze |
// Check the range of events to analyze |
36 |
if (firstEvent > lastEvent) { |
if (firstEvent > lastEvent) { |
37 |
return; |
return; |
40 |
return; |
return; |
41 |
} |
} |
42 |
|
|
|
// Prepare the counters for the new analysis |
|
|
Setup(events); |
|
|
|
|
43 |
// Apply the cuts |
// Apply the cuts |
44 |
for (ULong_t iev = firstEvent; iev < lastEvent + 1; iev++) { |
for (ULong_t iev = firstEvent; iev < lastEvent + 1; iev++) { |
45 |
events->GetEntry(iev); |
events->GetEntry(iev); |
70 |
/* ************************ * |
/* ************************ * |
71 |
* PAMCUTCOLLECTION |
* PAMCUTCOLLECTION |
72 |
* ************************ */ |
* ************************ */ |
73 |
PamCutCollection::~PamCutCollection(){ |
PamCutCollection::~PamCutCollection() { |
74 |
|
|
75 |
if (_owns){ |
if (_owns) { |
76 |
for (unsigned int i = 0; i < _cuts.size(); i++) |
for (unsigned int i = 0; i < _cuts.size(); i++) |
77 |
if (_cuts[i] != NULL){ |
if (_cuts[i] != NULL) { |
78 |
delete _cuts[i]; |
delete _cuts[i]; |
79 |
_cuts[i] = NULL; |
_cuts[i] = NULL; |
80 |
} |
} |
81 |
} |
} |
82 |
} |
} |
83 |
|
|
|
|
|
84 |
void PamCutCollection::AddCut(PamCut *cut) { |
void PamCutCollection::AddCut(PamCut *cut) { |
85 |
_cuts.push_back(cut); |
_cuts.push_back(cut); |
86 |
} |
} |
135 |
PamCut *PamCutCollection::GetCut(const char *cutName) { |
PamCut *PamCutCollection::GetCut(const char *cutName) { |
136 |
if (_cuts.size() == 0) |
if (_cuts.size() == 0) |
137 |
return NULL; |
return NULL; |
138 |
for (unsigned int i = 0; i < _cuts.size(); i++){ |
for (unsigned int i = 0; i < _cuts.size(); i++) { |
139 |
if (strcmp(_cuts[i]->GetName(), cutName) == 0) |
if (strcmp(_cuts[i]->GetName(), cutName) == 0) |
140 |
return _cuts[i]; |
return _cuts[i]; |
141 |
} |
} |