From 433c34f32db97a5663b3f4e9ae4076dbd55f0139 Mon Sep 17 00:00:00 2001 From: cvetan Date: Wed, 25 Jul 2007 11:28:42 +0000 Subject: [PATCH] Trigger descriptor modified in order to be compatible with AliMUONTrigger.cxx (Clermont) --- STEER/createTriggerDescriptor_MUON.C | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/STEER/createTriggerDescriptor_MUON.C b/STEER/createTriggerDescriptor_MUON.C index 4f476c00594..7f7ab2e50b0 100644 --- a/STEER/createTriggerDescriptor_MUON.C +++ b/STEER/createTriggerDescriptor_MUON.C @@ -3,6 +3,7 @@ createTriggerDescriptor_MUON() // create Trigger Descriptor for MUON standalone // macro inspired from STEER/createTriggerDescriptor_*.C // May 2006, Ch. Finck +// modified in order to be compatible with AliMUONTrigger.cxx (Clermont) AliTriggerDescriptor descrip( "MUON", "Standalone Trigger for MUON" ); @@ -20,23 +21,23 @@ createTriggerDescriptor_MUON() (ULong64_t)0x1 << 1 ); // 100 - descrip.AddCondition( "MUON_Like_LPt_L0", - "MUON_Like_LPt_L0", "Di Muon Like sign Low Pt", + descrip.AddCondition( "MUON_Unlike_LPt_L0", + "MUON_Unlike_LPt_L0", "Di Muon UnLike sign Low Pt", (ULong64_t)0x1 << 2 ); // 1000 - descrip.AddCondition( "MUON_Like_HPt_L0", - "MUON_Like_HPt_L0", "Di Muon Like sign High Pt", + descrip.AddCondition( "MUON_Unlike_HPt_L0", + "MUON_Unlike_HPt_L0", "Di Muon UnLike sign High Pt", (ULong64_t)0x1 << 3 ); // 10000 - descrip.AddCondition( "MUON_Unlike_LPt_L0", - "MUON_Unlike_LPt_L0", "Di Muon Unlike sign Low Pt", + descrip.AddCondition( "MUON_Like_LPt_L0", + "MUON_Like_LPt_L0", "Di Muon Like sign Low Pt", (ULong64_t)0x1 << 4 ); // 100000 - descrip.AddCondition( "MUON_Unlike_HPt_L0", - "MUON_Unlike_HPt_L0", "Di Muon Unlike sign High Pt", + descrip.AddCondition( "MUON_Like_HPt_L0", + "MUON_Like_HPt_L0", "Di Muon Like sign High Pt", (ULong64_t)0x1 << 5 ); -- 2.43.0