Skip to content

New detector role: "auxiliary"

Simon Spannagel requested to merge aux_role into master

This new role allows to drop certain detectors in the reco because they just initially supplied additional information, such as a TLU.

Modules wishing to make use of this have to manually check

if(detector->isAuxiliary()) {
  // do nothing
} else {
  // do magic
}

Merge request reports