Table of Contents generated with DocToc
The xAOD analysis framework, born out of ProofAna.
This version uses AB 2.3.12.
The constructors for the algorithms have all been changed to default constructors. We have also centralized a lot of code so that EL::Algorithm
is replaced by xAH::Algorithm
where possible. For updating constructors in your code, replace
BasicEventSelection* baseEventSel = new BasicEventSelection( "baseEventSel", localDataDir+"baseEvent.config");
with
BasicEventSelection* baseEventSel = new BasicEventSelection();
baseEventSel->setName("baseEventSel")->setConfig(localDataDir+"baseEvent.config");
See xAODAnaHelpers/Algorithm.h for more details on the uniform constructors.