void NTupleEventReader::selectNextNtupleEvent() {
    if (hasNextEvent()) {
        initiateReadersIfNotSet();
        input->GetEntry(currentEventEntry);
        currentEventEntry++;
        processedEvents++;
    }
}
Exemple #2
0
void NTupleEventReader::selectNextNtupleEvent() {
	if (hasNextEvent()) {
		initiateReadersIfNotSet();
		// input is a TChain using nTupleTree/tree ...
		input->GetEntry(currentEventEntry);
		currentEventEntry++;
		processedEvents++;
	}
}