to extract a sub frame from one event frame of the current trigger
scan the composite frame only if do_scan is set to true (in principle the main frame is scanned at checking time) so in case which_iput is not 0, do :
SharedFP *sub = trigger->AddUtility( ... );
if ( trigger->IsIndividualFired(which_input) ) {
trigger->GetInputSharedFP(which_input)->Scan();
for (UInt_t i = 0; i < trigger->GetInputSharedFP(which_input)->GetNbSubFrame(); i++) {
Frame *data_frame = trigger->GetSubFrameFrom(which_input,i,sub);
if ( data_frame ) {
}
}
}
Definition at line 667 of file Trigger.cpp.