00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00026 #ifndef StMuTriggerIdCollection_hh
00027 #define StMuTriggerIdCollection_hh
00028 #include "StEvent/StTriggerId.h"
00029 #include "StEvent/StTriggerIdCollection.h"
00030
00031 class StMuTriggerIdCollection : public StObject {
00032 public:
00033 StMuTriggerIdCollection();
00034 StMuTriggerIdCollection(const StTriggerIdCollection*);
00035 ~StMuTriggerIdCollection();
00036
00037
00038 const StTriggerId& nominal() const;
00039 const StTriggerId& l1() const;
00040 const StTriggerId& l2() const;
00041 const StTriggerId& l3() const;
00042 const StTriggerId& l3Expanded() const;
00043
00044 void fill(const StTriggerIdCollection*);
00045 void setL1(const StTriggerId);
00046 void setL2(const StTriggerId);
00047 void setL3(const StTriggerId);
00048 void setL3Expanded(const StTriggerId);
00049 void setNominal(const StTriggerId);
00050
00051 static bool isEmpty(const StTriggerId&);
00052 protected:
00053 StTriggerId mL1TriggerId;
00054 StTriggerId mL2TriggerId;
00055 StTriggerId mL3TriggerId;
00056 StTriggerId mNTriggerId;
00057 StTriggerId mLETriggerId;
00058
00059 ClassDef(StMuTriggerIdCollection,2)
00060 };
00061
00062 #endif
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081