26 |
|
if (!objs) // this can only happen if HLTMod::SetAbortIfNotAccepted(kFALSE) was called |
27 |
|
return; |
28 |
|
|
29 |
+ |
IncNEventsProcessed(); |
30 |
+ |
|
31 |
|
Int_t ents=objs->GetEntries(); |
32 |
|
for(Int_t i=0;i<ents;++i) { |
33 |
|
const TriggerObject *to = objs->At(i); |
49 |
|
fEtaHist = new TH1D("hEtaHist",";#eta;#",160,-8.,8.); |
50 |
|
AddOutput(fEtaHist); |
51 |
|
} |
52 |
+ |
|
53 |
+ |
//-------------------------------------------------------------------------------------------------- |
54 |
+ |
void HLTExampleMod::SlaveTerminate() |
55 |
+ |
{ |
56 |
+ |
// Save number of accepted events. |
57 |
+ |
|
58 |
+ |
SaveNEventsProcessed(); |
59 |
+ |
} |