X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=STEER%2FcreateTriggerDescriptor_MUON.C;h=7f7ab2e50b06fe9d0c132361599f9bc1a261341a;hb=04cd9bcd360d53ac0d1772d679c603d51201ed54;hp=8e91c50719eaa99c56b62f70f1d743e423fe3f58;hpb=2a7fe927134bab653c031ce28cfc5cf43fb39ca3;p=u%2Fmrichter%2FAliRoot.git diff --git a/STEER/createTriggerDescriptor_MUON.C b/STEER/createTriggerDescriptor_MUON.C index 8e91c50719e..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" ); @@ -10,79 +11,37 @@ createTriggerDescriptor_MUON() descrip.AddDetectorCluster( "MUON" ); // only MUON // 1 - descrip.AddCondition( "MUON_SPlus_LPt_L0", - "MUON_SPlus_LPt_L0", "Muon Plus Low Pt", + descrip.AddCondition( "MUON_Single_LPt_L0", + "MUON_Single_LPt_L0", "Muon Single Low Pt", (ULong64_t)0x1 ); // 10 - descrip.AddCondition( "MUON_SPlus_HPt_L0", - "MUON_SPlus_HPt_L0", "Muon Plus High Pt", + descrip.AddCondition( "MUON_Single_HPt_L0", + "MUON_Single_HPt_L0", "Muon Single High Pt", (ULong64_t)0x1 << 1 ); // 100 - descrip.AddCondition( "MUON_SPlus_All_L0", - "MUON_SPlus_All_L0", "Muon Plus All 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_SMinus_LPt_L0", - "MUON_SMinus_LPt_L0", "Muon Minus Low 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_SMinus_HPt_L0", - "MUON_SMinus_HPt_L0", "Muon Minus High 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_SMinus_All_L0", - "MUON_SMinus_All_L0", "Muon Minus All Pt", + descrip.AddCondition( "MUON_Like_HPt_L0", + "MUON_Like_HPt_L0", "Di Muon Like sign High Pt", (ULong64_t)0x1 << 5 ); - // 1000000 - descrip.AddCondition( "MUON_SUndef_LPt_L0", - "MUON_SUndef_LPt_L0", "Muon Undefined sign Low Pt", - (ULong64_t)0x1 << 6 ); - - // 10000000 - descrip.AddCondition( "MUON_SUndef_HPt_L0", - "MUON_SUndef_HPt_L0", "Muon Undefined sign High Pt", - (ULong64_t)0x1 << 7 ); - - // 100000000 - descrip.AddCondition( "MUON_SUndef_All_L0", - "MUON_SUndef_All_L0", "Muon Undefined sign All Pt", - (ULong64_t)0x1 << 8 ); - - // 1000000000 - descrip.AddCondition( "MUON_Unlike_LPt_L0", - "MUON_Unlike_LPt_L0", "Di Muon Unlike sign Low Pt", - (ULong64_t)0x1 << 9 ); - - // 10000000000 - descrip.AddCondition( "MUON_Unlike_HPt_L0", - "MUON_Unlike_HPt_L0", "Di Muon Unlike sign High Pt", - (ULong64_t)0x1 << 10 ); - // 100000000000 - descrip.AddCondition( "MUON_Unlike_All_L0", - "MUON_Unlike_All_L0", "Di Muon Unlike sign All Pt", - (ULong64_t)0x1 << 11 ); - - // 1000000000000 - descrip.AddCondition( "MUON_Like_LPt_L0", - "MUON_Like_LPt_L0", "Di Muon Like sign Low Pt", - (ULong64_t)0x1 << 12 ); - - // 10000000000000 - descrip.AddCondition( "MUON_Like_HPt_L0", - "MUON_Like_HPt_L0", "Di Muon Like sign High Pt", - (ULong64_t)0x1 << 13 ); - // 100000000000000 - descrip.AddCondition( "MUON_Like_All_L0", - "MUON_Like_All_L0", "Di Muon Like sign All Pt", - (ULong64_t)0x1 << 14 ); cout << endl << endl; if( !descrip.CheckInputsConditions("Config.C") ) {