#ifndef STNTUPLE_TStnL3Info #define STNTUPLE_TStnL3Info //----------------------------------------------------------------------------- // STNTUPLE L3 trigger info block: "generic", user-assigned, bit numbers for // L3 trigers // // bit numbers in the structure below are "generic" in a sense that they // are supposed to be stable across the runs even if assignment of real L3 bits // is changing, so Muon bit #1, for example, would always stand for // "high-Pt muon trigger" L3 path, no matter what the minor differences between // the different versions of this path were // This allows to select on the trigger bits w/o accessing the database and // it is up to us to make the bit assignments sensible and to keep them stable // - to be filled in StntupleInitTriggerBlock // // generic accessors are provided by the base class (TStnTriggerInfo), // this class provides non-generic accessors for L3 trigger bits // // Author: P.Murat (CDF/FNAL) // Date: Oct 13 2001 //----------------------------------------------------------------------------- #include "Stntuple/obj/TStnTriggerInfo.hh" class TStnL3Info: public TStnTriggerInfo { protected: //----------------------------------------------------------------------------- // methods //----------------------------------------------------------------------------- public: TStnL3Info(); ~TStnL3Info() {}; // ****** accessors // ****** modifiers // ****** overloaded methods of TObject void Print(Option_t* option = "") const; // ClassDef(TStnL3Info,0) }; #endif