Skip to content

fizisist/xAODAnaHelpers

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Table of Contents generated with DocToc

xAODAnaHelpers (xAH)

The xAOD analysis framework, born out of ProofAna.

Current Working Version

This version uses AB 2.3.12.

Migrating

From 00-00-04 to 00-00-05

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.

About

ProofAna - The Sequel

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 94.9%
  • Python 5.1%