diff --git a/Trigger/TrigAlgorithms/TrigTileMuId/ATLAS_CHECK_THREAD_SAFETY b/Trigger/TrigAlgorithms/TrigTileMuId/ATLAS_CHECK_THREAD_SAFETY deleted file mode 100644 index 1674bed49456bf783a4e254741e9cd0278e3494b..0000000000000000000000000000000000000000 --- a/Trigger/TrigAlgorithms/TrigTileMuId/ATLAS_CHECK_THREAD_SAFETY +++ /dev/null @@ -1 +0,0 @@ -Trigger/TrigAlgorithms/TrigTileMuId diff --git a/Trigger/TrigAlgorithms/TrigTileMuId/CMakeLists.txt b/Trigger/TrigAlgorithms/TrigTileMuId/CMakeLists.txt deleted file mode 100644 index b890b0e4eed24b52805335a305bf558093f4df83..0000000000000000000000000000000000000000 --- a/Trigger/TrigAlgorithms/TrigTileMuId/CMakeLists.txt +++ /dev/null @@ -1,12 +0,0 @@ -# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration - -# Declare the package name: -atlas_subdir( TrigTileMuId ) - -# Component(s) in the package: -atlas_add_component( TrigTileMuId - src/*.cxx src/components/*.cxx - LINK_LIBRARIES AthenaBaseComps AthenaKernel ByteStreamCnvSvcBaseLib ByteStreamData CaloIdentifier CxxUtils GaudiKernel GeneratorObjects MagFieldInterfaces RegionSelectorLib TileByteStreamLib TileEvent TrigInDetEvent TrigInDetToolInterfacesLib TrigInterfacesLib TrigMuonEvent TrigSteeringEvent TrigT1Interfaces TrigT2CaloCommonLib TrigTimeAlgsLib ) - -# Install files from the package: -atlas_install_python_modules( python/*.py POST_BUILD_CMD ${ATLAS_FLAKE8} --extend-extensions=ATL900,ATL901 ) diff --git a/Trigger/TrigAlgorithms/TrigTileMuId/doc/packagedoc.h b/Trigger/TrigAlgorithms/TrigTileMuId/doc/packagedoc.h deleted file mode 100644 index 91e48bc7b5a8a0297becd601e56e60ff74305487..0000000000000000000000000000000000000000 --- a/Trigger/TrigAlgorithms/TrigTileMuId/doc/packagedoc.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration -*/ - -/** - -@page TrigTileMuId_page TrigTileMuId Package - -The package provides low \f$ p_{\rm{T}} \f$ muon tagging algorithms using TileCal for LVL2 trigger. - -@author Giulio Usai Giulio.Usai@cern.ch -@author Aranzazu Ruiz Martinez Aranzazu.Ruiz.Martinez@cern.ch -@author Heuijin Lim Heuijin.Lim@cern.ch - -@section TrigTileMuId_TrigTileMuIdIntro Introduction - -The basics of the TrigTileMuId algorithms is to look for low \f$ p_{\rm{T}} \f$ muons in the Tile Calorimeter following projective patterns in eta. The search starts from the outermost layer until the innermost layer of TileCal looking for cells with energy deposited between a low and a high energy thresholds (\f$ thr_{low} \leq E \leq thr_{hi} \f$). The low energy threshold is meant to cut electronic noise and minimum bias pile-up events. The high energy thresholds are meant to delimit the maximum muon energy deposition while eliminating hadronic showers and tails. - -@section TrigTileMuId_TrigTileMuIdOverview Class Overview - -The TrigTileMuId package contains the following classes: - - - TrigTileLookForMuAlg: AllTEAlgo algorithm which performs TileCal full scan looking for low \f$ p_{\rm{T}} \f$ muons. This algorithm takes as input the energy deposited in the TileCal cells. - - - TrigTileRODMuAlg: AllTEAlgo algorithm which extracts the low \f$ p_{\rm{T}} \f$ muons tagged at the TileCal ROD DSP level. The output of the muon tagging algorithm processed at the ROD DSPs is stored in dedicated subfragments in the data format (frag types 0x10, 0x11, 0x12 and 0x13). - - - CBNT_TrigTileMu: dumps TrigTileLookForMuAlg info into CBNT directory in the ntuple for analysis. - - - CBNT_TrigTileMuROD: dumps TrigTileRODMuAlg info into CBNT directory in the ntuple for analysis. - - - TrigTileMuToNtuple: dumps TrigTileLookForMuAlg info into TileMuTag directory in the ntuple for analysis. - - -*/ diff --git a/Trigger/TrigAlgorithms/TrigTileMuId/python/TrigTileLookForMuAlgConfig.py b/Trigger/TrigAlgorithms/TrigTileMuId/python/TrigTileLookForMuAlgConfig.py deleted file mode 100755 index db7f38cba623eef2e486f7d486f8e18c2b11eb99..0000000000000000000000000000000000000000 --- a/Trigger/TrigAlgorithms/TrigTileMuId/python/TrigTileLookForMuAlgConfig.py +++ /dev/null @@ -1,241 +0,0 @@ -# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration - -from TrigTileMuId import TrigTileMuIdConf -from AthenaCommon.SystemOfUnits import MeV - -class TrigTileLookForMuAlg_L2(TrigTileMuIdConf.TrigTileLookForMuAlg): - __slot__ = [] - def __init__(self, name='TrigTileLookForMuAlg_L2'): - TrigTileMuIdConf.TrigTileLookForMuAlg.__init__(self, name) - - #self.ReadRoIsFromL1 = False - self.ReadRoIsFromL1 = True - self.DelEta_ForRoIs = 0.3 - self.DelPhi_ForRoIs = 0.2 - - #self.AddCosmicLVL2 = True - self.AddCosmicLVL2 = False - - self.LooseSelection = True - - self.LowerTreshForCosmic = 150.0*MeV - - self.TileMuTagsOutputName = "TileMuObj" - - self.LowerTresh0MeV = 150.0*MeV - - self.LowerTresh1MeV = 150.0*MeV - - self.LowerTresh2MeV = 150.0*MeV - - self.LowerTreshScinMeV = 160.0*MeV - - # 3rd layer - self.UpperTresh2MeV = [2370.0*MeV, 2100.0*MeV, 900.0*MeV, 1050.0*MeV, 1050.0*MeV, - 1110.0*MeV, 1590.0*MeV, 1110.0*MeV, 1050.0*MeV, 1050.0*MeV, - 900.0*MeV, 2100.0*MeV, 2370.0*MeV] - - # 2nd layer - self.UpperTresh1MeV = [1680.0*MeV, 1500.0*MeV, 1440.0*MeV, 1380.0*MeV, 1050.0*MeV, - 390.0*MeV, 1110.0*MeV, 1860.0*MeV, 1890.0*MeV, 1800.0*MeV, - 1860.0*MeV, 1890.0*MeV, 1770.0*MeV, 1980.0*MeV, 2550.0*MeV, - 2550.0*MeV, 1980.0*MeV, 1770.0*MeV, 1890.0*MeV, 1860.0*MeV, - 1800.0*MeV, 1890.0*MeV, 1860.0*MeV, 1110.0*MeV, 390.0*MeV, - 1050.0*MeV, 1380.0*MeV, 1440.0*MeV, 1500.0*MeV, 1680.0*MeV] - - # 1st layer - self.UpperTresh0MeV = [1680.0*MeV, 1380.0*MeV, 1230.0*MeV, 1140.0*MeV, 210.0*MeV, - 900.0*MeV, 960.0*MeV, 840.0*MeV, 930.0*MeV, 840.0*MeV, - 840.0*MeV, 750.0*MeV, 870.0*MeV, 960.0*MeV, 1350.0*MeV, - 1350.0*MeV, 960.0*MeV, 870.0*MeV, 750.0*MeV, 840.0*MeV, - 840.0*MeV, 930.0*MeV, 840.0*MeV, 960.0*MeV, 900.0*MeV, - 210.0*MeV, 1140.0*MeV, 1230.0*MeV, 1380.0*MeV, 1680.0*MeV] - - self.From3to2 = [5,0,1,2,3,4, - 5,2,3,4,5,6, - 2,6,7,0,0,0, - 3,7,8,9,0,0, - 3,9,10,11,0,0, - 2,12,13,0,0,0, - 2,14,15,0,0,0, - 2,16,17,0,0,0, - 3,18,19,20,0,0, - 3,20,21,22,0,0, - 2,22,23,0,0,0, - 5,23,24,25,26,27, - 5,25,26,27,28,29] - - self.From2to1 = [2,1,2,0,0,0, 3,1,2,3,0,0, 3,2,3,4,0,0, 3,3,4,5,0,0, 2,4,5,0,0,0, - 1,5,0,0,0,0, 1,6,0,0,0,0, 1,7,0,0,0,0, 1,8,0,0,0,0, 1,9,0,0,0,0, - 1,10,0,0,0,0, 1,11,0,0,0,0, 1,12,0,0,0,0, 1,13,0,0,0,0, 1,14,0,0,0,0, - 1,15,0,0,0,0, 1,16,0,0,0,0, 1,17,0,0,0,0, 1,18,0,0,0,0, 1,19,0,0,0,0, - 1,20,0,0,0,0, 1,21,0,0,0,0, 1,22,0,0,0,0, 1,23,0,0,0,0, 1,24,0,0,0,0, - 2,24,25,0,0,0, 3,24,25,26,0,0, 3,25,26,27,0,0, 3,26,27,28,0,0, 2,27,28,0,0,0] - - self.TimerNtuple = "TileMuId_time" - - self.RoISearch = False - - self.RoISizePhi = 0.3 - - self.RoISizeEta = 0.3 - - self.UseRS = False - - self.ROBIDLIST = [0x510000,0x510001,0x510002,0x510003,0x510004,0x510005,0x510006,0x510007, # LBA (0x100-0x11f) - 0x510008,0x510009,0x51000a,0x51000b,0x51000c,0x51000d,0x51000e,0x51000f, # LBA (0x120-0x13f) - 0x520000,0x520001,0x520002,0x520003,0x520004,0x520005,0x520006,0x520007, # LBC (0x200-0x21f) - 0x520008,0x520009,0x52000a,0x52000b,0x52000c,0x52000d,0x52000e,0x52000f, # LBC (0x220-0x23f) - 0x530000,0x530001,0x530002,0x530003,0x530004,0x530005,0x530006,0x530007, # EBA (0x300-0x31f) - 0x530008,0x530009,0x53000a,0x53000b,0x53000c,0x53000d,0x53000e,0x53000f, # EBA (0x320-0x33f) - 0x540000,0x540001,0x540002,0x540003,0x540004,0x540005,0x540006,0x540007, # EBC (0x400-0x41f) - 0x540008,0x540009,0x54000a,0x54000b,0x54000c,0x54000d,0x54000e,0x54000f, # EBC (0x420-0x43f) - ] - - self.DRAWERIDLIST = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, # LBA (0x100-0x10f) - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, # LBA (0x110-0x11f) - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, # LBA (0x120-0x12f) - 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, # LBA (0x130-0x13f) - 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, # LBC (0x200-0x20f) - 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, # LBC (0x210-0x21f) - 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, # LBC (0x220-0x22f) - 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, # LBC (0x230-0x23f) - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, # EBA (0x300-0x30f) - 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, # EBA (0x310-0x31f) - 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, # EBA (0x320-0x32f) - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, # EBA (0x330-0x33f) - 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, # EBC (0x400-0x40f) - 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, # EBC (0x410-0x41f) - 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, # EBC (0x420-0x42f) - 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, # EBC (0x430-0x43f) - ] - - from TrigTileMuId.TrigTileMuIdMonitoring import TrigTileLookForMuAlgOnlineMonitoring, TrigTileLookForMuAlgCosmicMonitoring, TrigTileLookForMuAlgValidationMonitoring - online = TrigTileLookForMuAlgOnlineMonitoring() - cosmic = TrigTileLookForMuAlgCosmicMonitoring() - validation = TrigTileLookForMuAlgValidationMonitoring() - - from TrigTimeMonitor.TrigTimeHistToolConfig import TrigTimeHistToolConfig - time = TrigTimeHistToolConfig("Time") - time.TimerHistLimits = [0, 70] - - self.AthenaMonTools = [ time, cosmic, validation, online ] - - -class TrigTileLookForMuAlg_All(TrigTileMuIdConf.TrigTileLookForMuAlg): - __slot__ = [] - def __init__(self, name='TrigTileLookForMuAlg_All'): - TrigTileMuIdConf.TrigTileLookForMuAlg.__init__(self, name) - - #self.ReadRoIsFromL1 = False - self.ReadRoIsFromL1 = True - self.DelEta_ForRoIs = 0.3 - self.DelPhi_ForRoIs = 0.2 - - #self.AddCosmicLVL2 = True - self.AddCosmicLVL2 = False - - self.LooseSelection = True - - self.LowerTreshForCosmic = 150.0*MeV - - self.TileMuTagsOutputName = "TileMuObj" - - self.LowerTresh0MeV = 150.0*MeV - - self.LowerTresh1MeV = 150.0*MeV - - self.LowerTresh2MeV = 150.0*MeV - - self.LowerTreshScinMeV = 160.0*MeV - - # 3rd layer - self.UpperTresh2MeV = [2370.0*MeV, 2100.0*MeV, 900.0*MeV, 1050.0*MeV, 1050.0*MeV, - 1110.0*MeV, 1590.0*MeV, 1110.0*MeV, 1050.0*MeV, 1050.0*MeV, - 900.0*MeV, 2100.0*MeV, 2370.0*MeV] - - # 2nd layer - self.UpperTresh1MeV = [1680.0*MeV, 1500.0*MeV, 1440.0*MeV, 1380.0*MeV, 1050.0*MeV, - 390.0*MeV, 1110.0*MeV, 1860.0*MeV, 1890.0*MeV, 1800.0*MeV, - 1860.0*MeV, 1890.0*MeV, 1770.0*MeV, 1980.0*MeV, 2550.0*MeV, - 2550.0*MeV, 1980.0*MeV, 1770.0*MeV, 1890.0*MeV, 1860.0*MeV, - 1800.0*MeV, 1890.0*MeV, 1860.0*MeV, 1110.0*MeV, 390.0*MeV, - 1050.0*MeV, 1380.0*MeV, 1440.0*MeV, 1500.0*MeV, 1680.0*MeV] - - # 1st layer - self.UpperTresh0MeV = [1680.0*MeV, 1380.0*MeV, 1230.0*MeV, 1140.0*MeV, 210.0*MeV, - 900.0*MeV, 960.0*MeV, 840.0*MeV, 930.0*MeV, 840.0*MeV, - 840.0*MeV, 750.0*MeV, 870.0*MeV, 960.0*MeV, 1350.0*MeV, - 1350.0*MeV, 960.0*MeV, 870.0*MeV, 750.0*MeV, 840.0*MeV, - 840.0*MeV, 930.0*MeV, 840.0*MeV, 960.0*MeV, 900.0*MeV, - 210.0*MeV, 1140.0*MeV, 1230.0*MeV, 1380.0*MeV, 1680.0*MeV] - - self.From3to2 = [5,0,1,2,3,4, - 5,2,3,4,5,6, - 2,6,7,0,0,0, - 3,7,8,9,0,0, - 3,9,10,11,0,0, - 2,12,13,0,0,0, - 2,14,15,0,0,0, - 2,16,17,0,0,0, - 3,18,19,20,0,0, - 3,20,21,22,0,0, - 2,22,23,0,0,0, - 5,23,24,25,26,27, - 5,25,26,27,28,29] - - self.From2to1 = [2,1,2,0,0,0, 3,1,2,3,0,0, 3,2,3,4,0,0, 3,3,4,5,0,0, 2,4,5,0,0,0, - 1,5,0,0,0,0, 1,6,0,0,0,0, 1,7,0,0,0,0, 1,8,0,0,0,0, 1,9,0,0,0,0, - 1,10,0,0,0,0, 1,11,0,0,0,0, 1,12,0,0,0,0, 1,13,0,0,0,0, 1,14,0,0,0,0, - 1,15,0,0,0,0, 1,16,0,0,0,0, 1,17,0,0,0,0, 1,18,0,0,0,0, 1,19,0,0,0,0, - 1,20,0,0,0,0, 1,21,0,0,0,0, 1,22,0,0,0,0, 1,23,0,0,0,0, 1,24,0,0,0,0, - 2,24,25,0,0,0, 3,24,25,26,0,0, 3,25,26,27,0,0, 3,26,27,28,0,0, 2,27,28,0,0,0] - - self.TimerNtuple = "TileMuId_time" - - self.RoISearch = False - - self.RoISizePhi = 0.3 - - self.RoISizeEta = 0.3 - - self.UseRS = False - - self.ROBIDLIST = [0x510000,0x510001,0x510002,0x510003,0x510004,0x510005,0x510006,0x510007, # LBA (0x100-0x11f) - 0x510008,0x510009,0x51000a,0x51000b,0x51000c,0x51000d,0x51000e,0x51000f, # LBA (0x120-0x13f) - 0x520000,0x520001,0x520002,0x520003,0x520004,0x520005,0x520006,0x520007, # LBC (0x200-0x21f) - 0x520008,0x520009,0x52000a,0x52000b,0x52000c,0x52000d,0x52000e,0x52000f, # LBC (0x220-0x23f) - 0x530000,0x530001,0x530002,0x530003,0x530004,0x530005,0x530006,0x530007, # EBA (0x300-0x31f) - 0x530008,0x530009,0x53000a,0x53000b,0x53000c,0x53000d,0x53000e,0x53000f, # EBA (0x320-0x33f) - 0x540000,0x540001,0x540002,0x540003,0x540004,0x540005,0x540006,0x540007, # EBC (0x400-0x41f) - 0x540008,0x540009,0x54000a,0x54000b,0x54000c,0x54000d,0x54000e,0x54000f, # EBC (0x420-0x43f) - ] - - self.DRAWERIDLIST = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, # LBA (0x100-0x10f) - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, # LBA (0x110-0x11f) - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, # LBA (0x120-0x12f) - 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, # LBA (0x130-0x13f) - 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, # LBC (0x200-0x20f) - 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, # LBC (0x210-0x21f) - 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, # LBC (0x220-0x22f) - 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, # LBC (0x230-0x23f) - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, # EBA (0x300-0x30f) - 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, # EBA (0x310-0x31f) - 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, # EBA (0x320-0x32f) - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, # EBA (0x330-0x33f) - 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, # EBC (0x400-0x40f) - 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, # EBC (0x410-0x41f) - 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, # EBC (0x420-0x42f) - 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, # EBC (0x430-0x43f) - ] - - from TrigTileMuId.TrigTileMuIdMonitoring import TrigTileLookForMuAlgOnlineMonitoring, TrigTileLookForMuAlgCosmicMonitoring, TrigTileLookForMuAlgValidationMonitoring - online = TrigTileLookForMuAlgOnlineMonitoring() - cosmic = TrigTileLookForMuAlgCosmicMonitoring() - validation = TrigTileLookForMuAlgValidationMonitoring() - - from TrigTimeMonitor.TrigTimeHistToolConfig import TrigTimeHistToolConfig - time = TrigTimeHistToolConfig("Time") - time.TimerHistLimits = [0, 70] - - self.AthenaMonTools = [ time, cosmic, validation, online ] diff --git a/Trigger/TrigAlgorithms/TrigTileMuId/python/TrigTileMuFexConfig.py b/Trigger/TrigAlgorithms/TrigTileMuId/python/TrigTileMuFexConfig.py deleted file mode 100755 index a4bf841f2a42a736f3fddecff7204ead7e963f3e..0000000000000000000000000000000000000000 --- a/Trigger/TrigAlgorithms/TrigTileMuId/python/TrigTileMuFexConfig.py +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration - -from TrigTileMuId import TrigTileMuIdMonitoring -from TrigTileMuId import TrigTileMuIdConf - -class TrigTileMuFexConfig (TrigTileMuIdConf.TrigTileMuFex): - __slot__ = [] - - def __new__( cls, *args, **kwargs ): - - if len(args) == 2: - newargs = ['%s_%s_%s' % (cls.getType(),args[0],args[1])] + list(args) - else: - newargs = ['%s_%s' % (cls.getType(),args[0]) ] + list(args) - - return super( TrigTileMuFexConfig, cls ).__new__( cls, *newargs, **kwargs ) - - def __init__(self, name, *args, **kwargs ): - super( TrigTileMuFexConfig, self ).__init__( name ) - - TrigTileMuIdConf.TrigTileMuFex.__init__(self, name) - - self.UseAthenaFieldService = True - - self.IDalgo = "IDSCAN" - if len(args) == 2: - TrackAlgo = args[1] - if (TrackAlgo=='SITRACK'): - self.IDalgo = "SITRACK" - if (TrackAlgo=='TRTXK'): - self.IDalgo = "TRTXK" - if (TrackAlgo=='TRTSEG'): - self.IDalgo = "TRTSEG" - - #self.IDalgo="SITRACK" # After "TrigSiTrack_Muon" - self.Meth_ExtrapTileR = "DirectPars" - #self.Meth_ExtrapTileR = "EMextraWay" - self.DelPhi_Cut = 0.2 - self.DelEta_Cut = 0.1 - self.Pt_Cut = 2000.0 - # Unit(Pt) : MeV - - self.GetTruthMuon = False - #self.GetTruthMuon = True - - validation = TrigTileMuIdMonitoring.TrigTileMuFexValidationMonitoring() - online = TrigTileMuIdMonitoring.TrigTileMuFexOnlineMonitoring() - cosmic = TrigTileMuIdMonitoring.TrigTileMuFexCosmicMonitoring() - - from TrigTimeMonitor.TrigTimeHistToolConfig import TrigTimeHistToolConfig - time = TrigTimeHistToolConfig("Time") - time.TimerHistLimits = [0, 70] - - self.AthenaMonTools = [ validation, online, cosmic, time ] diff --git a/Trigger/TrigAlgorithms/TrigTileMuId/python/TrigTileMuIdMonitoring.py b/Trigger/TrigAlgorithms/TrigTileMuId/python/TrigTileMuIdMonitoring.py deleted file mode 100755 index ebcbdce5dae01a03a573dbd7bd55abf519da90fa..0000000000000000000000000000000000000000 --- a/Trigger/TrigAlgorithms/TrigTileMuId/python/TrigTileMuIdMonitoring.py +++ /dev/null @@ -1,623 +0,0 @@ -# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration - -from TrigMonitorBase.TrigGenericMonitoringToolConfig import defineHistogram, TrigGenericMonitoringToolConfig - -# TrigTileLookForMuAlg histograms - -class TrigTileLookForMuAlgOnlineMonitoring(TrigGenericMonitoringToolConfig): - def __init__ (self, name="TileLookMuOnlineMonitoring"): - super(TrigTileLookForMuAlgOnlineMonitoring, self).__init__(name) - self.defineTarget("Online") - - self.Histograms = [ defineHistogram('NTileMu', - type='TH1F', - title="Number of muons from TrigTileLookForMuAlg (Online);Number of muons", - xbins=10, xmin=0., xmax=10.) ] - self.Histograms += [ defineHistogram('EtaTileMu', - type='TH1F', - title="#eta from TrigTileLookForMuAlg (Online);#eta", - xbins=34, xmin=-1.7, xmax=1.7) ] - self.Histograms += [ defineHistogram('PhiTileMu', - type='TH1F', - title="#phi from TrigTileLookForMuAlg (Online);#phi (rad)", - xbins=64, xmin=-3.14, xmax=3.14) ] - self.Histograms += [ defineHistogram('ETileMu', - type='TH1F', - title="Energy from TrigTileLookForMuAlg (Online);E (GeV)", - xbins=200, xmin=0., xmax=10.) ] - self.Histograms += [ defineHistogram('EtaTileMu, PhiTileMu', - type='TH2F', - title="#eta vs. #phi from TrigTileLookForMuAlg (Online);#eta;#phi (rad)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=64, ymin=-3.14, ymax=3.14) ] - self.Histograms += [ defineHistogram('EtaTileMu, ETileMu', - type='TH2F', - title="#eta vs. Energy from TrigTileLookForMuAlg (Online);#eta;E (GeV)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=200, ymin=0., ymax=10.) ] - self.Histograms += [ defineHistogram('PhiTileMu, ETileMu', - type='TH2F', - title="#phi vs. Energy from TrigTileLookForMuAlg (Online);#phi (rad);E (GeV)", - xbins=64, xmin=-3.14, xmax=3.14, ybins=200, ymin=0., ymax=10.) ] - # Loose selection - - self.Histograms += [ defineHistogram('ETileMuLoose', - type='TH1F', - title="Energy for Loose Selection from TrigTileLookForMuAlg (Online);E (GeV)", - xbins=200, xmin=0., xmax=10.) ] - self.Histograms += [ defineHistogram('EtaTileMuLoose, PhiTileMuLoose', - type='TH2F', - title="#eta vs. #phi for Loose Selection from TrigTileLookForMuAlg (Online);#eta;#phi (rad)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=64, ymin=-3.14, ymax=3.14) ] - # Monitoring errors - - self.Histograms += [ defineHistogram('ConversionErrors', - type='TH1F', - title='Conversion Errors bit mask (Online);Conversion Errors', - xbins=10,xmin=0,xmax=10)] - self.Histograms += [ defineHistogram('AlgorithmErrors', - type='TH1F', - title='Algorithm Errors bit mask (Online);Algorithm Errors', - xbins=10,xmin=0,xmax=10)] - self.Histograms += [ defineHistogram('EtaTileMu, ConversionErrors', - type='TH2F', - title='#eta vs. Conversion Errors (Online);#eta;Conversion Errors', - xbins=34,xmin=-1.7,xmax=1.7,ybins=6,ymin=0,ymax=6)] - self.Histograms += [ defineHistogram('PhiTileMu, ConversionErrors', - type='TH2F', - title='#phi vs. Conversion Errors (Online);#phi (rad);Conversion Errors', - xbins=64,xmin=-3.14,xmax=3.14,ybins=6,ymin=0,ymax=6)] - self.Histograms += [ defineHistogram('EtaTileMu, AlgorithmErrors', - type='TH2F', - title='#eta vs. Algorithm Errors (Online);#eta;Algorithm Errors', - xbins=34,xmin=-1.7,xmax=1.7,ybins=6,ymin=0,ymax=6)] - self.Histograms += [ defineHistogram('PhiTileMu, AlgorithmErrors', - type='TH2F', - title='#phi vs. Algorithm Errors (Online);#phi (rad);Algorithm Errors', - xbins=64,xmin=-3.14,xmax=3.14,ybins=6,ymin=0,ymax=6)] - - ReadRoIsFromL1 = True - if ReadRoIsFromL1: - self.Histograms += [ defineHistogram('NCellsAccess', - type='TH1F', - title="Number of the accessed cells (Online);Number of cells", - xbins=200, xmin=-0.5, xmax=599.5) ] - self.Histograms += [ defineHistogram('EffEvtswRoI', - type='TH1F', - title="Efficiency with RoIs (Online)", - xbins=2, xmin=-0.5, xmax=1.5) ] - self.Histograms += [ defineHistogram('EffEvtswRoI_LimitedEta', - type='TH1F', - title="Efficiency with RoIs for |#eta|<0.7 (Online)", - xbins=2, xmin=-0.5, xmax=1.5) ] - self.Histograms += [ defineHistogram('EtaTileMu_wRoI, EtaRoI_wTileMu', - type='TH2F', - title="Matched TileMu with RoIs (Online);#eta_{TileMu};#eta_{RoI}", - xbins=34, xmin=-1.7, xmax=1.7, ybins=68, ymin=-1.7, ymax=1.7) ] - self.Histograms += [ defineHistogram('PhiTileMu_wRoI, PhiRoI_wTileMu', - type='TH2F', - title="Matched TileMu with RoIs (Online);#phi_{TileMu} (rad);#phi_{RoI} (rad)", - xbins=64, xmin=-3.14, xmax=3.14, ybins=128, ymin=-3.14, ymax=3.14) ] - self.Histograms += [ defineHistogram('EtaRoI_NoTileMu, PhiRoI_NoTileMu', - type='TH2F', - title="RoIs for zero TileMu (Online);#eta_{RoI};#phi_{RoI} (rad)", - xbins=50, xmin=-2.5, xmax=2.5, ybins=64, ymin=-3.14, ymax=3.14) ] - - - -class TrigTileLookForMuAlgCosmicMonitoring(TrigTileLookForMuAlgOnlineMonitoring): - def __init__(self, name="TileLookMuCosmicMonitoring"): - super(TrigTileLookForMuAlgCosmicMonitoring, self).__init__(name) - self.defineTarget("Cosmic") - - self.Histograms = [ defineHistogram('NTileMu', - type='TH1F', - title="Number of muons from TrigTileLookForMuAlg (Cosmic);Number of muons", - xbins=10, xmin=0., xmax=10.) ] - self.Histograms += [ defineHistogram('EtaTileMu', - type='TH1F', - title="#eta from TrigTileLookForMuAlg (Cosmic);#eta", - xbins=34, xmin=-1.7, xmax=1.7) ] - self.Histograms += [ defineHistogram('PhiTileMu', - type='TH1F', - title="#phi from TrigTileLookForMuAlg (Cosmic);#phi (rad)", - xbins=64, xmin=-3.14, xmax=3.14) ] - self.Histograms += [ defineHistogram('ETileMu', - type='TH1F', - title="Energy from TrigTileLookForMuAlg (Cosmic);E (GeV)", - xbins=200, xmin=0., xmax=10.) ] - self.Histograms += [ defineHistogram('EtaTileMu, PhiTileMu', - type='TH2F', - title="#eta vs. #phi from TrigTileLookForMuAlg (Cosmic);#eta;#phi (rad)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=64, ymin=-3.14, ymax=3.14) ] - self.Histograms += [ defineHistogram('EtaTileMu, ETileMu', - type='TH2F', - title="#eta vs. Energy from TrigTileLookForMuAlg (Cosmic);#eta;E (GeV)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=200, ymin=0., ymax=10.) ] - self.Histograms += [ defineHistogram('PhiTileMu, ETileMu', - type='TH2F', - title="#phi vs. Energy from TrigTileLookForMuAlg (Cosmic);#phi (rad);E (GeV)", - xbins=64, xmin=-3.14, xmax=3.14, ybins=200, ymin=0., ymax=10.) ] - # Loose selection - - self.Histograms += [ defineHistogram('ETileMuLoose', - type='TH1F', - title="Energy for Loose Selection from TrigTileLookForMuAlg (Cosmic);E (GeV)", - xbins=200, xmin=0., xmax=10.) ] - self.Histograms += [ defineHistogram('EtaTileMuLoose, PhiTileMuLoose', - type='TH2F', - title="#eta vs. #phi for Loose Selection from TrigTileLookForMuAlg (Cosmic);#eta;#phi (rad)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=64, ymin=-3.14, ymax=3.14) ] - # Monitoring errors - - self.Histograms += [ defineHistogram('ConversionErrors', - type='TH1F', - title='Conversion Errors bit mask (Cosmic);Conversion Errors', - xbins=10,xmin=0,xmax=10)] - self.Histograms += [ defineHistogram('AlgorithmErrors', - type='TH1F', - title='Algorithm Errors bit mask (Cosmic);Algorithm Errors', - xbins=10,xmin=0,xmax=10)] - self.Histograms += [ defineHistogram('EtaTileMu, ConversionErrors', - type='TH2F', - title='#eta vs. Conversion Errors (Cosmic);#eta;Conversion Errors', - xbins=34,xmin=-1.7,xmax=1.7,ybins=6,ymin=0,ymax=6)] - self.Histograms += [ defineHistogram('PhiTileMu, ConversionErrors', - type='TH2F', - title='#phi vs. Conversion Errors (Cosmic);#phi (rad);Conversion Errors', - xbins=64,xmin=-3.14,xmax=3.14,ybins=6,ymin=0,ymax=6)] - self.Histograms += [ defineHistogram('EtaTileMu, AlgorithmErrors', - type='TH2F', - title='#eta vs. Algorithm Errors (Cosmic);#eta;Algorithm Errors', - xbins=34,xmin=-1.7,xmax=1.7,ybins=6,ymin=0,ymax=6)] - self.Histograms += [ defineHistogram('PhiTileMu, AlgorithmErrors', - type='TH2F', - title='#phi vs. Algorithm Errors (Cosmic);#phi (rad);Algorithm Errors', - xbins=64,xmin=-3.14,xmax=3.14,ybins=6,ymin=0,ymax=6)] - - ReadRoIsFromL1 = True - if ReadRoIsFromL1: - self.Histograms += [ defineHistogram('NCellsAccess', - type='TH1F', - title="Number of the accessed cells (Cosmic);Number of cells", - xbins=200, xmin=-0.5, xmax=599.5) ] - self.Histograms += [ defineHistogram('EffEvtswRoI', - type='TH1F', - title="Efficiency with RoIs (Cosmic)", - xbins=2, xmin=-0.5, xmax=1.5) ] - self.Histograms += [ defineHistogram('EffEvtswRoI_LimitedEta', - type='TH1F', - title="Efficiency with RoIs for |#eta|<0.7 (Cosmic)", - xbins=2, xmin=-0.5, xmax=1.5) ] - self.Histograms += [ defineHistogram('EtaTileMu_wRoI, EtaRoI_wTileMu', - type='TH2F', - title="Matched TileMu with RoIs (Cosmic);#eta_{TileMu};#eta_{RoI}", - xbins=34, xmin=-1.7, xmax=1.7, ybins=68, ymin=-1.7, ymax=1.7) ] - self.Histograms += [ defineHistogram('PhiTileMu_wRoI, PhiRoI_wTileMu', - type='TH2F', - title="Matched TileMu with RoIs (Cosmic);#phi_{TileMu} (rad);#phi_{RoI} (rad)", - xbins=64, xmin=-3.14, xmax=3.14, ybins=128, ymin=-3.14, ymax=3.14) ] - self.Histograms += [ defineHistogram('EtaRoI_NoTileMu, PhiRoI_NoTileMu', - type='TH2F', - title="RoIs for zero TileMu (Cosmic);#eta_{RoI};#phi_{RoI} (rad)", - xbins=50, xmin=-2.5, xmax=2.5, ybins=64, ymin=-3.14, ymax=3.14) ] - - - -class TrigTileLookForMuAlgValidationMonitoring(TrigTileLookForMuAlgOnlineMonitoring): - def __init__(self, name="TileLookMuValidationMonitoring"): - super(TrigTileLookForMuAlgValidationMonitoring, self).__init__(name) - self.defineTarget("Validation") - - self.Histograms = [ defineHistogram('NTileMu', - type='TH1F', - title="Number of muons from TrigTileLookForMuAlg (Validation);Number of muons", - xbins=10, xmin=0., xmax=10.) ] - self.Histograms += [ defineHistogram('EtaTileMu', - type='TH1F', - title="#eta from TrigTileLookForMuAlg (Validation);#eta", - xbins=34, xmin=-1.7, xmax=1.7) ] - self.Histograms += [ defineHistogram('PhiTileMu', - type='TH1F', - title="#phi from TrigTileLookForMuAlg (Validation);#phi (rad)", - xbins=64, xmin=-3.14, xmax=3.14) ] - self.Histograms += [ defineHistogram('ETileMu', - type='TH1F', - title="Energy from TrigTileLookForMuAlg (Validation);E (GeV)", - xbins=200, xmin=0., xmax=10.) ] - self.Histograms += [ defineHistogram('EtaTileMu, PhiTileMu', - type='TH2F', - title="#eta vs. #phi from TrigTileLookForMuAlg (Validation);#eta;#phi (rad)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=64, ymin=-3.14, ymax=3.14) ] - self.Histograms += [ defineHistogram('EtaTileMu, ETileMu', - type='TH2F', - title="#eta vs. Energy from TrigTileLookForMuAlg (Validation);#eta;E (GeV)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=200, ymin=0., ymax=10.) ] - self.Histograms += [ defineHistogram('PhiTileMu, ETileMu', - type='TH2F', - title="#phi vs. Energy from TrigTileLookForMuAlg (Validation);#phi (rad);E (GeV)", - xbins=64, xmin=-3.14, xmax=3.14, ybins=200, ymin=0., ymax=10.) ] - # Loose selection - - self.Histograms += [ defineHistogram('ETileMuLoose', - type='TH1F', - title="Energy for Loose Selection from TrigTileLookForMuAlg (Validation);E (GeV)", - xbins=200, xmin=0., xmax=10.) ] - self.Histograms += [ defineHistogram('EtaTileMuLoose, PhiTileMuLoose', - type='TH2F', - title="#eta vs. #phi for Loose Selection from TrigTileLookForMuAlg (Validation);#eta;#phi (rad)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=64, ymin=-3.14, ymax=3.14) ] - # Monitoring errors - - self.Histograms += [ defineHistogram('ConversionErrors', - type='TH1F', - title='Conversion Errors bit mask (Validation);Conversion Errors', - xbins=10,xmin=0,xmax=10)] - self.Histograms += [ defineHistogram('AlgorithmErrors', - type='TH1F', - title='Algorithm Errors bit mask (Validation);Algorithm Errors', - xbins=10,xmin=0,xmax=10)] - self.Histograms += [ defineHistogram('EtaTileMu, ConversionErrors', - type='TH2F', - title='#eta vs. Conversion Errors (Validation);#eta;Conversion Errors', - xbins=34,xmin=-1.7,xmax=1.7,ybins=6,ymin=0,ymax=6)] - self.Histograms += [ defineHistogram('PhiTileMu, ConversionErrors', - type='TH2F', - title='#phi vs. Conversion Errors (Validation);#phi (rad);Conversion Errors', - xbins=64,xmin=-3.14,xmax=3.14,ybins=6,ymin=0,ymax=6)] - self.Histograms += [ defineHistogram('EtaTileMu, AlgorithmErrors', - type='TH2F', - title='#eta vs. Algorithm Errors (Validation);#eta;Algorithm Errors', - xbins=34,xmin=-1.7,xmax=1.7,ybins=6,ymin=0,ymax=6)] - self.Histograms += [ defineHistogram('PhiTileMu, AlgorithmErrors', - type='TH2F', - title='#phi vs. Algorithm Errors (Validation);#phi (rad);Algorithm Errors', - xbins=64,xmin=-3.14,xmax=3.14,ybins=6,ymin=0,ymax=6)] - - ReadRoIsFromL1 = True - if ReadRoIsFromL1: - self.Histograms += [ defineHistogram('NCellsAccess', - type='TH1F', - title="Number of the accessed cells (Validation);Number of cells", - xbins=200, xmin=-0.5, xmax=599.5) ] - self.Histograms += [ defineHistogram('EffEvtswRoI', - type='TH1F', - title="Efficiency with RoIs (Validation)", - xbins=2, xmin=-0.5, xmax=1.5) ] - self.Histograms += [ defineHistogram('EffEvtswRoI_LimitedEta', - type='TH1F', - title="Efficiency with RoIs for |#eta|<0.7 (Validation)", - xbins=2, xmin=-0.5, xmax=1.5) ] - self.Histograms += [ defineHistogram('EtaTileMu_wRoI, EtaRoI_wTileMu', - type='TH2F', - title="Matched TileMu with RoIs (Validation);#eta_{TileMu};#eta_{RoI}", - xbins=34, xmin=-1.7, xmax=1.7, ybins=68, ymin=-1.7, ymax=1.7) ] - self.Histograms += [ defineHistogram('PhiTileMu_wRoI, PhiRoI_wTileMu', - type='TH2F', - title="Matched TileMu with RoIs (Validation);#phi_{TileMu} (rad);#phi_{RoI} (rad)", - xbins=64, xmin=-3.14, xmax=3.14, ybins=128, ymin=-3.14, ymax=3.14) ] - self.Histograms += [ defineHistogram('EtaRoI_NoTileMu, PhiRoI_NoTileMu', - type='TH2F', - title="RoIs for zero TileMu (Validation);#eta_{RoI};#phi_{RoI} (rad)", - xbins=50, xmin=-2.5, xmax=2.5, ybins=64, ymin=-3.14, ymax=3.14) ] - - - -# TrigTileRODMuAlg histograms - -class TrigTileRODMuAlgOnlineMonitoring(TrigGenericMonitoringToolConfig): - def __init__(self, name='TileRODMuOnlineMonitoring'): - super(TrigTileRODMuAlgOnlineMonitoring, self).__init__(name) - self.defineTarget("Online") - - self.Histograms = [ defineHistogram('NTileRODMu', - type='TH1F', - title="Number of muons from TrigTileRODMuAlg (Online)", - xbins=10, xmin=0., xmax=10.) ] - self.Histograms += [ defineHistogram('EtaTileRODMu', - type='TH1F', - title="#eta from TrigTileRODMuAlg (Online)", - xbins=34, xmin=-1.7, xmax=1.7) ] - self.Histograms += [ defineHistogram('PhiTileRODMu', - type='TH1F', - title="#phi from TrigTileRODMuAlg (Online)", - xbins=64, xmin=-3.14, xmax=3.14) ] - self.Histograms += [ defineHistogram('ETileRODMu', - type='TH1F', - title="E(GeV) from TrigTileRODMuAlg (Online)", - xbins=200, xmin=0., xmax=10.) ] - self.Histograms += [ defineHistogram('EtaTileRODMu, PhiTileRODMu', - type='TH2F', - title="#eta vs. #phi from TrigTileRODMuAlg (Online)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=64, ymin=-3.14, ymax=3.14) ] - self.Histograms += [ defineHistogram('EtaTileRODMu, ETileRODMu', - type='TH2F', - title="#eta vs. E(GeV) from TrigTileRODMuAlg (Online)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=200, ymin=0., ymax=10.) ] - self.Histograms += [ defineHistogram('PhiTileRODMu, ETileRODMu', - type='TH2F', - title="#phi vs. E(GeV) from TrigTileRODMuAlg (Online)", - xbins=64, xmin=-3.14, xmax=3.14, ybins=200, ymin=0., ymax=10.) ] - self.Histograms += [ defineHistogram('ETileRODMuLoose', - type='TH1F', - title="E(GeV) Loose Selection from TrigTileRODMuAlg (Online)", - xbins=200, xmin=0., xmax=10.) ] - self.Histograms += [ defineHistogram('EtaTileRODMuLoose, PhiTileRODMuLoose', - type='TH2F', - title="#eta vs. #phi Loose Selection from TrigTileRODMuAlg (Online)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=64, ymin=-3.14, ymax=3.14) ] - ReadRoIsFromL1 = True - if ReadRoIsFromL1: - self.Histograms += [ defineHistogram('NROBFrags', - type='TH1F', - title="N of ROBFragments", - xbins=70, xmin=-0.5, xmax=69.5) ] - self.Histograms += [ defineHistogram('EffEvtswRoI', - type='TH1F', - title="Efficiency with RoIs", - xbins=2, xmin=-0.5, xmax=1.5) ] - self.Histograms += [ defineHistogram('EffEvtswRoI_LimitedEta', - type='TH1F', - title="Efficiency with RoIs for |#eta|<.0.7", - xbins=2, xmin=-0.5, xmax=1.5) ] - self.Histograms += [ defineHistogram('EtaTileMu_wRoI, EtaRoI_wTileMu', - type='TH2F', - title="Matched TileMu with RoIs;#eta(TileMu);#eta(RoI)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=68, ymin=-1.7, ymax=1.7) ] - self.Histograms += [ defineHistogram('PhiTileMu_wRoI, PhiRoI_wTileMu', - type='TH2F', - title="Matched TileMu with RoIs;#phi(TileMu);#phi(RoI)", - xbins=64, xmin=-3.14, xmax=3.14, ybins=128, ymin=-3.14, ymax=3.14) ] - self.Histograms += [ defineHistogram('EtaRoI_NoTileMu, PhiRoI_NoTileMu', - type='TH2F', - title="RoIs for zero TileMu;#eta(RoI);#phi(RoI)", - xbins=50, xmin=-2.5, xmax=2.5, ybins=64, ymin=-3.14, ymax=3.14) ] - - - -class TrigTileRODMuAlgCosmicMonitoring(TrigTileRODMuAlgOnlineMonitoring): - def __init__(self, name='TileRODMuCosmicMonitoring'): - super(TrigTileRODMuAlgCosmicMonitoring, self).__init__(name) - self.defineTarget("Cosmic") - - self.Histograms = [ defineHistogram('NTileRODMu', - type='TH1F', - title="Number of muons from TrigTileRODMuAlg (Cosmic)", - xbins=10, xmin=0., xmax=10.) ] - self.Histograms += [ defineHistogram('EtaTileRODMu', - type='TH1F', - title="#eta from TrigTileRODMuAlg (Cosmic)", - xbins=34, xmin=-1.7, xmax=1.7) ] - self.Histograms += [ defineHistogram('PhiTileRODMu', - type='TH1F', - title="#phi from TrigTileRODMuAlg (Cosmic)", - xbins=64, xmin=-3.14, xmax=3.14) ] - self.Histograms += [ defineHistogram('ETileRODMu', - type='TH1F', - title="E(GeV) from TrigTileRODMuAlg (Cosmic)", - xbins=200, xmin=0., xmax=10.) ] - self.Histograms += [ defineHistogram('ETileRODMuLoose', - type='TH1F', - title="E(GeV) Loose Selection from TrigTileRODMuAlg (Cosmic)", - xbins=200, xmin=0., xmax=10.) ] - self.Histograms += [ defineHistogram('EtaTileRODMu, PhiTileRODMu', - type='TH2F', - title="#eta vs. #phi from TrigTileRODMuAlg (Cosmic)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=64, ymin=-3.14, ymax=3.14) ] - self.Histograms += [ defineHistogram('EtaTileRODMu, ETileRODMu', - type='TH2F', - title="#eta vs. E(GeV) from TrigTileRODMuAlg (Cosmic)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=200, ymin=0., ymax=10.) ] - self.Histograms += [ defineHistogram('PhiTileRODMu, ETileRODMu', - type='TH2F', - title="#phi vs. E(GeV) from TrigTileRODMuAlg (Cosmic)", - xbins=64, xmin=-3.14, xmax=3.14, ybins=200, ymin=0., ymax=10.) ] - self.Histograms += [ defineHistogram('EtaTileRODMuLoose, PhiTileRODMuLoose', - type='TH2F', - title="#eta vs. #phi Loose Selection from TrigTileRODMuAlg (Cosmic)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=64, ymin=-3.14, ymax=3.14) ] - - ReadRoIsFromL1 = True - if ReadRoIsFromL1: - self.Histograms += [ defineHistogram('NROBFrags', - type='TH1F', - title="N of ROBFragments", - xbins=70, xmin=-0.5, xmax=69.5) ] - self.Histograms += [ defineHistogram('EffEvtswRoI', - type='TH1F', - title="Efficiency with RoIs", - xbins=2, xmin=-0.5, xmax=1.5) ] - self.Histograms += [ defineHistogram('EffEvtswRoI_LimitedEta', - type='TH1F', - title="Efficiency with RoIs for |#eta|<0.7", - xbins=2, xmin=-0.5, xmax=1.5) ] - self.Histograms += [ defineHistogram('EtaTileMu_wRoI, EtaRoI_wTileMu', - type='TH2F', - title="Matched TileMu with RoIs;#eta(TileMu);#eta(RoI)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=68, ymin=-1.7, ymax=1.7) ] - self.Histograms += [ defineHistogram('PhiTileMu_wRoI, PhiRoI_wTileMu', - type='TH2F', - title="Matched TileMu with RoIs;#phi(TileMu);#phi(RoI)", - xbins=64, xmin=-3.14, xmax=3.14, ybins=128, ymin=-3.14, ymax=3.14) ] - self.Histograms += [ defineHistogram('EtaRoI_NoTileMu, PhiRoI_NoTileMu', - type='TH2F', - title="RoIs for zero TileMu;#eta(RoI);#phi(RoI)", - xbins=50, xmin=-2.5, xmax=2.5, ybins=64, ymin=-3.14, ymax=3.14) ] - - - -class TrigTileRODMuAlgValidationMonitoring(TrigTileRODMuAlgOnlineMonitoring): - def __init__(self, name='TileRODMuValidationMonitoring'): - super(TrigTileRODMuAlgValidationMonitoring, self).__init__(name) - self.defineTarget("Validation") - - self.Histograms = [ defineHistogram('NTileRODMu', - type='TH1F', - title="Number of muons from TrigTileRODMuAlg (Validation)", - xbins=10, xmin=0., xmax=10.) ] - self.Histograms += [ defineHistogram('EtaTileRODMu', - type='TH1F', - title="#eta from TrigTileRODMuAlg (Validation)", - xbins=34, xmin=-1.7, xmax=1.7) ] - self.Histograms += [ defineHistogram('PhiTileRODMu', - type='TH1F', - title="#phi from TrigTileRODMuAlg (Validation)", - xbins=64, xmin=-3.14, xmax=3.14) ] - self.Histograms += [ defineHistogram('ETileRODMu', - type='TH1F', - title="E(GeV) from TrigTileRODMuAlg (Validation)", - xbins=200, xmin=0., xmax=10.) ] - self.Histograms += [ defineHistogram('EtaTileRODMu, PhiTileRODMu', - type='TH2F', - title="#eta vs. #phi from TrigTileRODMuAlg (Validation)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=64, ymin=-3.14, ymax=3.14) ] - self.Histograms += [ defineHistogram('ETileRODMuLoose', - type='TH1F', - title="E(GeV) Loose Selection from TrigTileRODMuAlg (Validation)", - xbins=200, xmin=0., xmax=10.) ] - self.Histograms += [ defineHistogram('EtaTileRODMuLoose, PhiTileRODMuLoose', - type='TH2F', - title="#eta vs. #phi Loose Selection from TrigTileRODMuAlg (Validation)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=64, ymin=-3.14, ymax=3.14) ] - self.Histograms += [ defineHistogram('EtaTileRODMu, ETileRODMu', - type='TH2F', - title="#eta vs. E(GeV) from TrigTileRODMuAlg (Validation)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=200, ymin=0., ymax=10.) ] - self.Histograms += [ defineHistogram('PhiTileRODMu, ETileRODMu', - type='TH2F', - title="#phi vs. E(GeV) from TrigTileRODMuAlg (Validation)", - xbins=64, xmin=-3.14, xmax=3.14, ybins=200, ymin=0., ymax=10.) ] - - ReadRoIsFromL1 = True - if ReadRoIsFromL1: - self.Histograms += [ defineHistogram('NROBFrags', - type='TH1F', - title="N of ROBFragments", - xbins=70, xmin=-0.5, xmax=69.5) ] - self.Histograms += [ defineHistogram('EffEvtswRoI', - type='TH1F', - title="Efficiency with RoIs", - xbins=2, xmin=-0.5, xmax=1.5) ] - self.Histograms += [ defineHistogram('EffEvtswRoI_LimitedEta', - type='TH1F', - title="Efficiency with RoIs for |#eta|<0.7", - xbins=2, xmin=-0.5, xmax=1.5) ] - self.Histograms += [ defineHistogram('EtaTileMu_wRoI, EtaRoI_wTileMu', - type='TH2F', - title="Matched TileMu with RoIs;#eta(TileMu);#eta(RoI)", - xbins=34, xmin=-1.7, xmax=1.7, ybins=68, ymin=-1.7, ymax=1.7) ] - self.Histograms += [ defineHistogram('PhiTileMu_wRoI, PhiRoI_wTileMu', - type='TH2F', - title="Matched TileMu with RoIs;#phi(TileMu);#phi(RoI)", - xbins=64, xmin=-3.14, xmax=3.14, ybins=128, ymin=-3.14, ymax=3.14) ] - self.Histograms += [ defineHistogram('EtaRoI_NoTileMu, PhiRoI_NoTileMu', - type='TH2F', - title="RoIs for zero TileMu;#eta(RoI);#phi(RoI)", - xbins=50, xmin=-2.5, xmax=2.5, ybins=64, ymin=-3.14, ymax=3.14) ] - - - -# TrigTileMuFex histograms - -class TrigTileMuFexOnlineMonitoring(TrigGenericMonitoringToolConfig): - def __init__ (self, name="TrigTileMuFexOnlineMonitoring"): - super(TrigTileMuFexOnlineMonitoring, self).__init__(name) - self.defineTarget("Online") - - self.Histograms = [ defineHistogram('NTrack', - type='TH1F', - title="N of tracks within the given RoI (Online)", - xbins=20, xmin=-0.5, xmax=19.5) ] - self.Histograms += [ defineHistogram('PtTrackAll', - type='TH1F', - title="P_{T} ^{Track} (GeV)", - xbins=200, xmin=-50., xmax=50.) ] - self.Histograms += [ defineHistogram('EtaTrackAll', - type='TH1F', - title="Eta(Track)", - xbins = 100, xmin=-5., xmax=5.)] - self.Histograms += [ defineHistogram('PhiTrackAll', - type='TH1F', - title="Phi(Track)", - xbins = 100, xmin=-3.2, xmax=3.2)] - self.Histograms += [ defineHistogram('EtaTrackAll, PhiTrackAll', - type='TH2F', - title="Phi(Track) vs. Eta(Track)", - xbins = 100, xmin=-5., xmax=5., ybins = 100, ymin=-3.2, ymax=3.2)] - - - -class TrigTileMuFexCosmicMonitoring(TrigGenericMonitoringToolConfig): - def __init__ (self, name="TrigTileMuFexCosmicMonitoring"): - super(TrigTileMuFexCosmicMonitoring, self).__init__(name) - self.defineTarget("Cosmic") - - self.Histograms = [ defineHistogram('NTrack', - type='TH1F', - title="N of ttacks within the given RoI (Cosmic)", - xbins=20, xmin=-0.5, xmax=19.5) ] - self.Histograms += [ defineHistogram('PtTrackAll', - type='TH1F', - title="P_{T} ^{Track} (GeV)", - xbins=200, xmin=-50., xmax=50.) ] - self.Histograms += [ defineHistogram('EtaTrackAll', - type='TH1F', - title="Eta(Track)", - xbins = 100, xmin=-5., xmax=5.)] - self.Histograms += [ defineHistogram('PhiTrackAll', - type='TH1F', - title="Phi(Track)", - xbins = 100, xmin=-3.2, xmax=3.2)] - self.Histograms += [ defineHistogram('EtaTrackAll, PhiTrackAll', - type='TH2F', - title="Phi(Track) vs. Eta(Track)", - xbins = 100, xmin=-5., xmax=5., ybins = 100, ymin=-3.2, ymax=3.2)] - - - -class TrigTileMuFexValidationMonitoring(TrigGenericMonitoringToolConfig): - def __init__ (self, name="TrigTileMuFexValidationMonitoring"): - super(TrigTileMuFexValidationMonitoring, self).__init__(name) - self.defineTarget("Validation") - - self.Histograms = [ defineHistogram('NTrack', - type='TH1F', - title="N of tracks within the given RoI (Validation)", - xbins=20, xmin=-0.5, xmax=19.5) ] - self.Histograms += [ defineHistogram('PtTrackAll', - type='TH1F', - title="P_{T} ^{Track} (GeV)", - xbins=200, xmin=-50., xmax=50.) ] - self.Histograms += [ defineHistogram('EtaTrackAll', - type='TH1F', - title="Eta(Track)", - xbins = 100, xmin=-5., xmax=5.)] - self.Histograms += [ defineHistogram('PhiTrackAll', - type='TH1F', - title="Phi(Track)", - xbins = 100, xmin=-3.2, xmax=3.2)] - self.Histograms += [ defineHistogram('EtaTrackAll, PhiTrackAll', - type='TH2F', - title="Phi(Track) vs. Eta(Track)", - xbins = 100, xmin=-5., xmax=5., ybins = 100, ymin=-3.2, ymax=3.2)] - - GetTruthMuon = False - if GetTruthMuon: - self.Histograms += [ defineHistogram('NTruth', - type='TH1F', - title="N of tracks with matching Truth (Validation)", - xbins=20, xmin=-0.5, xmax=19.5) ] - self.Histograms += [ defineHistogram('DelEtaTruth', - type='TH1F', - title="Eta(Track)-Eta(Truth)", - xbins=200, xmin=-0.1, xmax=0.1) ] - self.Histograms += [ defineHistogram('DelPhiTruth', - type='TH1F', - title="Phi(Track)-Phi(Truth)", - xbins=200, xmin=-0.1, xmax=0.1) ] - self.Histograms += [ defineHistogram('PtTruth, PtTrack', - type='TH2F', - title="P_{T} ^{Track} (GeV) vs. P_{T} ^{True} (GeV)", - xbins=200, xmin=-20., xmax=20., ybins=200, ymin=-20., ymax=20.) ] - self.Histograms += [ defineHistogram('DelPtTruth', - type='TH1F', - title="Pt(Track)-Pt(Truth)", - xbins=200, xmin=-10., xmax=10.) ] diff --git a/Trigger/TrigAlgorithms/TrigTileMuId/python/TrigTileRODMuAlgConfig.py b/Trigger/TrigAlgorithms/TrigTileMuId/python/TrigTileRODMuAlgConfig.py deleted file mode 100755 index 6e0088523f7578b327f0225ba0ee7c36e72aa9c3..0000000000000000000000000000000000000000 --- a/Trigger/TrigAlgorithms/TrigTileMuId/python/TrigTileRODMuAlgConfig.py +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration - -from TrigTileMuId import TrigTileMuIdConf - -class TrigTileRODMuAlg_L2(TrigTileMuIdConf.TrigTileRODMuAlg): - __slot__ = [] - def __init__(self, name='TrigTileRODMuAlg_L2'): - TrigTileMuIdConf.TrigTileRODMuAlg.__init__(self, name) - - self.ReadRoIsFromL1 = True - #self.ReadRoIsFromL1 = False - - self.TileMuTagsOutputName = "TileL2Cnt" - - self.UseRS = False - - self.ROBIDLIST = [0x510000,0x510001,0x510002,0x510003,0x510004,0x510005,0x510006,0x510007, # LBA (0x100-0x11f) - 0x510008,0x510009,0x51000a,0x51000b,0x51000c,0x51000d,0x51000e,0x51000f, # LBA (0x120-0x13f) - 0x520000,0x520001,0x520002,0x520003,0x520004,0x520005,0x520006,0x520007, # LBC (0x200-0x21f) - 0x520008,0x520009,0x52000a,0x52000b,0x52000c,0x52000d,0x52000e,0x52000f, # LBC (0x220-0x23f) - 0x530000,0x530001,0x530002,0x530003,0x530004,0x530005,0x530006,0x530007, # EBA (0x300-0x31f) - 0x530008,0x530009,0x53000a,0x53000b,0x53000c,0x53000d,0x53000e,0x53000f, # EBA (0x320-0x33f) - 0x540000,0x540001,0x540002,0x540003,0x540004,0x540005,0x540006,0x540007, # EBC (0x400-0x41f) - 0x540008,0x540009,0x54000a,0x54000b,0x54000c,0x54000d,0x54000e,0x54000f, # EBC (0x420-0x43f) - ] - - self.EtaMin = -1.609430 - - self.EtaMax = 1.609430 - - self.PhiMin = 0.0 - - self.PhiMax = 6.283185 - - self.LooseSelection = True - - from TrigTileMuId.TrigTileMuIdMonitoring import TrigTileRODMuAlgOnlineMonitoring, TrigTileRODMuAlgCosmicMonitoring, TrigTileRODMuAlgValidationMonitoring - online = TrigTileRODMuAlgOnlineMonitoring() - cosmic = TrigTileRODMuAlgCosmicMonitoring() - validation = TrigTileRODMuAlgValidationMonitoring() - - from TrigTimeMonitor.TrigTimeHistToolConfig import TrigTimeHistToolConfig - time = TrigTimeHistToolConfig("Time") - time.TimerHistLimits = [0, 70] - - self.AthenaMonTools = [ time, cosmic, validation, online ] - -class TrigTileRODMuAlg_All(TrigTileMuIdConf.TrigTileRODMuAlg): - __slot__ = [] - def __init__(self, name='TrigTileRODMuAlg_All'): - TrigTileMuIdConf.TrigTileRODMuAlg.__init__(self, name) - - self.ReadRoIsFromL1 = True - #self.ReadRoIsFromL1 = False - - self.TileMuTagsOutputName = "TileL2Cnt" - - self.UseRS = False - - self.ROBIDLIST = [0x510000,0x510001,0x510002,0x510003,0x510004,0x510005,0x510006,0x510007, # LBA (0x100-0x11f) - 0x510008,0x510009,0x51000a,0x51000b,0x51000c,0x51000d,0x51000e,0x51000f, # LBA (0x120-0x13f) - 0x520000,0x520001,0x520002,0x520003,0x520004,0x520005,0x520006,0x520007, # LBC (0x200-0x21f) - 0x520008,0x520009,0x52000a,0x52000b,0x52000c,0x52000d,0x52000e,0x52000f, # LBC (0x220-0x23f) - 0x530000,0x530001,0x530002,0x530003,0x530004,0x530005,0x530006,0x530007, # EBA (0x300-0x31f) - 0x530008,0x530009,0x53000a,0x53000b,0x53000c,0x53000d,0x53000e,0x53000f, # EBA (0x320-0x33f) - 0x540000,0x540001,0x540002,0x540003,0x540004,0x540005,0x540006,0x540007, # EBC (0x400-0x41f) - 0x540008,0x540009,0x54000a,0x54000b,0x54000c,0x54000d,0x54000e,0x54000f, # EBC (0x420-0x43f) - ] - - self.EtaMin = -1.609430 - - self.EtaMax = 1.609430 - - self.PhiMin = 0.0 - - self.PhiMax = 6.283185 - - self.LooseSelection = True - - from TrigTileMuId.TrigTileMuIdMonitoring import TrigTileRODMuAlgOnlineMonitoring, TrigTileRODMuAlgCosmicMonitoring, TrigTileRODMuAlgValidationMonitoring - online = TrigTileRODMuAlgOnlineMonitoring() - cosmic = TrigTileRODMuAlgCosmicMonitoring() - validation = TrigTileRODMuAlgValidationMonitoring() - - from TrigTimeMonitor.TrigTimeHistToolConfig import TrigTimeHistToolConfig - time = TrigTimeHistToolConfig("Time") - time.TimerHistLimits = [0, 70] - - self.AthenaMonTools = [ time, cosmic, validation, online ] diff --git a/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileLookForMuAlg.cxx b/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileLookForMuAlg.cxx deleted file mode 100755 index 4f0265c5e8bc463f546e100c8c83af091f448dee..0000000000000000000000000000000000000000 --- a/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileLookForMuAlg.cxx +++ /dev/null @@ -1,653 +0,0 @@ -/* - Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration -*/ - -//--------------------------------------------------------------------------- -// $Id: TrigTileLookForMuAlg.cxx,v 1.34 2009-04-05 04:24:07 ssnyder Exp $ -// -// Author : G Usai -// -//--------------------------------------------------------------------------- - -#include "GaudiKernel/IToolSvc.h" -#include "GaudiKernel/ITHistSvc.h" -#include "TrigT1Interfaces/TrigT1Interfaces_ClassDEF.h" -#include "TrigSteeringEvent/TrigRoiDescriptor.h" -#include "ByteStreamCnvSvcBase/IROBDataProviderSvc.h" -#include "CaloIdentifier/TileID.h" -#include "ByteStreamData/ROBData.h" -#include "TrigMuonEvent/TileMuFeature.h" -#include "TrigTileLookForMuAlg.h" - -class ISvcLocator; - - - -TrigTileLookForMuAlg::TrigTileLookForMuAlg(const std::string& name, ISvcLocator* pSvcLocator) - :HLT::AllTEAlgo(name, pSvcLocator) -{ - declareProperty("LowerTresh0MeV", m_th0d=150.0); - declareProperty("LowerTresh1MeV", m_th1d=150.0); - declareProperty("LowerTresh2MeV", m_th2d=150.0); - declareProperty("LowerTreshScinMeV", m_thitcd=160.0); - declareProperty("UpperTresh2MeV", m_thres2); - declareProperty("UpperTresh1MeV", m_thres1); - declareProperty("UpperTresh0MeV", m_thres0); - declareProperty("From3to2", m_cell32); - declareProperty("From2to1", m_cell21); - declareProperty("LooseSelection", m_LooseSelection=true); - declareProperty("ReadRoIsFromL1", m_ReadRoIsFromL1=false); - declareProperty("DelEta_ForRoIs", m_DelEta_ForRoIs=0.1); - declareProperty("DelPhi_ForRoIs", m_DelPhi_ForRoIs=0.2); - - // Declare monitored variables - declareMonitoredVariable("NTileMu", m_allNMuon); - declareMonitoredVariable("NCellsAccess", m_NCellsAccess); - declareMonitoredVariable("EffEvtswRoI", m_EffEvtswRoI); - declareMonitoredVariable("ConversionErrors", m_conversionError); - declareMonitoredVariable("AlgorithmErrors", m_algorithmError); - - // Declare monitored containers - declareMonitoredStdContainer("EtaTileMu", m_allEta); - declareMonitoredStdContainer("PhiTileMu", m_allPhi); - declareMonitoredStdContainer("ETileMu", m_allEne); - declareMonitoredStdContainer("EtaTileMuLoose", m_allEta_LS); - declareMonitoredStdContainer("PhiTileMuLoose", m_allPhi_LS); - declareMonitoredStdContainer("ETileMuLoose", m_allEne_LS); - declareMonitoredStdContainer("EffEvtswRoI_LimitedEta",m_EffEvtswRoI_LimitedEta); - declareMonitoredStdContainer("EtaTileMu_wRoI", m_EtaTileMu_wRoI); - declareMonitoredStdContainer("EtaRoI_wTileMu", m_EtaRoI_wTileMu); - declareMonitoredStdContainer("PhiTileMu_wRoI", m_PhiTileMu_wRoI); - declareMonitoredStdContainer("PhiRoI_wTileMu", m_PhiRoI_wTileMu); - declareMonitoredStdContainer("EtaRoI_NoTileMu", m_EtaRoI_NoTileMu); - declareMonitoredStdContainer("PhiRoI_NoTileMu", m_PhiRoI_NoTileMu); -} - - - -TrigTileLookForMuAlg::~TrigTileLookForMuAlg() -{ -} - - - -HLT::ErrorCode TrigTileLookForMuAlg::hltInitialize() -{ - // Timers - m_timerTotal = addTimer("Total"); - m_timerLink = addTimer("Link"); - m_timerCandSearch = addTimer("CandSearch"); - m_timerLoopOnCand = addTimer("LoopOnCand"); - m_timerLoopOnCellCollections = addTimer("LoopOnCellCollections"); - - if ( detStore()->retrieve(m_tileID).isFailure()) { - ATH_MSG_ERROR("Unable to retrieve TileID helper from DetectorStore"); - return HLT::BAD_JOB_SETUP; - } - - IToolSvc* toolSvc; - if(service("ToolSvc",toolSvc).isFailure()) { - ATH_MSG_ERROR("Cannot retrieve IToolSvc. Exiting!"); - return HLT::TOOL_FAILURE; - } - - if (toolSvc->retrieveTool("TrigDataAccess", m_data).isFailure()) { - ATH_MSG_ERROR("Cannot retrieve TrigDataAccess"); - return HLT::TOOL_FAILURE; - } - - // Define a numbering scheme for the cells - double f; - unsigned int i=0; - for (f = -1.2; f <1.3 ; f += 0.2) { - m_eta2[i] = f; - i=i+1; - } - - i=0; - for (f = -1.45; f<1.5; f += 0.1) { - m_eta1[i] = f; - i++; - } - - i=0; - for (f = -1.55; f<1.6; f += 0.1){ - if ( fabs(f) > (1.05-0.001) && fabs(f) < (1.05+0.001)){ - ATH_MSG_VERBOSE("SKIP for A-11 or A+11 cell! eta=" << f); - } else { - m_eta0[i] = f; - ATH_MSG_VERBOSE("Fill m_eta0[i]=" << m_eta0[i] << "[" << i << "]"); - i++; - } - } - - m_deta2 = 0.1; - m_deta1 = 0.05; - - ATH_MSG_DEBUG("TrigTileLookForMuAlg initialization completed"); - - return HLT::OK; -} - - - -HLT::ErrorCode TrigTileLookForMuAlg::hltExecute(std::vector<std::vector<HLT::TriggerElement*> >& inputVector, unsigned int type_out) -{ - // total execution time - if ( timerSvc() ) m_timerTotal->start(); - - ATH_MSG_DEBUG("exec HLTAlgorithm started"); - - m_error=0x0; - - const double etamin = -1.609430; - const double etamax = 1.609430; - const double phimin = 0.0; //-3.15; - const double phimax = 6.283185; // 3.15; - - const double User_Pi = 3.141592654; - const int NMax_Muons = 30; - int NRoIs = 0; // RoIs from |eta| < 1.7 - int NRoIs_LimitedEta = 0; // RoIs from |eta| < 1.4 - float Eta_RoIs[NMax_Muons], Phi_RoIs[NMax_Muons]; - float Eta_Mus[NMax_Muons], Phi_Mus[NMax_Muons]; - double Eta_MinMax[2][NMax_Muons], Phi_MinMax[2][NMax_Muons]; - int here_NCellsAccess = 0; - - double m0[30][64] = {{0}}; - double m1[30][64] = {{0}}; - double m2[13][64] = {{0}}; - - //int Flg_TrigFire[2] = {0}; // 1:From TrigTileMu 2:From Cosmic - - // monitored variables - beforeExecMonitors().ignore(); - - m_allNMuon = 0; - m_NCellsAccess = 0; - m_EffEvtswRoI = 0.0; - - m_allEta.clear(); - m_allPhi.clear(); - m_allEne.clear(); - m_allEta_LS.clear(); - m_allPhi_LS.clear(); - m_allEne_LS.clear(); - m_EffEvtswRoI_LimitedEta.clear(); - m_EtaTileMu_wRoI.clear(); - m_EtaRoI_wTileMu.clear(); - m_PhiTileMu_wRoI.clear(); - m_PhiRoI_wTileMu.clear(); - m_EtaRoI_NoTileMu.clear(); - m_PhiRoI_NoTileMu.clear(); - - int j; - double ph[64]={0}; - - if ( timerSvc() ) m_timerLink->start(); - - // ----------- Try to read RoIs from L1_RPC (by HL, 2008-12-12) -----------// - if (m_ReadRoIsFromL1) { - - ATH_MSG_DEBUG("Found " << inputVector.size() << " TE vectors"); - - if ( inputVector.size() != 1 ) { - ATH_MSG_WARNING("inputVector.size()(=" << inputVector.size() - << ") != 1, Please check TE from LvL1!!" ); - } - - int ii=0; - for (std::vector<HLT::TEVec>::const_iterator it = inputVector.begin();it != inputVector.end(); ++it) { - - ATH_MSG_DEBUG("TE vector " << ii++ << "contains " << (*it).size() << " TEs"); - - for (HLT::TEVec::const_iterator inner_it = (*it).begin();inner_it != (*it).end(); ++inner_it) { - - const TrigRoiDescriptor* roiDescriptor = 0; - - HLT::ErrorCode sc = getFeature((*inner_it),roiDescriptor, ""); - if (sc != HLT::OK) { - ATH_MSG_ERROR(" Failed to find RoiDescriptor "); - return HLT::BAD_JOB_SETUP; - } - - ATH_MSG_DEBUG(" REGTEST: RoI id " << roiDescriptor->roiId() - << " located at phi = " << roiDescriptor->phi() - << ", eta = " << roiDescriptor->eta()); - - Eta_RoIs[NRoIs] = roiDescriptor->eta(); - Phi_RoIs[NRoIs] = roiDescriptor->phi(); - - double now_eta = roiDescriptor->eta(); - double now_phi = roiDescriptor->phi(); - if (now_phi < 0) now_phi = now_phi + 2*User_Pi; // phi --> 0 ~ 2pi - - double now_etamin = now_eta - m_DelEta_ForRoIs; - double now_etamax = now_eta + m_DelEta_ForRoIs; - double now_phimin = now_phi - m_DelPhi_ForRoIs; - double now_phimax = now_phi + m_DelPhi_ForRoIs; - - if (now_phimin < 0.) { now_phimin = now_phimin + 2*User_Pi; } - if (now_phimax > 2*User_Pi) { now_phimax = now_phimax - 2*User_Pi; } - - /* --> For Half-Scan method <-- - if ( now_eta < 0) { - now_etamax = std::max(0.0, now_etamax); - now_etamin = std::min(etamin, now_etamin); - } else { - now_etamax = std::max(etamax, now_etamax); - now_etamin = std::min(0.0, now_etamin); - } */ - - if ( fabs(now_eta) > 0.6 && fabs(now_eta) < 1.2 ) { - if (now_eta<0) { now_etamin = etamin; now_etamax = -0.2; } - if (now_eta>0) { now_etamin = 0.2; now_etamax = etamax; } - } - - ATH_MSG_DEBUG("For DetROBIDListUint, EtaMin=" << now_etamin - << " EtaMax=" << now_etamax - << " PhiMin=" << now_phimin - << " PhiMax=" << now_phimax); - - Eta_MinMax[0][NRoIs] = now_etamin; - Eta_MinMax[1][NRoIs] = now_etamax; - Phi_MinMax[0][NRoIs] = now_phimin; - Phi_MinMax[1][NRoIs] = now_phimax; - - NRoIs++; - if ( fabs(roiDescriptor->eta()) < 0.7 ) NRoIs_LimitedEta++; - - } - - } - - } else { - - Eta_MinMax[0][NRoIs] = etamin; - Eta_MinMax[1][NRoIs] = etamax; - Phi_MinMax[0][NRoIs] = phimin; - Phi_MinMax[1][NRoIs] = phimax; - NRoIs++; - - } - - // Stop timer - if ( timerSvc() ) m_timerLink->stop(); - - // Start timer of loop - if ( timerSvc() ) m_timerLoopOnCellCollections->start(); - - for(int iRoI=0; iRoI<NRoIs; iRoI++) { - - m_data->RegionSelector(0, Eta_MinMax[0][iRoI], Eta_MinMax[1][iRoI], Phi_MinMax[0][iRoI], Phi_MinMax[1][iRoI], TILE); - - for(unsigned int iR=0; iR!=m_data->TileContSize();++iR) { - - if(m_data->LoadCollections(m_itBegin,m_itEnd,iR,!iR).isFailure()){ - ATH_MSG_FATAL("Error LoadCollections"); - return HLT::TOOL_FAILURE; - } - m_error|=m_data->report_error(); - if ( 0x0FFFFFFF & m_error ) m_conversionError++; - if ( 0xF0000000 & m_error ) m_algorithmError++; - if( m_error ) { - ATH_MSG_DEBUG("Monitoring error found"); - return HLT::ERROR; - } - - // Iterate over all cells - for(m_itT = m_itBegin;m_itT != m_itEnd; ++m_itT) { - - here_NCellsAccess++; - - const TileCell* nowcell = (*m_itT); - - ATH_MSG_VERBOSE("Collection info: ID: " << nowcell->ID() - << " eta: " << nowcell->eta() - << " phi: " << nowcell->phi() - << " module nr: " << m_tileID->module(nowcell->ID()) - << " Energy: " << nowcell->energy() - << " CellTy: " << m_tileID->sample(nowcell->ID())); - - // Fill Matrix (to be optimized) - - // D cells - if(m_tileID->sample(nowcell->ID()) == 2) { - for(j=0;j<13;++j) { - if(nowcell->eta()<(m_eta2[j]+m_deta2) && nowcell->eta()>(m_eta2[j]-m_deta2)) { - m2[j][m_tileID->module(nowcell->ID())] = nowcell->energy(); - ph[m_tileID->module(nowcell->ID())] = nowcell->phi(); - } - } - } - - // BC cells - if(m_tileID->sample(nowcell->ID()) == 1) { - for(j=0;j<30;++j) { - if(nowcell->eta()<(m_eta1[j]+m_deta1) && nowcell->eta()>(m_eta1[j]-m_deta1)) { - m1[j][m_tileID->module(nowcell->ID())] = nowcell->energy(); - } - } - } - - // A cells - if(m_tileID->sample(nowcell->ID()) == 0) { - for(j=0;j<30;++j) { - if(nowcell->eta()<(m_eta0[j]+m_deta1) && nowcell->eta()>(m_eta0[j]-m_deta1)) { - m0[j][m_tileID->module(nowcell->ID())] = nowcell->energy(); - } - } - } - - // ITC - if(m_tileID->sample(nowcell->ID()) == 3) { - for(j=4;j<30;j+=21) { - if(nowcell->eta()<=(m_eta0[j]+m_deta2) && nowcell->eta()>=(m_eta0[j]-m_deta2)) { - m0[j][m_tileID->module(nowcell->ID())] = nowcell->energy(); - } - } - } - - } // end loop over cells - } // end loop over superdrawers - } // end loop over RoI - - // Stop timer of loop - if ( timerSvc() ) m_timerLoopOnCellCollections->stop(); - - // Start timer of muon search - if ( timerSvc() ) m_timerCandSearch->start(); - - int i, cand=0, ntag=0; - int phc3[30]={0}, etc3[30]={0}, splited[30]={0}; - double tpeta3[30]={0}; - - // Energy - double enedp3[30]={0}; - double enedp2[30]={0}; - double enedp1[30]={0}; - - // Quality flags - int cquality[30]={0}; - int flquality[30]={0}; - int aquality[30]={0}; - - //array to be changed with std::vector as in offline - // Apr. 22, 2008 (H. Lim) : double --> float - std::vector<float> enetr(4); - float etatr=0; - float phitr=0; - - // define candidates - for ( j=0; j<64; ++j) { - - for (i=0;i<13; ++i) { - - bool OK_HighThr = true; - if (!m_LooseSelection && (m2[i][j] >= m_thres2[i])) OK_HighThr = false; - - if ( (m2[i][j]>= m_th2d) && OK_HighThr ) { - - phc3[cand] = j; - etc3[cand] = i; - splited[cand]=-1; - enedp3[cand]=m2[i][j]; - cquality[cand] = (m2[i][j] < m_thres2[i] ? 0:1); - - ATH_MSG_VERBOSE(" found a muon candidate= " << cand - << "i= " << i - << ",j= " << j - << ",ene= " << m2[i][j] - << " m_thres2= " << m_thres2[i]); - - cand++; - } - if(cand >= NMax_Muons) break; - } - if(cand >= NMax_Muons) break; - } - - m_NCellsAccess = std::min(here_NCellsAccess, 599); - - // Repaire for muons splitted between cells in the 3rd layer - - int nsplit=0; - - for ( i=0; i<cand; ++i ) { - - tpeta3[i] = m_eta2[etc3[i]]; - - for (j=0;j<=i-1;++j) { - if ( (cquality[i]+cquality[j]) <= 1 ) { - if ( ( abs(phc3[i]-phc3[j]) == 0 ) && // same phi bin - ( abs(etc3[i]-etc3[j]) <= 1 ) && // neighbor's eta bin - ( (m2[etc3[i]] [phc3[i]] + m2[etc3[j]] [phc3[j]]) < ( (m_thres2[etc3[i]] > m_thres2[etc3[j]]) ? m_thres2[etc3[i]] : m_thres2[etc3[j]] ) ) ) { - splited[i] = j; - enedp3[i] = m2[etc3[i]] [phc3[i]] + m2[etc3[j]] [phc3[j]]; - tpeta3[i] = (m_eta2[etc3[i]] + m_eta2[etc3[j]])/2; - nsplit = nsplit+1; - } - } - } - - } // end loop on candidates - - if ( timerSvc() ) m_timerCandSearch->stop(); - - if ( timerSvc() ) m_timerLoopOnCand->start(); - - // loop on the candidates - - int ci3, found[30]={0}; - - for(ci3=0; (ci3<cand && splited[ci3]<0) || ((ci3<cand && splited[ci3]>=0) && found[splited[ci3]]==0) ;++ci3) { - - found[ci3] = 0; - j = phc3[ci3]; - - ATH_MSG_VERBOSE("loop on muon candidates: ci3,j " << ci3 << ", " << j); - - int ksto2=m_cell32[6*etc3[ci3]+0]; - - for (int ks=1; ks<=ksto2 && found[ci3]!=1; ++ks) { - - int k2 = m_cell32[6*etc3[ci3]+ks]; - - bool OK_HighThr = true; - if (!m_LooseSelection && (m1[k2][j]>= m_thres1[k2]) ) OK_HighThr = false; - - if (m1[k2][j]>m_th1d && OK_HighThr) { - - flquality[ci3] = (m1[k2][j] < m_thres1[k2] ? 0:1); - enedp2[ci3] = m1[k2][j]; - - int j1 = j; - int ksto1 = m_cell21[6*k2+0]; - - for(int kp=1; kp<=ksto1 && found[ci3]!=1; ++kp) { - - int k1 = m_cell21[6*k2+kp]; - - OK_HighThr = true; - if (!m_LooseSelection && (m0[k1][j1]>=m_thres0[k1]) ) OK_HighThr=false; - - if ( ( ( (k1!=4 && k1!=25) && m0[k1][j1]>m_th0d ) || ( (k1==4 || k1==25) && m0[k1][j1]>m_thitcd ) ) && OK_HighThr ) { - - enedp1[ci3] = m0[k1][j1]; - aquality[ci3]=(m0[k1][j1] < m_thres0[k1] ? 0:1); - - if ( cquality[ci3]+flquality[ci3]+aquality[ci3] <= 1 ) { // We have some tracks muon like - - found[ci3] = 1; - etatr = (tpeta3[ci3]+m_eta1[k2]+m_eta0[k1])/3; - phitr = ph[j1]; - enetr.at(0) = enedp1[ci3]; - enetr.at(1) = enedp2[ci3]; - enetr.at(2) = enedp3[ci3]; - enetr.at(3) = enedp1[ci3]+enedp2[ci3]+enedp3[ci3]; // temporary - - // Quality flag for tight and loose selection - float qf = cquality[ci3]+flquality[ci3]+aquality[ci3]; - - // Fill TileMuFeature - TileMuFeature* muon = new TileMuFeature(etatr, phitr, enetr, qf+1000.); - - Eta_Mus[ntag] = etatr; - Phi_Mus[ntag] = phitr; - - ntag = ntag+1; - - ATH_MSG_DEBUG("Muon tagged: Ntag = " << ntag - << " Etatag = " << etatr - << " Phitag = " << phitr - << " EnergyVec[0] = " << enetr.at(0) - << " EnergyVec[1] = " << enetr.at(1) - << " EnergyVec[2] = " << enetr.at(2) - << " EnergyVec[3] = " << enetr.at(3) - << " qaulityfactor= " << qf); - - // Fill histograms for tight and loose selection - m_allEta.push_back(etatr); - m_allPhi.push_back(phitr); - m_allEne.push_back(enetr.at(3)/1000.); // MeV --> GeV - - // Fill histograms for loose selection - if(qf > 0.) { - m_allEta_LS.push_back(etatr); - m_allPhi_LS.push_back(phitr); - m_allEne_LS.push_back(enetr.at(3)/1000.); // MeV --> GeV - } - - // roiDescriptor position - double eta = etatr; - double phi = phitr; - float roiwidth=0.1; - TrigRoiDescriptor *tmproi = new - TrigRoiDescriptor(eta, eta-roiwidth,eta+roiwidth, - phi, phi-roiwidth,phi+roiwidth); - - // Note: addRoI is defined in AllTEAlgo base class - HLT::TriggerElement* te = addRoI(type_out, tmproi); - - // Set this trigger element to be active - te->setActiveState(true); - //Flg_TrigFire[0] = 1; - - // (2007-07-12, HL) For testing recording TE - HLT::ErrorCode HLTStatus=attachFeature(te, muon); - if( HLTStatus != HLT::OK ) { - ATH_MSG_ERROR("REGTEST Write of TrigTileLookForMu feature into outputTE failed"); - return HLTStatus; - } else { - ATH_MSG_DEBUG("Write of TrigTileLookForMu feature into outputTE OK!"); - } - - } // end if QF <= 1 - } // end if m0 is in the range - } // end loop on pattern 1st layer - } // end if m1 is in the range - } // end loop on pattern 2nd layer - } // end loop on candidates - - // Fill monitored variable for TileCal muon candidates - m_allNMuon = ntag; - - if ( m_ReadRoIsFromL1 ) { // Running seeded by a L1 Muon RoI instead of unseeded mode - - // Fill monitored variables for computing TileMuId efficiency wrt L1 in |eta|<0.7 - if( NRoIs_LimitedEta > 0) { - if( ntag > 0 ) { - m_EffEvtswRoI_LimitedEta.push_back( 1.0 ); - }else{ - m_EffEvtswRoI_LimitedEta.push_back( 0.0 ); - } - } - - if ( ntag > 0 ) { // TileCal muon candidates found (ntag > 0) - - m_EffEvtswRoI = 1.0; - float DelRMin = 9999.9; - int Id_RoI = -1, Id_Mu= -1; - - ////////////////////////////////////// - // Matching between TileCal and RoI // - ////////////////////////////////////// - - for(int iMu=0; iMu<ntag; iMu++) { - - for (int iRoI=0; iRoI<NRoIs; iRoI++) { - - // Compute DeltaPhi between RoI and TileCal - float DelPhi = Phi_Mus[iMu] - Phi_RoIs[iRoI]; - if (DelPhi > User_Pi) DelPhi -= 2*User_Pi; - if (DelPhi < (-1)*User_Pi) DelPhi += 2*User_Pi; - - // Compute DeltaEta between RoI and TileCal - float DelEta = Eta_Mus[iMu] - Eta_RoIs[iRoI]; - - // Compute DeltaR between RoI and TileCal - float DelR = sqrt( pow(DelEta,2) + pow(DelPhi,2) ); - if (DelR < DelRMin) { - Id_Mu = iMu; - Id_RoI = iRoI; - DelRMin = DelR; - } - - } - - } - - //////////////////////////////////////////// - // After matching between TileCal and RoI // - //////////////////////////////////////////// - - if ( Id_RoI > -1 && Id_Mu > -1 ) { // Matching OK - - // Fill monitored variables when L1 Muon RoIs are confirmed in TileCal - m_EtaTileMu_wRoI.push_back( Eta_Mus[Id_Mu] ); - m_EtaRoI_wTileMu.push_back( Eta_RoIs[Id_RoI] ); - m_PhiTileMu_wRoI.push_back( Phi_Mus[Id_Mu]); - m_PhiRoI_wTileMu.push_back( Phi_RoIs[Id_RoI] ); - - ATH_MSG_DEBUG("Matched Eta(TileMu)=" << Eta_Mus[Id_Mu] - << " Eta(RoI)=" << Eta_RoIs[Id_RoI] - << " Phi(TileMu)=" << Phi_Mus[Id_Mu] - << " Phi(RoI)=" << Phi_RoIs[Id_RoI] - << " DelR=" << DelRMin); - - } else { // No matching - - ATH_MSG_DEBUG("No Matching between TileMus and RoIs! Something Wrong?"); - - } - - } else { // No TileCal muon candidates (ntag = 0) - - // Fill monitored variables when L1 Muon RoIs are not confirmed in TileCal - for(int iRoI=0; iRoI<NRoIs; iRoI++) { - m_EtaRoI_NoTileMu.push_back( Eta_RoIs[iRoI] ); - m_PhiRoI_NoTileMu.push_back( Phi_RoIs[iRoI] ); - } - - } // end if ( ntag > 0 ) - - } // end if ( m_ReadRoIsFromL1 ) - - // Stop timers - if ( timerSvc() ) m_timerLoopOnCand->stop(); - if ( timerSvc() ) m_timerTotal->stop(); - - // Stop monitoring - afterExecMonitors().ignore(); - - return HLT::OK; -} - - - -HLT::ErrorCode TrigTileLookForMuAlg::hltFinalize() -{ - ATH_MSG_DEBUG("TrigTileLookForMuAlg finalization completed"); - - return HLT::OK; -} diff --git a/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileLookForMuAlg.h b/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileLookForMuAlg.h deleted file mode 100755 index 4aa9f20b71fee67fc6743a757f10bad0442fcf19..0000000000000000000000000000000000000000 --- a/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileLookForMuAlg.h +++ /dev/null @@ -1,129 +0,0 @@ -/* - Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration -*/ - -//**************************************************************************** -// Filename : TrigTileLookForMuAlg.h -// Author : G Usai -// Created : Jun 2003 -// -//**************************************************************************** - -#ifndef TRIGTILEMUID_TRIGTILELOOKFORMUALG_H -#define TRIGTILEMUID_TRIGTILELOOKFORMUALG_H - -// includes -#include "TrigInterfaces/AllTEAlgo.h" -#include "TrigTimeAlgs/TrigTimerSvc.h" -#include "GaudiKernel/Algorithm.h" -#include "GaudiKernel/ToolHandle.h" -#include "TileEvent/TileCell.h" -#include "TileByteStream/TileROD_Decoder.h" -#include "TileByteStream/TileCellCont.h" -#include "TrigT2CaloCommon/ITrigDataAccess.h" - -// C++ STL includes -#include <vector> -#include <string> -#include <math.h> - -namespace HLT { - class TriggerElement; -} -class Identifier; -class TileID; - -class TrigTileLookForMuAlg : public HLT::AllTEAlgo{ - - public: - - TrigTileLookForMuAlg(const std::string& name, ISvcLocator* pSvcLocator); - - ~TrigTileLookForMuAlg(); - - HLT::ErrorCode hltInitialize(); - HLT::ErrorCode hltFinalize(); - HLT::ErrorCode hltExecute(std::vector<std::vector<HLT::TriggerElement*> >& /*input*/, unsigned int output); - - private: - - /** Error associated to data access */ - uint32_t m_error; - - /** counter for conversion error */ - unsigned int m_conversionError; - - /** counter for algorithm error */ - unsigned int m_algorithmError; - - /** Pointer to TileID */ - const TileID * m_tileID; - - /** Pointer to ITrigDataAccess */ - ITrigDataAccess * m_data; - - /** Pointer to TrigTimer */ - TrigTimer *m_timerTotal, *m_timerLink, *m_timerCandSearch, *m_timerLoopOnCand, *m_timerLoopOnCellCollections; - - TileCellCollection::const_iterator m_itBegin; - TileCellCollection::const_iterator m_itEnd; - TileCellCollection::const_iterator m_itT; - - /** Eta for D cells */ - double m_eta2[13]; - - /** Eta for BC cells */ - double m_eta1[30]; - - /** Eta for A cells */ - double m_eta0[30]; - - /** DeltaEta */ - double m_deta2; - double m_deta1; - - /** Lower energy thresholds */ - double m_th0d; - double m_th1d; - double m_th2d; - double m_thitcd; - - /** Higher energy thresholds */ - std::vector<double> m_thres2; - std::vector<double> m_thres1; - std::vector<double> m_thres0; - - /** Pattern search from 3rd to 2nd layer */ - std::vector<int> m_cell32; - - /** Pattern search from 2nd to 1st layer */ - std::vector<int> m_cell21; - - /** Properties */ - bool m_LooseSelection; - bool m_ReadRoIsFromL1; - double m_DelEta_ForRoIs; - double m_DelPhi_ForRoIs; - - /** Monitored variables */ - int m_allNMuon; - int m_NCellsAccess; - float m_EffEvtswRoI; - - /** Monitored containers */ - std::vector<float> m_allEta; - std::vector<float> m_allPhi; - std::vector<float> m_allEne; - std::vector<float> m_allEta_LS; - std::vector<float> m_allPhi_LS; - std::vector<float> m_allEne_LS; - std::vector<float> m_EffEvtswRoI_LimitedEta; - std::vector<float> m_EtaTileMu_wRoI; - std::vector<float> m_EtaRoI_wTileMu; - std::vector<float> m_PhiTileMu_wRoI; - std::vector<float> m_PhiRoI_wTileMu; - std::vector<float> m_EtaRoI_NoTileMu; - std::vector<float> m_PhiRoI_NoTileMu; -}; - -#endif // TRIGTILEMUID_TRIGTILELOOKFORMUALG_H diff --git a/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileMuFex.cxx b/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileMuFex.cxx deleted file mode 100644 index 8125bd4f2bfbd4922c2c5e27aeddddb1d975c8ca..0000000000000000000000000000000000000000 --- a/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileMuFex.cxx +++ /dev/null @@ -1,500 +0,0 @@ -/* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ - -// ***************************************************************************** -// Filename : TrigTileMuFex.cxx -// Author : Heuijin Lim -// Created : Sep. 2007 -// -// DESCRIPTION: -// Muon candidates from TileCal are stored in the Feature, "TileMuFeature" -// and produced 2nd-ROIs. From these 2nd-ROIs, the tracks from -// Inner-Detector are extracted and compared with the muons from TileCal. -// The combined muons with track are stored in the Feature, -// "TileTrkMuFeature". They will be used in TileMuHypo.cxx of -// Trigger/TrigHypothesis/TrigMuonHypo -// -// HISTORY: -// -// BUGS: -// -//***************************************************************************** - -#include "GaudiKernel/IToolSvc.h" -#include "GaudiKernel/ITHistSvc.h" -#include "GaudiKernel/StatusCode.h" - -#include "AthenaKernel/Timeout.h" - -#include "TrigInDetToolInterfaces/ITrigInDetTrackExtrapolator.h" -#include "TrigInDetEvent/TrigInDetTrackFitPar.h" -#include "TrigInDetEvent/TrigInDetTrackCollection.h" - -#include "TileEvent/TileMuContainer.h" -#include "TrigTileMuFex.h" -#include "TrigMuonEvent/TileMuFeature.h" -#include "TrigMuonEvent/TileTrackMuFeature.h" - -#include "GeneratorObjects/McEventCollection.h" // for retrieving MC - - -class ISvcLocator; - - - -TrigTileMuFex::TrigTileMuFex(const std::string& name, ISvcLocator* pSvcLocator) - : HLT::FexAlgo(name, pSvcLocator), - m_algoId(TrigInDetTrack::NULLID), - m_Typ_IDTrk(0), - m_trackExtrapolator(NULL), - m_MagFieldSvc(NULL) -{ - // standard configuration - declareProperty("IDalgo", m_ID_algo_to_use="IDSCAN"); - declareProperty("Meth_ExtrapTileR", m_Meth_ExtrapTileR = "DirectPars"); - // DirectPars : based on offline-analysis - // EMextraWay : using EM-package way - declareProperty("DelPhi_Cut", m_DelPhi_Cut = 0.2); - declareProperty("DelEta_Cut", m_DelEta_Cut = 0.11); - declareProperty("Pt_Cut", m_Pt_Cut = 2000.0); // MeV - - // In order to use the following package - declareProperty( "RCalBarrelFace", m_RCAL = 1470.0*CLHEP::mm ); - declareProperty( "ZCalEndcapFace", m_ZCAL = 3800.0*CLHEP::mm ); - declareProperty( "TrackExtrapolatorName", m_trackExtrapolatorName = "TrigInDetTrackExtrapolator"); - - // magnetic field - declareProperty( "UseAthenaFieldService", m_useAthenaFieldService = true); - - declareProperty( "GetTruthMuon", m_GetTruthMuon = false); - declareProperty( "KeyForTruth", m_key_for_truth="TruthEvent"); - - // Monitoring - - declareMonitoredVariable("NTrack", m_NTrack = 0); - declareMonitoredVariable("NTruth", m_NTruth = 0); - - declareMonitoredStdContainer("DelEtaTruth", m_DelEtaTruth); - declareMonitoredStdContainer("DelPhiTruth", m_DelPhiTruth); - declareMonitoredStdContainer("DelPtTruth", m_DelPtTruth); - declareMonitoredStdContainer("PtTruth", m_PtTruth); - declareMonitoredStdContainer("PtTrack", m_PtTrack); - declareMonitoredStdContainer("PtTrackAll", m_PtTrackAll); - declareMonitoredStdContainer("EtaTrackAll", m_EtaTrackAll); - declareMonitoredStdContainer("PhiTrackAll", m_PhiTrackAll); - -} - - - -TrigTileMuFex::~TrigTileMuFex() -{ -} - - - -HLT::ErrorCode TrigTileMuFex::hltInitialize() -{ - std::string algoId = m_ID_algo_to_use; - - if(algoId=="IDCSAN") m_algoId = TrigInDetTrack::IDSCANID; - else if (algoId=="SITRACK") m_algoId = TrigInDetTrack::SITRACKID; - else if (algoId=="TRTXK") m_algoId = TrigInDetTrack::TRTXKID; - else if (algoId=="TRTSEG") m_algoId = TrigInDetTrack::TRTLUTID; - else m_algoId = TrigInDetTrack::IDSCANID; - - m_Typ_IDTrk = 0; - if ( algoId=="IDSCAN" ) m_Typ_IDTrk = m_Typ_IDTrk + 1; - else if ( algoId=="SITRACK") m_Typ_IDTrk = m_Typ_IDTrk + 2; - else if ( algoId=="TRTXK") m_Typ_IDTrk = m_Typ_IDTrk + 3; - else if ( algoId=="TRTSEG") m_Typ_IDTrk = m_Typ_IDTrk + 4; - else m_Typ_IDTrk = m_Typ_IDTrk + 1; - - if ( m_Meth_ExtrapTileR=="DirectPars" ) m_Typ_IDTrk = m_Typ_IDTrk+100; - else if ( m_Meth_ExtrapTileR=="EMextraWay" ) m_Typ_IDTrk = m_Typ_IDTrk+200; - else m_Typ_IDTrk = m_Typ_IDTrk+300; - - StatusCode sc = toolSvc()->retrieveTool(m_trackExtrapolatorName, - m_trackExtrapolatorName, - m_trackExtrapolator); - if ( sc.isFailure() ) { - ATH_MSG_FATAL("Unable to locate TrackExtrapolator tool " << m_trackExtrapolatorName); - return HLT::BAD_JOB_SETUP; - } - - // Here one is supposed to open the file if needed and do the setup /////// - ATH_MSG_DEBUG("Initialization completed successfully"); - - return HLT::OK; -} - - - -HLT::ErrorCode TrigTileMuFex::hltExecute(const HLT::TriggerElement* /*inputTE*/, HLT::TriggerElement* outputTE) -{ - const double UpperMax = 9999.9; - const double LowerMax = -9999.9; - const double User_Pi = 3.141592654; - - m_DelEtaTruth.clear(); - m_DelPhiTruth.clear(); - m_DelPtTruth.clear(); - m_PtTruth.clear(); - m_PtTrack.clear(); - m_EtaTrackAll.clear(); - m_PhiTrackAll.clear(); - m_PtTrackAll.clear(); - - ATH_MSG_DEBUG("outputTE->ID(): " << outputTE->getId()); - - //========= Extraction of Muon candidates from TileCal ========= - ElementLink<TileMuFeatureContainer> TileMuFeatureEL; - if ( HLT::OK != getFeatureLink<TileMuFeatureContainer, TileMuFeature> - (outputTE, TileMuFeatureEL) ) - { - ATH_MSG_ERROR(" getFeatureLink fails to get TileMuFeature "); - return HLT::ERROR; - } - if ( !TileMuFeatureEL.isValid() ) - { - ATH_MSG_ERROR(" getFeatureLink finds no TileMuFeature (EL invalid)"); - return HLT::NAV_ERROR; - } - - // ------------------------------------------------------------- - /* - std::vector<const TileMuFeature*> vectorMuon; - HLT::ErrorCode status = getFeatures(outputTE, vectorMuon); - - if (status == HLT::OK) { - ATH_MSG_DEBUG(" Okay to get vectorMuon with size=" << vectorMuon.size()); - } else { - ATH_MSG_WARNING(" Failed to get vectorMuon "); - return status; - } - - if (vectorMuon.size() == 0) { - ATH_MSG_DEBUG(" N of TileMuFeature == 0"); - return HLT::NAV_ERROR; - } - - const TileMuFeature* muon = vectorMuon.front(); - if (muon == 0) { - ATH_MSG_DEBUG(" TileMuFeature pointer null"); - return HLT::NAV_ERROR; - } - */ - const TileMuFeature* muon = *TileMuFeatureEL; - - ATH_MSG_DEBUG("REGTEST Eta=" << muon->eta() << " Phi=" << muon->phi() - << " EnergyVec[0] = " << muon->enedep().at(0) - << " EnergyVec[1] = " << muon->enedep().at(1) - << " EnergyVec[2] = " << muon->enedep().at(2) - << " EnergyVec[3] = " << muon->enedep().at(3)); - - float eta_tile = muon->eta(); - float phi_tile = muon->phi(); - std::vector<float> E_tile(4); - E_tile = muon->enedep(); - //float qf_tile = muon->quality(); - - bool do_straight = false; - - if (m_useAthenaFieldService) { - - if (!m_MagFieldSvc) service("AtlasFieldSvc", m_MagFieldSvc, /*createIf=*/ false).ignore(); - - if (m_MagFieldSvc) { - - // Magnetic field status - bool solenoidOn = m_MagFieldSvc->solenoidOn(); - bool toroidOn = m_MagFieldSvc->toroidOn(); - - ATH_MSG_DEBUG("=========== Magnetic Field Status ========== "); - ATH_MSG_DEBUG(" ---> Solenoid : " << ((solenoidOn)? "ON" : "OFF")); - ATH_MSG_DEBUG(" ---> Toroid : " << ((toroidOn)? "ON" : "OFF")); - - if (!solenoidOn) do_straight = true; - } - } - - // --------------------------------------------------------------------- - - std::vector<float> TrueMu_Eta; TrueMu_Eta.clear(); - std::vector<float> TrueMu_Phi; TrueMu_Phi.clear(); - std::vector<float> TrueMu_Pt; TrueMu_Pt.clear(); - std::vector<float> TrueMu_PhiTR; TrueMu_PhiTR.clear(); - - if ( m_GetTruthMuon ) { - - // retrieving the Montecarlo thru from the Storegate - const McEventCollection* mcCollptr = nullptr; - //std::string key = "GEN_EVENT"; - std::string key = m_key_for_truth; - - bool cont = evtStore()->contains<McEventCollection>(key); - StatusCode retr = evtStore()->retrieve(mcCollptr,key); - if( cont && retr.isSuccess() ) { - McEventCollection::const_iterator itr; - for(itr = mcCollptr->begin(); itr!=mcCollptr->end(); ++itr) { - HepMC::GenEvent::particle_const_iterator Part; - - for(Part = (*itr)->particles_begin(); - Part!=(*itr)->particles_end(); ++Part ) { - - // store MCthru only for muon particles - if( ((*Part)->pdg_id() == -13 || (*Part)->pdg_id() == 13) - && (*Part)->barcode() < 200000 - && fabs((*Part)->momentum().perp()) > 500.) { - - int muCharge = (*Part)->pdg_id()/(-13); - float muEnergy = (*Part)->momentum().e(); - float muPhi = (*Part)->momentum().phi(); - float muPt = (*Part)->momentum().perp(); - float theta = atan(muPt/fabs((*Part)->momentum().z())); - float eta = -log (tan(theta/2.) ); - float muEta = ((*Part)->momentum().z() >= 0.)? eta : -eta; - - float muPhiTR; - if (do_straight) { - muPhiTR = muPhi; - }else{ - muPhiTR = muPhi - (1.23053e-04*muCharge + 5.06985e-01/(muPt*muCharge/1000.)); - } - - ATH_MSG_DEBUG("REGTEST TruthMuon::" - << " pdg_id()=" << (*Part)->pdg_id() - << " E=" << muEnergy << " Phi=" << muPhi - << " Pt=" << muPt*muCharge << " Eta=" << muEta - << " Barcode=" << (*Part)->barcode() - << " Status=" << (*Part)->status()); - - TrueMu_Eta.push_back(muEta); - TrueMu_Phi.push_back(muPhi); TrueMu_PhiTR.push_back(muPhiTR); - TrueMu_Pt.push_back(muPt*muCharge); - - } - } - } - } else { - ATH_MSG_WARNING("Could not retrieve McEventCollection"); - } - } - - //========= OPEN InDetTrackCollection to get the matching tracks ========= - - //std::vector<TrigInDetTrackCollection::const_iterator> mySelectedTracks; - //mySelectedTracks.clear(); - - std::vector<const TrigInDetTrackCollection*> vectorOfTrackCollections; - HLT::ErrorCode status = getFeatures(outputTE,vectorOfTrackCollections, ""); - - TileTrackMuFeature* TileTrkMu = 0; - bool Get_MatchedTrack = false; - - if(status!=HLT::OK) { - ATH_MSG_DEBUG(" Failed to get InDetTrackCollections "); - } else { - ATH_MSG_DEBUG(" Got " << vectorOfTrackCollections.size() - << " InDetTrackCollections, now fill InDet Block "); - - if (vectorOfTrackCollections.size() > 0) { - - double DelRMin = UpperMax, DelRNow = UpperMax; - double Match_pt_idtr = LowerMax; - //double Match_phi_id = LowerMax; - double Match_phiTR_id = LowerMax; - //double Match_eta_id = LowerMax; - double Match_etaTR_id = LowerMax; - //double Match_zPos_id = LowerMax; - const TrigInDetTrack* selTrack=0; - const TrigInDetTrackCollection* SeltheTrackColl=0; - int SelTrackIndex = -1; - - int NTrack = 0, NTruth = 0; - - std::vector<const TrigInDetTrackCollection*>::iterator - theTrackColl = vectorOfTrackCollections.begin(), - endTrackColl = vectorOfTrackCollections.end(); - - for ( ; theTrackColl != endTrackColl; theTrackColl++) { - - TrigInDetTrackCollection::const_iterator - track = (*theTrackColl)->begin(), - lasttrack = (*theTrackColl)->end(); - - for (int trackIndex=0; track !=lasttrack; track++, trackIndex++ ) { - - // Check if event timeout was reached - if (Athena::Timeout::instance().reached()) { - ATH_MSG_DEBUG("Timeout reached. Trk loop, Aborting sequence."); - return HLT::ErrorCode(HLT::Action::ABORT_EVENT, HLT::Reason::TIMEOUT); - } - - if( (*track)->algorithmId() == m_algoId ) { - - if (!((*track)->param())) continue; - - NTrack++; - double pt_idtr = (*track)->param()->pT(); // with sign of charge - double phi_id = (*track)->param()->phi0(); - double eta_id = (*track)->param()->eta(); - double zPos_id = (*track)->param()->z0(); - double phiTR_id = (*track)->param()->phi0(); - double etaTR_id = (*track)->param()->eta(); - - m_PtTrackAll.push_back( pt_idtr/1000.); // MeV -> GeV - m_EtaTrackAll.push_back( eta_id ); - m_PhiTrackAll.push_back( phi_id ); - - if (m_Meth_ExtrapTileR == "DirectPars") { - if (do_straight) { - phiTR_id = phi_id; - }else{ - phiTR_id = phi_id - ( 1.23053e-04*(pt_idtr/fabs(pt_idtr)) + 5.06985e-01/(pt_idtr/1000.)); // Unit(pt_idtr) need to be changed into GeV - } - } else if (m_Meth_ExtrapTileR == "EMextraWay") { - StatusCode sc = m_trackExtrapolator->extrapolateToCalo((*track), m_RCAL, m_ZCAL, phiTR_id, etaTR_id); - } - - double DelPhi = phi_tile - phiTR_id; - if (DelPhi > User_Pi) DelPhi -= 2*User_Pi; - if (DelPhi < (-1)*User_Pi) DelPhi += 2*User_Pi; - - if ( fabs(pt_idtr) > m_Pt_Cut && - fabs(eta_tile - eta_id) < m_DelEta_Cut && - fabs(DelPhi) < m_DelPhi_Cut ) { - - DelRNow = sqrt( pow( (eta_tile - eta_id), 2) + pow( DelPhi, 2)); - - if (DelRNow < DelRMin ) { - DelRMin = DelRNow; - Match_pt_idtr = pt_idtr; - //Match_phi_id = phi_id; - Match_phiTR_id = phiTR_id; - //Match_eta_id = eta_id; - Match_etaTR_id = etaTR_id; - //Match_zPos_id = zPos_id; - - selTrack = *track; - - SeltheTrackColl = *theTrackColl; - SelTrackIndex = trackIndex; - - } - } - - ATH_MSG_DEBUG( - "REGTEST For all possible Tracks" << m_ID_algo_to_use - << " track with pt=" << pt_idtr - << ", eta=" << eta_id - << ", etaTR=" << etaTR_id - << ", etaTile=" << eta_tile - << ", phi=" << phi_id - << ", phiTR=" << phiTR_id - << ", phiTile=" << phi_tile - << ", DelphiTR=" << DelRNow - << " using " << m_Meth_ExtrapTileR - << ", Zid=" << zPos_id); - } - } - } - - ATH_MSG_DEBUG("REGTEST NTrack=" << NTrack); - - if ( DelRMin < UpperMax ) { - m_NTrack = NTrack; - Get_MatchedTrack = true; - if ( SeltheTrackColl ) { - ElementLink<TrigInDetTrackCollection> pTrack(*SeltheTrackColl,SelTrackIndex ); - TileTrkMu = new TileTrackMuFeature( - Match_pt_idtr, - Match_etaTR_id, Match_phiTR_id, m_Typ_IDTrk, - TileMuFeatureEL, pTrack); - } - - ATH_MSG_DEBUG( - "REGTEST for final matched Track:" << m_ID_algo_to_use - << " track with pT=" << selTrack->param()->pT() - << " eta=" << selTrack->param()->eta() - << " phi=" << selTrack->param()->phi0()); - - if ( m_GetTruthMuon ) { - float DelRMin_TT = UpperMax, DelRNow_TT = UpperMax; - int iMin = -1; - for(unsigned int i=0; i<TrueMu_Eta.size(); i++) { - - float SignChk = selTrack->param()->pT() * TrueMu_Pt.at(i); - float DelPhi = selTrack->param()->phi0() - TrueMu_Phi.at(i); - if (DelPhi > User_Pi) DelPhi -= 2*User_Pi; - if (DelPhi < (-1)*User_Pi) DelPhi += 2*User_Pi; - - float DelEta = selTrack->param()->eta() - TrueMu_Eta.at(i); - if ( SignChk > 0 && - (fabs(DelPhi) < m_DelPhi_Cut) && - (fabs(DelEta) < m_DelEta_Cut) ) { - NTruth++; - - DelRNow_TT = sqrt( pow(DelPhi,2) + pow(DelEta,2)); - if (DelRNow_TT < DelRMin_TT ) { - iMin = i; - DelRMin_TT = DelRNow_TT; - } - } - } - - if (iMin != -1) { - - m_PtTruth.push_back(TrueMu_Pt.at(iMin)/1000.); // MeV --> GeV - m_PtTrack.push_back(selTrack->param()->pT()/1000.); // MeV --> GeV - m_DelEtaTruth.push_back(selTrack->param()->eta() - TrueMu_Eta.at(iMin)); - - float DelPhi = selTrack->param()->phi0() - TrueMu_Phi.at(iMin); - if (DelPhi > User_Pi) DelPhi -= 2*User_Pi; - if (DelPhi < (-1)*User_Pi) DelPhi += 2*User_Pi; - m_DelPhiTruth.push_back(DelPhi); - - float DelPt = (selTrack->param()->pT()-TrueMu_Pt.at(iMin))/1000.; - m_DelPtTruth.push_back(DelPt); - - ATH_MSG_DEBUG( - "REGTEST Matching::" - << " [Truth] Pt=" << TrueMu_Pt.at(iMin) - << " Eta=" << TrueMu_Eta.at(iMin) - << " Phi=" << TrueMu_Phi.at(iMin) - << " [Track] Pt=" << selTrack->param()->pT() - << " Eta=" << selTrack->param()->eta() - << " Phi=" << selTrack->param()->phi0() - << " [Comparison] DelEta=" << selTrack->param()->eta() - TrueMu_Eta.at(iMin) - << " DelPhi=" << DelPhi - << " DelPt=" << DelPt); - } - } - } - - if ( m_GetTruthMuon ) { - m_NTruth = NTruth; - } - } - } - - if ( !Get_MatchedTrack ){ - TileTrkMu = new TileTrackMuFeature( -9999.9, -9999.9, -9999.9, -900, - TileMuFeatureEL, - ElementLink<TrigInDetTrackCollection>()); - ATH_MSG_DEBUG("REGTEST No matched track!"); - } - - /*HLT::ErrorCode HLTStatus =*/ attachFeature(outputTE, TileTrkMu); - outputTE->setActiveState(true); - - return HLT::OK; -} - - - -HLT::ErrorCode TrigTileMuFex::hltFinalize() -{ - return HLT::OK; -} diff --git a/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileMuFex.h b/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileMuFex.h deleted file mode 100644 index f8cffdda71364c6af56d425f68686e528c3dd079..0000000000000000000000000000000000000000 --- a/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileMuFex.h +++ /dev/null @@ -1,110 +0,0 @@ -/* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ - -// ***************************************************************************** -// Filename : TrigTileMuFex.h -// Author : Heuijin Lim -// Created : Sep. 2007 -// -// DESCRIPTION: -// Muon candidates from TileCal are stored in the Feature, "TileMuFeature" -// and produced 2nd-ROIs. From these 2nd-ROIs, the tracks from -// Inner-Detector are extracted and compared with the muons from TileCal. -// The combined muons with track are stored in the Feature, -// "TileTrkMuFeature". They will be used in TileMuHypo.cxx of -// Trigger/TrigHypothesis/TrigMuonHypo -// -// HISTORY: -// -// BUGS: -// -//***************************************************************************** - -#ifndef TRIGTILEMUID_TRIGTILEMUFEX_H -#define TRIGTILEMUID_TRIGTILEMUFEX_H - -#include "GaudiKernel/Algorithm.h" -#include "GaudiKernel/INTupleSvc.h" -#include "GaudiKernel/NTuple.h" -#include "GaudiKernel/IToolSvc.h" - -#include "TrigInterfaces/FexAlgo.h" -#include "TrigMuonEvent/TileTrackMuFeature.h" -#include "TrigInDetEvent/TrigInDetTrack.h" - -#include "MagFieldInterfaces/IMagFieldSvc.h" - - - -namespace HLT { - class TriggerElement; -} -class ITrigInDetTrackExtrapolator; -class TileMuFeature; - - - -class TrigTileMuFex : public HLT::FexAlgo -{ - public: - - /** Constructor */ - TrigTileMuFex(const std::string& name, ISvcLocator* pSvcLocator); - - /** Destructor */ - ~TrigTileMuFex(); - - /** hltInitialize */ - HLT::ErrorCode hltInitialize(); - - /** hltExecute */ - HLT::ErrorCode hltExecute(const HLT::TriggerElement*, HLT::TriggerElement*); - - /** hltFinalize */ - HLT::ErrorCode hltFinalize(); - - private: - - TrigInDetTrack::AlgoId m_algoId; - - std::string m_ID_algo_to_use; - float m_DelPhi_Cut; - float m_DelEta_Cut; - float m_Pt_Cut; - std::string m_Meth_ExtrapTileR; - int m_Typ_IDTrk; - - /** Radius of calorimeter face */ - float m_RCAL; - - /** Z of calorimeter face */ - float m_ZCAL; - - /** Pointer for extrapolating TrigInDetTracks to calorimeter surface */ - ITrigInDetTrackExtrapolator* m_trackExtrapolator; - std::string m_trackExtrapolatorName; - - bool m_GetTruthMuon; - std::string m_key_for_truth; - - /** Magnetic field service */ - MagField::IMagFieldSvc* m_MagFieldSvc; - - /** flag to switch on automatic configuration of algo. with magnetic field configuration */ - BooleanProperty m_useAthenaFieldService; - - /** Monitoring */ - int m_NTrack; - int m_NTruth; - std::vector<float> m_DelEtaTruth; - std::vector<float> m_DelPhiTruth; - std::vector<float> m_DelPtTruth; - std::vector<float> m_PtTruth; - std::vector<float> m_PtTrack; - std::vector<float> m_PtTrackAll; - std::vector<float> m_EtaTrackAll; - std::vector<float> m_PhiTrackAll; -}; - -#endif diff --git a/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileMuToNtuple.cxx b/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileMuToNtuple.cxx deleted file mode 100755 index 32ec7c648871f790f2a8f3f7364921d40ecbd3f4..0000000000000000000000000000000000000000 --- a/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileMuToNtuple.cxx +++ /dev/null @@ -1,133 +0,0 @@ -/* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration -*/ - -//***************************************************************************** -// Filename : TrigTileMuToNtuple.cxx -//***************************************************************************** - -//Gaudi Includes -#include "GaudiKernel/Bootstrap.h" -#include "GaudiKernel/ISvcLocator.h" -#include "GaudiKernel/INTupleSvc.h" -#include "GaudiKernel/NTuple.h" -#include "GaudiKernel/IDataProviderSvc.h" -#include "GaudiKernel/SmartDataPtr.h" - -//TileCalo include - -#include "TileEvent/TileMuContainer.h" -#include "TrigTileMuToNtuple.h" - -//const int max_ntag=50; - -// Constructor & deconstructor -TrigTileMuToNtuple::TrigTileMuToNtuple(std::string name, ISvcLocator* -pSvcLocator) - :AthAlgorithm(name, pSvcLocator), - m_ntuplePtr(NULL) -{ - m_TileMuContainer="TileMuObj"; - m_ntupleLoc="/FILE1/TileMuTag"; - m_ntupleID=100; - m_max_ntag=50; - m_close=1; - declareProperty("TileMuTagsOutputName", m_TileMuContainer); - declareProperty("NTupleLoc", m_ntupleLoc); - declareProperty("NTupleID", m_ntupleID); - declareProperty("MaxNtag", m_max_ntag); - declareProperty("CloseNtuple", m_close); -} - -TrigTileMuToNtuple::~TrigTileMuToNtuple() -{ -} - -// Alg standard interface function -StatusCode TrigTileMuToNtuple::initialize() -{ - StatusCode sc; - - m_ntupleLoc="/NTUPLES/FILE1/TileMuTag"; - // + m_ntupleLoc; - - SmartDataPtr<NTuple::Directory> DirPtr(ntupleSvc(), m_ntupleLoc); - if(!DirPtr) DirPtr=ntupleSvc()->createDirectory(m_ntupleLoc); - if(!DirPtr) { - ATH_MSG_ERROR("Invalid Ntuple Directory: "<< m_ntupleLoc); - return StatusCode::FAILURE; - } - - m_ntuplePtr=ntupleSvc()->book(DirPtr.ptr(), m_ntupleID, - CLID_ColumnWiseTuple, "TileMuTag-Ntuple"); - if(!m_ntuplePtr) { - ATH_MSG_ERROR("Failed to book ntuple: TileMuTagNtuple"); - return StatusCode::FAILURE; - } - - sc=m_ntuplePtr->addItem("TileMu/ntag",m_ntag,0,m_max_ntag); - sc=m_ntuplePtr->addItem("TileMu/etatag",m_ntag,m_eta,-1.5,1.5); - sc=m_ntuplePtr->addItem("TileMu/phitag",m_ntag,m_phi,0.,6.3); - sc=m_ntuplePtr->addItem("TileMu/energydepVec",m_ntag, m_energy,4); - sc=m_ntuplePtr->addItem("TileMu/quality",m_ntag,m_quality,0.,1.); - - if(sc == StatusCode::FAILURE) { - ATH_MSG_ERROR("cannot add item to column wise ntuple"); - return StatusCode::FAILURE; - } - - ATH_MSG_INFO("initialisation completed"); - return StatusCode::SUCCESS; -} - -StatusCode TrigTileMuToNtuple::execute() -{ - StatusCode sc; - - // step1: read from TDS - const TileMuContainer* mutags_cont = nullptr; - sc=evtStore()->retrieve(mutags_cont, m_TileMuContainer); - if(sc == StatusCode::FAILURE) { - ATH_MSG_ERROR("cannot retrieve TileMuContainer in TDS"); - return StatusCode::FAILURE; - } - - - TileMuContainer::const_iterator it= mutags_cont->begin(); - TileMuContainer::const_iterator end=mutags_cont->end(); - m_ntag=0; - for(; it != end; ++it) { - m_eta[m_ntag]=(*it)->eta(); - m_energy[m_ntag][0] = ((*it)->enedep()) [0]; - m_energy[m_ntag][1] = ((*it)->enedep()) [1]; - m_energy[m_ntag][2] = ((*it)->enedep()) [2]; - m_energy[m_ntag][3] = ((*it)->enedep()) [3]; - - m_phi[m_ntag]=(*it)->phi(); - m_quality[m_ntag]=(*it)->quality(); - m_ntag++; - - if (m_ntag >= m_max_ntag) break; - } - - // write ntuple (is useful to keep it open to write also MC truth) - if (m_close == 1) - { - sc=ntupleSvc()->writeRecord(m_ntuplePtr); - if(sc.isFailure()) { - ATH_MSG_ERROR("failed to write Ntuple"); - return( StatusCode::FAILURE); - } - } - - // Execution completed. - ATH_MSG_DEBUG("execute() completed successfully"); - return StatusCode::SUCCESS; -} - -StatusCode TrigTileMuToNtuple::finalize() -{ - ATH_MSG_INFO("finalize() successfully"); - return StatusCode::SUCCESS; -} - diff --git a/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileMuToNtuple.h b/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileMuToNtuple.h deleted file mode 100755 index b6a8b4effe98f9fc4a1d13ade9f44b46310a5eb4..0000000000000000000000000000000000000000 --- a/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileMuToNtuple.h +++ /dev/null @@ -1,54 +0,0 @@ -/* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration -*/ - -//**************************************************************************** -// Filename : TrigTileMuToNtuple.h -// -// create ntuple with tile mu tag information -// -// JobOption Parameters -// -// TileMuTagContainer string key value of the TileMuContainer in TDS -// NtupleLoc string pathname of ntuple file -// NtupleID int ID of ntuple -// -//**************************************************************************** -#ifndef TRIGTILEMUID_TRIGTILEMUTONTUPLE_H -#define TRIGTILEMUID_TRIGTILEMUTONTUPLE_H - -#include "AthenaBaseComps/AthAlgorithm.h" -#include "GaudiKernel/NTuple.h" -#include <string> - -class TrigTileMuToNtuple : public AthAlgorithm { -public: - //Constructor - TrigTileMuToNtuple(std::string name, ISvcLocator* pSvcLocator); - - //Destructor - virtual ~TrigTileMuToNtuple(); - - //Gaudi Hooks - StatusCode initialize(); - StatusCode execute(); - StatusCode finalize(); - -private: - NTuple::Tuple* m_ntuplePtr; - int m_ntupleID; - int m_max_ntag; - int m_close; - std::string m_ntupleLoc; - - NTuple::Item<long> m_ntag; - NTuple::Array<float> m_eta; - NTuple::Array<float> m_phi; - NTuple::Matrix<float> m_energy; - NTuple::Array<float> m_quality; - - std::string m_TileMuContainer; - - }; - -#endif diff --git a/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileRODMuAlg.cxx b/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileRODMuAlg.cxx deleted file mode 100755 index e2b23bb48b2f9619a58049ec16f543e71725e04d..0000000000000000000000000000000000000000 --- a/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileRODMuAlg.cxx +++ /dev/null @@ -1,530 +0,0 @@ -/* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ - -//***************************************************************************** -// Filename : TrigTileRODMuAlg.cxx -// Author : Aranzazu Ruiz Martinez -// Created : December 2006 -// -// DESCRIPTION: -// LVL2 trigger algorithm to extract the low pT muons tagged at the TileCal ROD DSP level. -// The algorithm is processed taking as input the energy previously reconstructed at the -// DSP with Optimal Filtering. Only possible to use with events which contain the frag -// types 0x10, 0x11, 0x12 or 0x13 (inside TileCal ROD fragments). -// -// HISTORY: -// -// BUGS: -// -// -//***************************************************************************** - -#include <vector> -#include <math.h> - -#include "GaudiKernel/IToolSvc.h" -#include "GaudiKernel/ITHistSvc.h" -#include "GaudiKernel/StatusCode.h" -#include "TrigT1Interfaces/TrigT1Interfaces_ClassDEF.h" -#include "TrigSteeringEvent/TrigRoiDescriptor.h" - -#include "RegionSelector/IRegSelSvc.h" -#include "ByteStreamCnvSvcBase/IROBDataProviderSvc.h" -#include "CaloIdentifier/TileID.h" -#include "CxxUtils/phihelper.h" -#include "ByteStreamCnvSvcBase/ByteStreamCnvSvcBase.h" -#include "TrigMuonEvent/TileMuFeature.h" -#include "TrigTileRODMuAlg.h" -//#include "TH1.h" - -class ISvcLocator; - - - -TrigTileRODMuAlg::TrigTileRODMuAlg(const std::string& name,ISvcLocator* pSvcLocator) - :HLT::AllTEAlgo(name, pSvcLocator) -{ - declareProperty("TileMuTagsOutputName", m_tileTagContainer); - declareProperty("UseRS", m_commissioning=false); - declareProperty("ROBIDLIST", m_ROBList); - declareProperty("EtaMin", m_etaMin = -1.609430); - declareProperty("EtaMax", m_etaMax = 1.609430); - declareProperty("PhiMin", m_phiMin = 0.0); - declareProperty("PhiMax", m_phiMax = 6.283185); - declareProperty("LooseSelection",m_LooseSelection=true); - - declareProperty("ReadRoIsFromL1", m_ReadRoIsFromL1=false); - - // declare monitoring histograms - declareMonitoredVariable("NTileRODMu", m_allNMuon); - declareMonitoredStdContainer("EtaTileRODMu", m_allEta); - declareMonitoredStdContainer("PhiTileRODMu", m_allPhi); - declareMonitoredStdContainer("ETileRODMu", m_allEne); - declareMonitoredStdContainer("EtaTileRODMuLoose", m_allEta_LS); - declareMonitoredStdContainer("PhiTileRODMuLoose", m_allPhi_LS); - declareMonitoredStdContainer("ETileRODMuLoose", m_allEne_LS); - - // --> For matching study with RoIs and TileMu - declareMonitoredVariable("NROBFrags", m_NROBFrags); - declareMonitoredVariable("EffEvtswRoI", m_EffEvtswRoI); - //declareMonitoredVariable("EffEvtswRoI_LimitedEta",m_EffEvtswRoI_LimitedEta); - declareMonitoredStdContainer("EffEvtswRoI_LimitedEta",m_EffEvtswRoI_LimitedEta); - declareMonitoredStdContainer("EtaTileMu_wRoI", m_EtaTileMu_wRoI); - declareMonitoredStdContainer("EtaRoI_wTileMu", m_EtaRoI_wTileMu); - declareMonitoredStdContainer("PhiTileMu_wRoI", m_PhiTileMu_wRoI); - declareMonitoredStdContainer("PhiRoI_wTileMu", m_PhiRoI_wTileMu); - declareMonitoredStdContainer("EtaRoI_NoTileMu", m_EtaRoI_NoTileMu); - declareMonitoredStdContainer("PhiRoI_NoTileMu", m_PhiRoI_NoTileMu); - -} - - - -TrigTileRODMuAlg::~TrigTileRODMuAlg() -{ -} - - - -HLT::ErrorCode TrigTileRODMuAlg::hltInitialize() -{ - m_timerTotal = addTimer("Total"); - m_timerAccess = addTimer("Access"); - m_timerAddRoi = addTimer("AddRoi"); - - // retrieve TileID helper and TileInfo from det store - StatusCode sc = detStore()->retrieve(m_tileID); - if (sc.isFailure()) { - ATH_MSG_ERROR("Unable to retrieve TileID helper from DetectorStore"); - return HLT::BAD_JOB_SETUP; - } - - // get RegionSelector - if (service("RegSelSvc", m_pRegionSelector).isFailure()) { - ATH_MSG_FATAL("Could not find RegionSelector service"); - return HLT::BAD_JOB_SETUP; - } - - // get ROBDataProvider - if(service("ROBDataProviderSvc",m_robDataProvider).isFailure()){ - ATH_MSG_ERROR("Can't get ROBDataProviderSvc"); - return HLT::BAD_JOB_SETUP; - } - - if(toolSvc()->retrieveTool("TileROD_Decoder",m_tiledecoder).isFailure()){ - ATH_MSG_FATAL("Could not find TileRodDecoder"); - return HLT::BAD_JOB_SETUP; - } - - ATH_MSG_DEBUG("TrigTileRODMuAlg initialization completed"); - - // TileL2Container - m_container = new TileL2Container(); - m_container->reserve(256); - for(int ros=1;ros<5;++ros) { - for(int drawer=0;drawer<64;++drawer) { - int collId = ros<<8 | drawer; - TileL2 *l2 = new TileL2(collId); - m_container->push_back(l2); - } - } - - m_vrobid.reserve(64); - m_vid.reserve(64); - m_vrob.reserve(64); - - return HLT::OK; -} - - - -HLT::ErrorCode TrigTileRODMuAlg::hltExecute(std::vector<std::vector<HLT::TriggerElement*> >& inputVector, unsigned int type_out) -{ - // total execution time - if ( timerSvc() ) m_timerTotal->start(); - - // time of data access - if ( timerSvc() ) m_timerAccess->start(); - - ATH_MSG_DEBUG("exec HLTAlgorithm started"); - - if (!m_robDataProvider) { - ATH_MSG_ERROR(" ROBDataProviderSvc not loaded. Can't read ByteStream."); - return HLT::BAD_JOB_SETUP; - } - - const double User_Pi = 3.141592654; - const double DelEta_RS = 0.1; - const double DelPhi_RS = 0.1; - - const int NMax_Muons = 30; - int NRoIs = 0; // RoIs from |eta| < 1.7 - int NRoIs_LimitedEta = 0; // RoIs from |eta| < 1.4 - float Eta_RoIs[NMax_Muons], Phi_RoIs[NMax_Muons]; - float Eta_Mus[NMax_Muons], Phi_Mus[NMax_Muons]; - - // monitored variables - beforeExecMonitors().ignore(); - - m_allNMuon = 0; - m_allPhi.clear(); - m_allEta.clear(); - m_allEne.clear(); - m_allEta_LS.clear(); - m_allPhi_LS.clear(); - m_allEne_LS.clear(); - - m_NROBFrags = 0; - m_EffEvtswRoI = 0.0; - //m_EffEvtswRoI_LimitedEta = 0.0; - m_EffEvtswRoI_LimitedEta.clear(); - m_EtaTileMu_wRoI.clear(); - m_EtaRoI_wTileMu.clear(); - m_PhiTileMu_wRoI.clear(); - m_PhiRoI_wTileMu.clear(); - m_EtaRoI_NoTileMu.clear(); - m_PhiRoI_NoTileMu.clear(); - - m_vrobid.clear(); - m_vid.clear(); - m_vrob.clear(); - - TileL2Container::iterator collItr=m_container->begin(); - TileL2Container::iterator lastColl=m_container->end(); - for(; collItr!=lastColl; ++collItr) (*collItr)->clear(); - // ----------- Try to read RoIs from L1_RPC (by HL, 2008-12-12) -----------// - if (m_ReadRoIsFromL1) { - - ATH_MSG_DEBUG("Found " << inputVector.size() - << " TE vectors"); - if ( inputVector.size() != 1 ) { - ATH_MSG_WARNING("inputVector.size()(=" << inputVector.size() - << ") != 1, Please check TE from LvL1!!"); - } - - int ii=0; - for (std::vector<HLT::TEVec>::const_iterator it = inputVector.begin();it != inputVector.end(); ++it) { - - ATH_MSG_DEBUG("TE vector " << ii++ << "contains " - << (*it).size() << " TEs"); - - for (HLT::TEVec::const_iterator inner_it = (*it).begin();inner_it != (*it).end(); ++inner_it) { - const TrigRoiDescriptor* roiDescriptor = 0; - HLT::ErrorCode sc = getFeature((*inner_it),roiDescriptor, ""); - - - if (sc != HLT::OK) { - ATH_MSG_ERROR(" Failed to find RoiDescriptor "); - - return HLT::BAD_JOB_SETUP; // - } - - ATH_MSG_DEBUG(" REGTEST: RoI id " - << roiDescriptor->roiId() - << " located at phi = " << roiDescriptor->phi() - << ", eta = " << roiDescriptor->eta()); - - //if ( fabs(roiDescriptor->eta()) < 1.7 ) { - Eta_RoIs[NRoIs] = roiDescriptor->eta(); - Phi_RoIs[NRoIs] = roiDescriptor->phi(); - NRoIs++; - - //if ( fabs(roiDescriptor->eta()) < 1.4 ) NRoIs_LimitedEta++; - if ( fabs(roiDescriptor->eta()) < 0.7 ) NRoIs_LimitedEta++; - - double now_eta = roiDescriptor->eta(); - double now_phi = roiDescriptor->phi(); - if (now_phi < 0) now_phi = now_phi + 2*User_Pi; // phi --> 0 ~ 2pi - - double now_etamin = now_eta - DelEta_RS; - double now_etamax = now_eta + DelEta_RS; - double now_phimin = now_phi - DelPhi_RS; - double now_phimax = now_phi + DelPhi_RS; - if (now_phimin < 0.) { now_phimin = now_phimin + 2*User_Pi; } - if (now_phimax > 2*User_Pi) { now_phimax = now_phimax - 2*User_Pi; } - - //if (now_phimin > now_phimax) { - // double temp = now_phimin; - // now_phimin = now_phimax; - // now_phimax = temp; - //} - - if ( fabs(now_eta) > 0.6 && fabs(now_eta) < 1.2 ) { - if (now_eta<0) { now_etamin = m_etaMin; now_etamax = -0.2; } - if (now_eta>0) { now_etamin = 0.2; now_etamax = m_etaMax; } - } - - //m_pRegionSelector->DetHashIDList(TILE, - // now_etamin,now_etamax,now_phimin,now_phimax,&m_listID); - - ATH_MSG_DEBUG("For DetROBIDListUint, EtaMin=" - << now_etamin << " EtaMax=" << now_etamax - << " PhiMin=" << now_phimin - << " PhiMax=" << now_phimax); - - TrigRoiDescriptor roi( 0.5*(now_etamin+now_etamax), now_etamin, now_etamax, - CxxUtils::phiBisect(now_phimin, now_phimax), now_phimin, now_phimax ); - - m_pRegionSelector->DetROBIDListUint(TILE, roi, m_vrobid); - //} - } - } - - } else { - if(m_commissioning) { - for (std::vector<int>::const_iterator iter=m_ROBList.begin(); iter!=m_ROBList.end(); ++iter){ - m_vrobid.push_back(*iter); - } - }else{ - TrigRoiDescriptor roi( 0.5*(m_etaMin+m_etaMax), m_etaMin, m_etaMax, - CxxUtils::phiBisect(m_phiMin, m_phiMax), m_phiMin, m_phiMax ); - - m_pRegionSelector->DetROBIDListUint(TILE, roi, m_vrobid); - } - } - - ATH_MSG_VERBOSE("ROBIDLIST size= " << m_vrobid.size()); - - m_NROBFrags = m_vrobid.size(); - if ( m_vrobid.size() > 60 ) { - - ATH_MSG_DEBUG("Too many access for TileROBFragments!! ROBFrags=" - << m_vrobid.size() << " NRoIs=" << NRoIs); - - for (unsigned int it = 0; it < m_vrobid.size(); it++) { - - ATH_MSG_DEBUG("ROBID nr= " << it << " equal to 0x" << MSG::hex - << m_vrobid[it] << MSG::dec); - } - } - - - /*for (unsigned int it = 0; it < m_vrobid.size(); it++) { - ATH_MSG::VERBOSE("ROBID nr= " << it << " equal to 0x" << MSG::hex - << m_vrobid[it] << MSG::dec); - }*/ - - m_robDataProvider->addROBData(m_vrobid); - - for (unsigned int i = 0; i < m_vrobid.size(); ++i) { - - bool OK_Next = true; - if ( i > 0 ) { - for (unsigned int j=0; j<i; ++j) { - if (m_vrobid[i] == m_vrobid[j]) { - OK_Next = false; - break; - } - } - } - - if (OK_Next) { - m_vid.push_back(m_vrobid[i]); - - // Retrieve the service - m_robDataProvider->getROBData(m_vid, m_vrob); - - if (m_vrob.size() == 0) { - - ATH_MSG_DEBUG("For ROBID 0x" << MSG::hex << m_vrobid[i] << MSG::dec << " size = 0"); - - }else{ - - ATH_MSG_VERBOSE(" m_vrob.size()=" << m_vrob.size() - << ", So go to fillCollectionL2"); - m_tiledecoder->fillCollectionL2(m_vrob[0],*m_container); - } - } - - m_vrob.clear(); - m_vid.clear(); - - } - - ATH_MSG_DEBUG("m_container size= " << m_container->size()); - - - // stop of time for data access - if ( timerSvc() ) m_timerAccess->stop(); - - // start of iterator - if ( timerSvc() ) m_timerAddRoi->start(); - - int ntag=0; - - if ( m_vrobid.size() > 0 ) { - // create one output TE for each particle found during the scan: - TileL2Container::const_iterator it= m_container->begin(); - TileL2Container::const_iterator end=m_container->end(); - - // Apr. 22. 2008 HL (double -> float) - float eta, phi, qf; - std::vector<float> ene(4); - - for(; it != end; ++it) { - - for(unsigned int a=0; a<((*it)->NMuons()); ++a) { - - // roiDescriptor position - eta = ( (*it)->eta(a) ); - phi = ( (*it)->phi(a) ); - - // Energy deposited in TileCal by the muon (MeV) - ene.at(0) = ( (*it)->enemu0(a) ); - ene.at(1) = ( (*it)->enemu1(a) ); - ene.at(2) = ( (*it)->enemu2(a) ); - ene.at(3) = ( (*it)->enemu0(a)+(*it)->enemu1(a)+(*it)->enemu2(a) ); - - // Muon quality factor - qf = (*it)->qual(a); - - if (qf > 0.) { - m_allEta_LS.push_back(eta); - m_allPhi_LS.push_back(phi); - m_allEne_LS.push_back(ene.at(3)/1000.); - } - - bool OK_Take = true; - - if (!m_LooseSelection && qf != 0) OK_Take = false; - - if (OK_Take) { - - float roiwidth=0.1; - TrigRoiDescriptor *tmproi = new - TrigRoiDescriptor(eta, eta-roiwidth,eta+roiwidth, - phi, phi-roiwidth,phi+roiwidth); - - HLT::TriggerElement* te = addRoI(type_out, tmproi); // note: addRoI is defined in AllTEAlgo base class - - te->setActiveState(true); // set this trigger element to be active - - // Prepare Feature - TileMuFeature* muon = new TileMuFeature(eta, phi, ene, qf); - - //HLT::ErrorCode HLTStatus = attachFeature(te, muon, name()); - HLT::ErrorCode HLTStatus = attachFeature(te, muon); - - if ( HLTStatus != HLT::OK ) { - ATH_MSG_ERROR("Write of TrigTileRODMu feature into outputTE failed"); - return HLTStatus; - } else { - ATH_MSG_DEBUG("Write of TrigTileRODMu feature into outputTE OK!"); - } - - ATH_MSG_DEBUG("Muon tagged: Ntag = " << ntag - << " Eta = " << eta - << " Phi = " << phi - << " Energy = " << ene.at(3) << " MeV" - << " Quality factor = " << qf); - - // Fill histograms - m_allEta.push_back(eta); - m_allPhi.push_back(phi); - m_allEne.push_back(ene.at(3)/1000.); - - Eta_Mus[ntag] = eta; - Phi_Mus[ntag] = phi; - - ntag++; - - } - } - - if (ntag >= NMax_Muons) break; - } - } - - ATH_MSG_DEBUG("NMuons = " << ntag); - - // Fill histogram - m_allNMuon = ntag; - - //if ( m_ReadRoIsFromL1 && ntag > 0 ) { - if ( m_ReadRoIsFromL1 ) { - if ( NRoIs_LimitedEta > 0) { - if ( ntag > 0 ) { m_EffEvtswRoI_LimitedEta.push_back( 1.0 ); - } else { m_EffEvtswRoI_LimitedEta.push_back( 0.0 ); - } - } - - if ( ntag > 0 ) { - m_EffEvtswRoI = 1.0; - - //if ( NRoIs_LimitedEta > 0) m_EffEvtswRoI_LimitedEta = 1.0; - - float DelRMin = 9999.9; - int Id_RoI = -1, Id_Mu= -1; - for(int iMu=0; iMu<ntag; iMu++) { - for (int iRoI=0; iRoI<NRoIs; iRoI++) { - float DelPhi = Phi_Mus[iMu] - Phi_RoIs[iRoI]; - if (DelPhi > User_Pi) DelPhi -= 2*User_Pi; - if (DelPhi < (-1)*User_Pi) DelPhi += 2*User_Pi; - - float DelEta = Eta_Mus[iMu] - Eta_RoIs[iRoI]; - float DelR = sqrt( pow(DelEta,2) + pow(DelPhi,2) ); - if (DelR < DelRMin) { - Id_Mu = iMu; - Id_RoI = iRoI; - DelRMin = DelR; - } - } - } - - if ( Id_RoI > -1 && Id_Mu > -1 ) { - m_EtaTileMu_wRoI.push_back( Eta_Mus[Id_Mu] ); - m_EtaRoI_wTileMu.push_back( Eta_RoIs[Id_RoI] ); - m_PhiTileMu_wRoI.push_back( Phi_Mus[Id_Mu]); - m_PhiRoI_wTileMu.push_back( Phi_RoIs[Id_RoI] ); - - ATH_MSG_DEBUG("Matched Eta(TileMu)=" << Eta_Mus[Id_Mu] - << " Eta(RoI)=" << Eta_RoIs[Id_RoI] - << " Phi(TileMu)=" << Phi_Mus[Id_Mu] - << " Phi(RoI)=" << Phi_RoIs[Id_RoI] - << " DelR=" << DelRMin); - - } else { - ATH_MSG_DEBUG("No Matching between TileMus and RoIs!" - << " Something Wrong?"); - - } - } else { - for(int iRoI=0; iRoI<NRoIs; iRoI++) { - m_EtaRoI_NoTileMu.push_back( Eta_RoIs[iRoI] ); - m_PhiRoI_NoTileMu.push_back( Phi_RoIs[iRoI] ); - } - } - } - - // store the muon tags container on the TDS - /*if ( evtStore()->record(m_container, m_tileTagContainer, false).isFailure()) { - ATH_MSG_ERROR("Unable to record the muon tag Container on the TDS"); - return HLT::BAD_JOB_SETUP; - }*/ - - // stop of iterator - if ( timerSvc() ) m_timerAddRoi->stop(); - - // stop of total execution time - if ( timerSvc() ) m_timerTotal->stop(); - - // stop monitoring - afterExecMonitors().ignore(); - - return HLT::OK; -} - - - -HLT::ErrorCode TrigTileRODMuAlg::hltFinalize() -{ - ATH_MSG_DEBUG("TrigTileRODMuAlg finalization completed"); - - // clean up memory used - m_container->clear(); - - delete m_container; - - return HLT::OK; -} diff --git a/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileRODMuAlg.h b/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileRODMuAlg.h deleted file mode 100755 index 6de400c007fd02e8c333f0ecad62d7a3b9a7ce79..0000000000000000000000000000000000000000 --- a/Trigger/TrigAlgorithms/TrigTileMuId/src/TrigTileRODMuAlg.h +++ /dev/null @@ -1,110 +0,0 @@ -/* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration -*/ - -//***************************************************************************** -// Filename : TrigTileRODMuAlg.h -// Author : Aranzazu Ruiz Martinez -// Created : December 2006 -// -// DESCRIPTION: -// LVL2 trigger algorithm to extract the low pT muons tagged at the TileCal ROD DSP level. -// The algorithm is processed taking as input the energy previously reconstructed at the -// DSP with Optimal Filtering. Only possible to use with events which contain the frag -// types 0x10, 0x11, 0x12 or 0x13 (inside TileCal ROD fragments). -// -// HISTORY: -// -// BUGS: -// -// -//***************************************************************************** - -#ifndef TRIGTILEMUID_TRIGTILERODMUALG_H -#define TRIGTILEMUID_TRIGTILERODMUALG_H - -#include "TrigInterfaces/AllTEAlgo.h" -#include "TrigTimeAlgs/TrigTimerSvc.h" -#include "GaudiKernel/Algorithm.h" -#include "TileByteStream/TileROD_Decoder.h" -#include "TileEvent/TileContainer.h" - -#include <string> - -namespace HLT { - class TriggerElement; -} -class IRegSelSvc; -class IROBDataProviderSvc; -class Identifier; -class TileID; - -class TrigTileRODMuAlg : public HLT::AllTEAlgo -{ - public: - - TrigTileRODMuAlg(const std::string& name, ISvcLocator* pSvcLocator); - - ~TrigTileRODMuAlg(); - - HLT::ErrorCode hltInitialize(); - HLT::ErrorCode hltFinalize(); - HLT::ErrorCode hltExecute(std::vector<std::vector<HLT::TriggerElement*> >& /*input*/, unsigned int output); - - private: - - IRegSelSvc* m_pRegionSelector; - - // Timing measurements - TrigTimer *m_timerTotal, *m_timerAccess, *m_timerAddRoi; - - IROBDataProviderSvc * m_robDataProvider; - - const TileID * m_tileID; - - TileROD_Decoder * m_tiledecoder; - TileL2Container * m_container; - - // Properties - - std::string m_tileTagContainer; - - bool m_commissioning; - - std::vector<int> m_ROBList; - - double m_etaMin; - double m_etaMax; - double m_phiMin; - double m_phiMax; - - bool m_LooseSelection; - bool m_ReadRoIsFromL1; - - // Histograms - - int m_allNMuon; - std::vector<float> m_allEta; - std::vector<float> m_allPhi; - std::vector<float> m_allEne; - std::vector<float> m_allEta_LS; - std::vector<float> m_allPhi_LS; - std::vector<float> m_allEne_LS; - - int m_NROBFrags; - float m_EffEvtswRoI; - //float m_EffEvtswRoI_LimitedEta; - std::vector<float> m_EffEvtswRoI_LimitedEta; - std::vector<float> m_EtaTileMu_wRoI; - std::vector<float> m_EtaRoI_wTileMu; - std::vector<float> m_PhiTileMu_wRoI; - std::vector<float> m_PhiRoI_wTileMu; - std::vector<float> m_EtaRoI_NoTileMu; - std::vector<float> m_PhiRoI_NoTileMu; - - std::vector<uint32_t> m_vrobid; - std::vector<unsigned int> m_vid; - std::vector<const OFFLINE_FRAGMENTS_NAMESPACE::ROBFragment *> m_vrob; -}; - -#endif // TRIGTILEMUID_TRIGTILERODMUALG_H diff --git a/Trigger/TrigAlgorithms/TrigTileMuId/src/components/TrigTileMuId_entries.cxx b/Trigger/TrigAlgorithms/TrigTileMuId/src/components/TrigTileMuId_entries.cxx deleted file mode 100644 index f372c9a83fdd3e9ac9fdf665d9d95f8876141520..0000000000000000000000000000000000000000 --- a/Trigger/TrigAlgorithms/TrigTileMuId/src/components/TrigTileMuId_entries.cxx +++ /dev/null @@ -1,9 +0,0 @@ -#include "../TrigTileRODMuAlg.h" -#include "../TrigTileLookForMuAlg.h" -#include "../TrigTileMuToNtuple.h" -#include "../TrigTileMuFex.h" - -DECLARE_COMPONENT( TrigTileRODMuAlg ) -DECLARE_COMPONENT( TrigTileLookForMuAlg ) -DECLARE_COMPONENT( TrigTileMuToNtuple ) -DECLARE_COMPONENT( TrigTileMuFex ) diff --git a/Trigger/TrigHypothesis/TrigMuonHypo/CMakeLists.txt b/Trigger/TrigHypothesis/TrigMuonHypo/CMakeLists.txt index 6fa29bc86464dadb8d2aa7f4c2b056e4694d2360..3fd80b35130d2b2cd1408c1d36734e00cb72d0de 100644 --- a/Trigger/TrigHypothesis/TrigMuonHypo/CMakeLists.txt +++ b/Trigger/TrigHypothesis/TrigMuonHypo/CMakeLists.txt @@ -45,5 +45,4 @@ atlas_add_test( TrigMuonHypoConfig SCRIPT python -m TrigMuonHypo.TrigMuonHypoC # Install files from the package: atlas_install_headers( TrigMuonHypo ) atlas_install_python_modules( python/*.py ) -atlas_install_joboptions( share/*.py ) diff --git a/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_MuisoHypo.py b/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_MuisoHypo.py deleted file mode 100755 index 20f09ab4d1a96d4348b39bc43fa6a7f02593aef0..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_MuisoHypo.py +++ /dev/null @@ -1,35 +0,0 @@ -include.block("TrigMuonHypo/TriggerConfig_MuisoHypo.py") -# -# Configure a suitable TrigmuisoHypo instance -# -# Constructor arguments: -# level, type, threshold, isIsolated -# -# e.g. level=L2, type=muon, threshold=30, isIsolated=None -# level=EF, type=egamma, threshold=20, isIsolated=isolated -# -# Methods: -# instanceName() : returns name of algorithm instance -# classAndInstanceName() : returns a list of strings to be entered in the sequence file. This string -# defines the class and instance name - -class TriggerConfig_MuisoHypo: - - def __init__(self, level, type = None, threshold = None, isIsolated = None): - - if type == "muon": - self.__instname__ = "muiso_Muon_" + level - self.__sequence__ = "MuisoHypo/MuisoHypo/Muon_" - if type == "900GeV": - self.__instname__ = "muiso_900GeV_" + level - self.__sequence__ = "MuisoHypo/MuisoHypo/900GeV_" - - #self.__sequence__ += threshold - - def instanceName(self): - return self.__instname__ - - def classAndInstanceName(self): - return [ self.__sequence__ ] - -include ("TrigMuonHypo/jobOfragment_MuisoHypo.py") diff --git a/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_Muon.py b/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_Muon.py deleted file mode 100755 index 76f3644ed0f56c90bce4198f402dd97859fc1b6c..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_Muon.py +++ /dev/null @@ -1,43 +0,0 @@ -include.block("TrigMuonHypo/TriggerConfig_Muon.py") -include("TrigMuonHypo/TriggerConfig_singleMuon.py") - -TriggerFlags.MuonSlice.printFlags("Muon Slice Flags") - -if TriggerFlags.doLVL1: - include ("TrigMuonHypo/TriggerConfig_Muon_LVL1.py") - -if triggerMenu.signatureIsEnabled("mu6l"): - TriggerConfig_singleMuon("MU06" , "mu6l", "L1_MU06", "Muon" ) - -if triggerMenu.signatureIsEnabled("mu6"): - TriggerConfig_singleMuon("MU06" , "mu6" , "L1_MU06", "Muon" ) - - -if triggerMenu.signatureIsEnabled("mu20i"): - TriggerConfig_singleMuon("MU20" , "mu20i" , "L1_MU20", "Muon" ) - -if triggerMenu.signatureIsEnabled("mu5"): - TriggerConfig_singleMuon("MU05" , "mu5" , "L1_MU05", "900GeV" ) - -if triggerMenu.signatureIsEnabled("mu0"): - TriggerConfig_singleMuon("MU00" , "mu0" , "L1_MU00", "900GeV" ) - - -if triggerMenu.signatureIsEnabled("stau"): - TriggerConfig_stauMuon("MU20" , "L1_MU20", "Muon" ) - - -if triggerMenu.signatureIsEnabled("tileROD"): -# TriggerConfig_tileROD("MU6" , "L1_MU6", "Muon" ) - TriggerConfig_tileROD("EM03" , "L1_EM5", "Muon" ) - - -if triggerMenu.signatureIsEnabled("tileMU"): -# TriggerConfig_tileMU("MU6" , "L1_MU6", "Muon" ) - TriggerConfig_tileMU("EM03" , "L1_EM5", "Muon" ) - - -if triggerMenu.signatureIsEnabled("Zmumu"): - include("TrigMuonHypo/TriggerConfig_Zmumu.py") - - diff --git a/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_Muon_LVL1.py b/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_Muon_LVL1.py deleted file mode 100755 index 3a256dcb87ea4c5203945248b09e3eda9478a760..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_Muon_LVL1.py +++ /dev/null @@ -1,474 +0,0 @@ -include.block("TrigMuonHypo/TriggerConfig_Muon_LVL1.py") - -if TriggerFlags.doLVL1: - - #addMuonThreshold: name, value, OPL, confirm - if TrigT1ConfigVersion.find("900GeV")!=-1: - thresholdFile.addMuonThreshold(name="MU00",value="4.*GeV",opl="NO",confirm="1") - thresholdFile.addMuonThreshold(name="MU05",value="5*GeV",opl="NO",confirm="1") - thresholdFile.addMuonThreshold(name="MU06",value="6*GeV",opl="NO",confirm="1") - - #new python configuration - triggerPythonConfig.addMuonThreshold(name="MU00",value="4*GeV",range_begin='0', range_end='2') - triggerPythonConfig.addMuonThreshold(name="MU05",value="5*GeV",range_begin='3', range_end='5') - triggerPythonConfig.addMuonThreshold(name="MU06",value="6*GeV",range_begin='6', range_end='8') - - else: - thresholdFile.addMuonThreshold(name="MU06",value="6*GeV",opl="NO",confirm="1") - thresholdFile.addMuonThreshold(name="MU08",value="8*GeV",opl="NO",confirm="1") - thresholdFile.addMuonThreshold(name="MU10",value="10*GeV",opl="NO",confirm="1") - - # new python configuration - triggerPythonConfig.addMuonThreshold(name="MU06",value="6*GeV",range_begin='0', range_end='2') - triggerPythonConfig.addMuonThreshold(name="MU08",value="8*GeV",range_begin='3', range_end='5') - triggerPythonConfig.addMuonThreshold(name="MU10",value="10*GeV",range_begin='6', range_end='8') - - - thresholdFile.addMuonThreshold(name="MU11",value="11*GeV",opl="NO",confirm="1") - thresholdFile.addMuonThreshold(name="MU20",value="20*GeV",opl="NO",confirm="1") - thresholdFile.addMuonThreshold(name="MU40",value="40*GeV",opl="NO",confirm="1") - - #new python configuration - triggerPythonConfig.addMuonThreshold(name="MU11",value="11*GeV",range_begin='9', range_end='11') - triggerPythonConfig.addMuonThreshold(name="MU20",value="20*GeV",range_begin='12', range_end='14') - triggerPythonConfig.addMuonThreshold(name="MU40",value="40*GeV",range_begin='15', range_end='17') - - - ########################################## - # addItem: name,multiplicity,pre-scale - - menuFile.addItem(itemname="L1_MU40",mult="1",prescale="1", thresholdname="MU40") - menuFile.addOredConditionItems(itemname="L1_MU20",thresholdList=["MU40","MU20"]) - menuFile.addOredConditionItems(itemname="L1_MU11",thresholdList=["MU40","MU20","MU11"]) - - #item = LVL1MenuItem('L1_MU06', prescale='1', ctpid='32') - #item.addCondition(name='MU06', multi='1') - #item.addOredCondition(name='MU06', multi='1') - #item.addOredCondition(name='MU08', multi='1') - #item.addOredCondition(name='MU10', multi='1') - #item.addOredCondition(name='MU11', multi='1') - #item.addOredCondition(name='MU20', multi='1') - #item.addOredCondition(name='MU40', multi='1') - #triggerPythonConfig.addLVL1Item(item) - - - #new python configuration - item = LVL1MenuItem('L1_MU40', prescale='1', ctpid='39') - item.addCondition(name='MU40', multi='1') - triggerPythonConfig.addLVL1Item(item) - - item = LVL1MenuItem('L1_MU20', prescale='1', ctpid='38') - item.addCondition(name='MU20', multi='1') - #item.addOredCondition(name='MU40', multi='1') - #item.addOredCondition(name='MU20', multi='1') - triggerPythonConfig.addLVL1Item(item) - - item = LVL1MenuItem('L1_MU11', prescale='1', ctpid='37') - item.addCondition(name='MU11', multi='1') - #item.addOredCondition(name='MU40', multi='1') - #item.addOredCondition(name='MU20', multi='1') - #item.addOredCondition(name='MU11', multi='1') - triggerPythonConfig.addLVL1Item(item) - - - if TrigT1ConfigVersion.find("900GeV")!=-1: - menuFile.addOredConditionItems(itemname="L1_MU06",thresholdList=["MU40","MU20","MU11","MU06"]) - menuFile.addOredConditionItems(itemname="L1_MU05",thresholdList=["MU40","MU20","MU11","MU06","MU05"]) - menuFile.addOredConditionItems(itemname="L1_MU00",thresholdList=["MU40","MU20","MU11","MU06","MU05","MU00"]) - - #new python configuration - item = LVL1MenuItem('L1_MU06', prescale='1', ctpid='34') - item.addCondition(name='MU06', multi='1') - #item.addOredCondition(name='MU40', multi='1') - #item.addOredCondition(name='MU20', multi='1') - #item.addOredCondition(name='MU11', multi='1') - #item.addOredCondition(name='MU06', multi='1') - triggerPythonConfig.addLVL1Item(item) - - item = LVL1MenuItem('L1_MU05', prescale='1', ctpid='33') - item.addCondition(name='MU05', multi='1') - #item.addOredCondition(name='MU40', multi='1') - #item.addOredCondition(name='MU20', multi='1') - #item.addOredCondition(name='MU11', multi='1') - #item.addOredCondition(name='MU06', multi='1') - #item.addOredCondition(name='MU05', multi='1') - triggerPythonConfig.addLVL1Item(item) - - item = LVL1MenuItem('L1_MU00', prescale='1', ctpid='32') - item.addCondition(name='MU00', multi='1') - #item.addOredCondition(name='MU40', multi='1') - #item.addOredCondition(name='MU20', multi='1') - #item.addOredCondition(name='MU11', multi='1') - #item.addOredCondition(name='MU06', multi='1') - #item.addOredCondition(name='MU05', multi='1') - #item.addOredCondition(name='MU00', multi='1') - triggerPythonConfig.addLVL1Item(item) - - else: - menuFile.addOredConditionItems(itemname="L1_MU10",thresholdList=["MU40","MU20","MU11","MU10"]) - menuFile.addOredConditionItems(itemname="L1_MU08",thresholdList=["MU40","MU20","MU11","MU10","MU08"]) - menuFile.addOredConditionItems(itemname="L1_MU06",thresholdList=["MU40","MU20","MU11","MU10","MU08","MU06"]) - - #new python configuration - item = LVL1MenuItem('L1_MU10', prescale='1', ctpid='36') - item.addCondition(name='MU10', multi='1') - #item.addOredCondition(name='MU11', multi='1') - #item.addOredCondition(name='MU20', multi='1') - #item.addOredCondition(name='MU40', multi='1') - triggerPythonConfig.addLVL1Item(item) - - item = LVL1MenuItem('L1_MU08', prescale='1', ctpid='35') - item.addCondition(name='MU08', multi='1') -# item.addOredCondition(name='MU08', multi='1') -# item.addOredCondition(name='MU10', multi='1') -# item.addOredCondition(name='MU11', multi='1') -# item.addOredCondition(name='MU20', multi='1') -# item.addOredCondition(name='MU40', multi='1') - triggerPythonConfig.addLVL1Item(item) - - item = LVL1MenuItem('L1_MU06', prescale='1', ctpid='34') - item.addCondition(name='MU06', multi='1') -# item.addOredCondition(name='MU06', multi='1') -# item.addOredCondition(name='MU08', multi='1') -# item.addOredCondition(name='MU10', multi='1') -# item.addOredCondition(name='MU11', multi='1') -# item.addOredCondition(name='MU20', multi='1') -# item.addOredCondition(name='MU40', multi='1') - triggerPythonConfig.addLVL1Item(item) - - - if TrigT1ConfigVersion.find("900GeV")!=-1: - item = LVL1MenuItem('L1_2MU00', prescale='1', ctpid='40') - item.addCondition(name='MU00', multi='2') - triggerPythonConfig.addLVL1Item(item) - - item = LVL1MenuItem('L1_2MU05', prescale='1', ctpid='41') - item.addCondition(name='MU05', multi='2') - triggerPythonConfig.addLVL1Item(item) - - item = LVL1MenuItem('L1_2MU06', prescale='1', ctpid='42') - item.addCondition(name='MU06', multi='2') - triggerPythonConfig.addLVL1Item(item) - -# menuFile.startItem(itemname="L1_2MU00") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU00", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU05", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU06", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU11", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU20", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU40", mult="2") - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU00",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU05",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU06",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU05",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU06",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU06",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endAndedConditionsInItem() - -# menuFile.endOredConditionsInItem() -# menuFile.endItem() - -# menuFile.startItem(itemname="L1_2MU05") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU05", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU06", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU11", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU20", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU40", mult="2") - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU05",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU06",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU06",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endAndedConditionsInItem() - -# menuFile.endOredConditionsInItem() -# menuFile.endItem() - -# menuFile.startItem(itemname="L1_2MU06") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU06", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU11", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU20", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU40", mult="2") - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU06",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endAndedConditionsInItem() - -# menuFile.endOredConditionsInItem() -# menuFile.endItem() - else: - item = LVL1MenuItem('L1_2MU06', prescale='1', ctpid='42') - item.addCondition(name='MU06', multi='2') - triggerPythonConfig.addLVL1Item(item) - - item = LVL1MenuItem('L1_2MU08', prescale='1', ctpid='43') - item.addCondition(name='MU08', multi='2') - triggerPythonConfig.addLVL1Item(item) - - item = LVL1MenuItem('L1_2MU10', prescale='1', ctpid='44') - item.addCondition(name='MU10', multi='2') - triggerPythonConfig.addLVL1Item(item) - -# menuFile.startItem(itemname="L1_2MU06") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU06", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU08", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU10", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU11", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU20", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU40", mult="2") - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU06",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU08",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU10",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU08",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU10",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU10",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endAndedConditionsInItem() - -# menuFile.endOredConditionsInItem() -# menuFile.endItem() - -# menuFile.startItem(itemname="L1_2MU08") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU08", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU10", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU11", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU20", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU40", mult="2") - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU08",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU10",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU10",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endAndedConditionsInItem() - -# menuFile.endOredConditionsInItem() -# menuFile.endItem() - -# menuFile.startItem(itemname="L1_2MU10") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU10", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU11", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU20", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU40", mult="2") - - menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU10",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endAndedConditionsInItem() - -# menuFile.endOredConditionsInItem() -# menuFile.endItem() - item = LVL1MenuItem('L1_2MU11', prescale='1', ctpid='45') - item.addCondition(name='MU11', multi='2') - triggerPythonConfig.addLVL1Item(item) - - item = LVL1MenuItem('L1_2MU20', prescale='1', ctpid='46') - item.addCondition(name='MU20', multi='2') - triggerPythonConfig.addLVL1Item(item) - - item = LVL1MenuItem('L1_2MU40', prescale='1', ctpid='47') - item.addCondition(name='MU40', multi='2') - triggerPythonConfig.addLVL1Item(item) - - -# menuFile.startItem(itemname="L1_2MU11") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU11", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU20", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU40", mult="2") - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU11",mult="1") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endOredConditionsInItem() -# menuFile.endAndedConditionsInItem() - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endAndedConditionsInItem() - -# menuFile.endOredConditionsInItem() -# menuFile.endItem() - -# menuFile.startItem(itemname="L1_2MU20") -# menuFile.startOredConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU20", mult="2") -# menuFile.addTriggerConditionInItem(thresholdName="MU40", mult="2") - -# menuFile.startAndedConditionsInItem() -# menuFile.addTriggerConditionInItem(thresholdName="MU20",mult="1") -# menuFile.addTriggerConditionInItem(thresholdName="MU40",mult="1") -# menuFile.endAndedConditionsInItem() - -# menuFile.endOredConditionsInItem() -# menuFile.endItem() - -# menuFile.addItem(itemname="L1_2MU40",mult="2",prescale="1", thresholdname="MU40") - - -triggerPythonConfig.setMuctpiInfo(low_pt=1, high_pt=1, max_cand=13) diff --git a/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_Muon_flags.py b/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_Muon_flags.py deleted file mode 100755 index 7b5ef59f7291c817b6de4f77fad9544e4eb95745..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_Muon_flags.py +++ /dev/null @@ -1,18 +0,0 @@ -include.block("TrigEgammaHypo/TriggerConfig_Muon_flags.py") - - -triggerMenu.addSignatures(["mu6l", "mu6", "mu20i", "mu5", "mu0", "Zmumu", "stau","tileROD","tileMU"]) - -triggerMenu.disableSignature("Zmumu") -triggerMenu.disableSignature("stau") -triggerMenu.disableSignature("tileROD") -triggerMenu.disableSignature("tileMU") - -if HLTconfigVersion=="CSC-02-900GeV": - triggerMenu.disableSignature("mu6l") - -else: - triggerMenu.disableSignature("mu5") - triggerMenu.disableSignature("mu0") - -TriggerFlags.MuonSlice.addFlags(["doSITRACK"],True) diff --git a/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_TrigL2DimuonMassHypo.py b/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_TrigL2DimuonMassHypo.py deleted file mode 100755 index c89cb50ef717e13b225496c4d86de386bbb4e6d3..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_TrigL2DimuonMassHypo.py +++ /dev/null @@ -1,46 +0,0 @@ -include.block("TriggerJobOpts/TriggerConfig_TrigL2DimuonMassHypo.py") -# -# Configure a suitable _TrigL2DimuonMassHypo Algorithm instance -# -# Constructor arguments: -# level, type -# -# e.g. level=L2, type=Z -# -# Methods: -# instanceName() : returns name of algorithm instance -# classAndInstanceName() : returns a list of strings to be entered in -# the sequence file. This string defines the class and instance name - -class TriggerConfig_TrigL2DimuonMassHypo: - - def __init__(self, level, type = "Z"): - - # the only instance name possible at present is L2Photon_gamma_L2 - - if type == "Z": - self.__instname__ = "TrigL2DimuonMassHypo_Z_" - self.__sequence__ = "TrigL2DimuonMassHypo/L2dimuonHypo/Z" - self.__instname__ += level - Algorithm(self.__instname__).LowerMassCut=70000.0 - Algorithm(self.__instname__).UpperMassCut=120000.0 - - if type == "B0": - self.__instname__ = "TrigL2DimuonMassHypo_B0_" - self.__sequence__ = "TrigL2DimuonMassHypo/L2dimuonHypo/B0" - self.__instname__ += level - Algorithm(self.__instname__).LowerMassCut=4200.0 - Algorithm(self.__instname__).UpperMassCut=6200.0 - - if type == "Jpsi": - self.__instname__ = "TrigL2DimuonMassHypo_Jpsi_" - self.__sequence__ = "TrigL2DimuonMassHypo/L2dimuonHypo/Jpsi" - self.__instname__ += level - Algorithm(self.__instname__).LowerMassCut=2100.0 - Algorithm(self.__instname__).UpperMassCut=4100.0 - - def instanceName(self): - return self.__instname__ - - def classAndInstanceName(self): - return [ self.__sequence__ ] diff --git a/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_TrigMooreHypo.py b/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_TrigMooreHypo.py deleted file mode 100755 index a4597267e38626195ece11a2d2398b110cb9941e..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_TrigMooreHypo.py +++ /dev/null @@ -1,33 +0,0 @@ -include.block("TriggerJobOpts/TriggerConfig_TrigMooreHypo.py") -# -# Configure a suitable TrigMooreHypo instance -# -# Constructor arguments: -# level, type, threshold, isIsolated -# -# e.g. level=L2, type=muon, threshold=30, isIsolated=None -# level=EF, type=egamma, threshold=20, isIsolated=isolated -# -# Methods: -# instanceName() : returns name of algorithm instance -# classAndInstanceName() : returns a list of strings to be entered in the sequence file. This string -# defines the class and instance name - -class TriggerConfig_TrigMooreHypo: - - def __init__(self, level, type = None, threshold = None, isIsolated = None): - - # **temp the only instance name possible at present is muFast_1_L2 - - self.__instname__ = "mufast_" + threshold + "_" + level - - self.__sequence__ = "TrigMooreHypo/TrigMooreHypo/" - self.__sequence__ += threshold - - def instanceName(self): - return self.__instname__ - - def classAndInstanceName(self): - return [ self.__sequence__ ] - -include ("TrigMuonHypo/jobOfragment_MooreHypo.py") diff --git a/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_Zmumu.py b/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_Zmumu.py deleted file mode 100755 index bee576cc1d7707e15e62be6d0ce31d32047e3118..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_Zmumu.py +++ /dev/null @@ -1,44 +0,0 @@ -include.block("TrigMuonHypo/TriggerConfig_Zmumu.py") - -TE="MU06" - -if TriggerFlags.MuonSlice.doL2Muon(): - # add an include for the algorithms used - include ("TrigmuFast/TriggerConfig_TrigmuFast.py") - - # get an appropriate algorithm instance - t2mufast=TriggerConfig_TrigmuFast("L2","muon") - - # add algorithm instance to sequence starting from EMROI and producing TEout="T2CaloEgOut" - TE = sequenceFile.addSequence("L2", TE, t2mufast.classAndInstanceName(), "T2muFastOut_Zmumu") - - include ("TrigMuonHypo/TriggerConfig_MufastHypo.py") - t2mufastHypo20 = TriggerConfig_MufastHypo("L2", "muon", "20GeV") - - TE = sequenceFile.addSequence("L2", TE, t2mufastHypo6.classAndInstanceName(), "T2muFastMuon_Zmumu") - -if TriggerFlags.MuonSlice.doL2ID(): - include ("TrigIDSCAN/TriggerConfig_TrigIDSCAN.py") - - # get appropriate algorithm instances - idscanMuon=TriggerConfig_TrigIDSCAN("L2","muon") - - # add algorithm instance to sequence starting from TE and producing TE="L2electron" - TE = sequenceFile.addSequence ("L2", TE, idscanMuon.classAndInstanceName(), "L2IDmuon_Zmumu") - -if TriggerFlags.MuonSlice.doL2Muon() and TriggerFlags.MuonSlice.doL2ID(): - include ("TrigmuComb/TriggerConfig_TrigmuComb.py") - - # get appropriate algorithm instances - trigmuComb=TriggerConfig_TrigmuComb("L2","muon") - - # add algorithm instance to sequence starting from TE and producing TE="L2electron" - TE = sequenceFile.addSequence ("L2", TE, trigmuComb.classAndInstanceName(), "L2Combmuon_Zmumu") - - include ("TrigMuonHypo/TriggerConfig_TrigL2DimuonMassHypo.py") - trigL2zmumuhypo=TriggerConfig_TrigL2DimuonMassHypo("L2","Z") - TE = sequenceFile.addSequence ("L2", TE+" "+TE, trigL2zmumuhypo.classAndInstanceName(), "L2zmumu") - - -# Add signatures here -signatureFile.addSignature(signame="Zmumu", prescale="1", forcedAccept="0",TElist=[TE]) diff --git a/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_singleMuon.py b/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_singleMuon.py deleted file mode 100755 index 2227516bb75cc747da349e405e2b334f29f03ec6..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMuonHypo/share/TriggerConfig_singleMuon.py +++ /dev/null @@ -1,330 +0,0 @@ -include.block("TrigMuonHypo/TriggerConfig_singleMuon.py") - - -# muFast muComb TrigMoore -# Th cut Th cut Th cut -dirMuonThresholds = { 'mu0' : [ '2GeV' , '2GeV' , '2GeV' ] , - 'mu5' : [ '5GeV' , '5GeV' , '5GeV' ] , - 'mu6l' : [ '2GeV' , '2GeV' , '2GeV' ] , - 'mu6' : [ '6GeV' , '6GeV' , '6GeV' ] , - 'mu20i' : [ '20GeV', '20GeV', '20GeV'] } - - -dirMuonChainCounter = {'mu0' : '832', - 'mu5' : '833', - 'mu6l' : '834', - 'mu6' : '835', - 'mu20i' : '836', - 'stau' : '837', - 'tileROD': '838', - 'tileMU' : '839'} - - -# all import statament are moved at the module level - -from TrigMuonHypo.TrigMuonHypoConfig import * -from TrigmuFast.TrigmuFastConfig import * -from TrigIDSCAN.TrigIDSCAN_Config import TrigIDSCAN_Muon -from TrigSiTrack.TrigSiTrack_Config import TrigSiTrack_Muon -from TrigmuComb.TrigmuCombConfig import * -from TrigmuIso.TrigmuIsoConfig import * -from InDetTrigRecExample.EFInDetConfig import * -from TrigMoore.TrigMooreConfig import * -from TrigTileMuId.TrigTileRODMuAlgConfig import TrigTileRODMuAlg_L2 -from TrigTileMuId.TrigTileLookForMuAlgConfig import TrigTileLookForMuAlg_L2 - - -def TriggerConfig_singleMuon(TE , sliceId , trigId, lvl2Conf ): - - try: - counterId = dirMuonChainCounter[sliceId] - except LookupError: - print 'slice Id = ', sliceId - raise RuntimeError, 'ERROR : no chain number defined!' - - try: - thList = dirMuonThresholds[sliceId] - except LookupError: - print 'slice Id = ', sliceId - raise RuntimeError, 'ERROR : no threshold value defined!' - - - - # defining the L2 chain for signatures - l2chain = HLTChain( chain_name=sliceId+"_L2", - chain_counter=counterId, - lower_chain_name=trigId, - level="L2", - prescale='1', - pass_through='0') - l2chain.addTriggerTypeBit(4) - l2chain.addStreamTag('muons', prescale='1') - - - # defining the EF chain for signatures - efchain = HLTChain( chain_name=sliceId+"_EF", - chain_counter=counterId, - lower_chain_name=sliceId+"_L2", - level="EF", - prescale='1', - pass_through='0') - efchain.addTriggerTypeBit(4) - efchain.addStreamTag('muons', prescale='1') - - - - ########################################## - # Starting configuring the L2 signatures # - ########################################## - - # muFast - ########## - sequence = [] - if TriggerFlags.MuonSlice.doL2Muon(): - - sequence += [ TrigmuFastConfig(lvl2Conf) ] - sequence += [ MufastHypoConfig(lvl2Conf,thList[0]) ] - - if TriggerFlags.MuonSlice.doL2ID() or TriggerFlags.MuonSlice.doL2Calo(): - TE = triggerPythonConfig.addSequence(TE, sequence , 'T2muFastMuon_'+sliceId ) - else: - TE = triggerPythonConfig.addSequence(TE, sequence,"L2_"+sliceId) - - l2chain.addHLTSignature(TE) - - # muComb - ########## - sequence = [] - if TriggerFlags.MuonSlice.doL2ID(): - sequence += [ TrigIDSCAN_Muon() ] - - if TriggerFlags.MuonSlice.testFlag("doSITRACK"): - sequence += [ TrigSiTrack_Muon() ] - - - if TriggerFlags.MuonSlice.doL2Muon() and TriggerFlags.MuonSlice.doL2ID(): - sequence += [ TrigmuCombConfig(lvl2Conf) ] - sequence += [ MucombHypoConfig(lvl2Conf,thList[1]) ] - - if len(sequence) is not 0 and not ( TriggerFlags.MuonSlice.doL2Calo() and sliceId=='mu20i' ) : - TE = triggerPythonConfig.addSequence(TE,sequence,"L2_"+sliceId) - l2chain.addHLTSignature(TE) - elif len(sequence) is not 0: - TE = triggerPythonConfig.addSequence(TE,sequence,"T2muFastComb_"+sliceId) - l2chain.addHLTSignature(TE) - - # muIso - ########## - sequence = [] - if TriggerFlags.MuonSlice.doL2Calo() and sliceId == 'mu20i': - sequence += [ muIsoConfig() ] - sequence += [ MuisoHypoConfig() ] - - if len(sequence) is not 0: - TE = triggerPythonConfig.addSequence(TE,sequence,"L2_"+sliceId) - l2chain.addHLTSignature(TE) - - - - - ########################################## - # Starting configuring the EF signatures # - ########################################## - - - # ID reconstruction - ##################### - - sequence = [] - if TriggerFlags.MuonSlice.doEFID(): - - efInDetMuon = TrigEFIDInsideOut_Muon() - - TE = triggerPythonConfig.addSequence(TE, - efInDetMuon.getSequence(), - "EFID_"+sliceId) - efchain.addHLTSignature(TE) - - if TriggerFlags.MuonSlice.doEFMuon(): - - #include( "TrigMoore/jobOfragment_TrigMoore.py" ) - - sequence += [ TrigMooreConfig_MS(lvl2Conf) ] - if TriggerFlags.MuonSlice.doEFID(): - sequence += [ TrigMooreConfig_SA(lvl2Conf) ] - sequence += [ TrigMooreConfig_CB(lvl2Conf) ] - sequence += [ TrigMooreHypoConfig(lvl2Conf,thList[2]) ] - - - - if len(sequence) is not 0: - TE = triggerPythonConfig.addSequence(TE,sequence,"EF_"+sliceId) - efchain.addHLTSignature(TE) - - - triggerPythonConfig.addHLTChain(l2chain) - triggerPythonConfig.addHLTChain(efchain) - - - - - -def TriggerConfig_stauMuon(TE , trigId, lvl2Conf ): - - sliceId = 'stau' - - try: - counterId = dirMuonChainCounter[sliceId] - except LookupError: - print 'slice Id = ', sliceId - raise RuntimeError, 'ERROR : no chain number defined!' - - - # defining the L2 chain for signatures - l2chain = HLTChain( chain_name=sliceId+"_L2", - chain_counter=counterId, - lower_chain_name=trigId, - level="L2", - prescale='1', - pass_through='0') - l2chain.addTriggerTypeBit(4) - l2chain.addStreamTag('muons', prescale='1') - - - # defining the EF chain for signatures - efchain = HLTChain( chain_name=sliceId+"_EF", - chain_counter=counterId, - lower_chain_name=sliceId+"_L2", - level="EF", - prescale='1', - pass_through='0') - efchain.addTriggerTypeBit(4) - efchain.addStreamTag('muons', prescale='1') - - - - ########################################## - # Starting configuring the L2 signatures # - ########################################## - - # muFast - ########## - sequence = [] - if TriggerFlags.MuonSlice.doL2Muon(): - sequence += [ TrigmuFastConfig(lvl2Conf) ] - sequence += [ StauHypoConfig(lvl2Conf) ] - - TE = triggerPythonConfig.addSequence(TE, sequence , 'L2_'+sliceId ) - l2chain.addHLTSignature(TE) - - - triggerPythonConfig.addHLTChain(l2chain) - triggerPythonConfig.addHLTChain(efchain) - - - -def TriggerConfig_tileROD(TE , trigId, lvl2Conf ): - - sliceId = 'tileROD' - - try: - counterId = dirMuonChainCounter[sliceId] - except LookupError: - print 'slice Id = ', sliceId - raise RuntimeError, 'ERROR : no chain number defined!' - - - # defining the L2 chain for signatures - l2chain = HLTChain( chain_name=sliceId+"_L2", - chain_counter=counterId, - lower_chain_name=trigId, - level="L2", - prescale='1', - pass_through='0') - l2chain.addTriggerTypeBit(4) - l2chain.addStreamTag('muons', prescale='1') - - - # defining the EF chain for signatures - efchain = HLTChain( chain_name=sliceId+"_EF", - chain_counter=counterId, - lower_chain_name=sliceId+"_L2", - level="EF", - prescale='1', - pass_through='0') - efchain.addTriggerTypeBit(4) - efchain.addStreamTag('muons', prescale='1') - - - - ########################################## - # Starting configuring the L2 signatures # - ########################################## - - # tile - ########## - sequence = [] - if TriggerFlags.MuonSlice.doL2Muon(): - sequence += [ TrigTileRODMuAlg_L2() ] - sequence += [ TileMuHypoConfig(lvl2Conf) ] - - TE = triggerPythonConfig.addSequence(TE, sequence , 'L2_'+sliceId ) - l2chain.addHLTSignature(TE) - - - triggerPythonConfig.addHLTChain(l2chain) - triggerPythonConfig.addHLTChain(efchain) - - -def TriggerConfig_tileMU(TE , trigId, lvl2Conf ): - - sliceId = 'tileMU' - - try: - counterId = dirMuonChainCounter[sliceId] - except LookupError: - print 'slice Id = ', sliceId - raise RuntimeError, 'ERROR : no chain number defined!' - - - # defining the L2 chain for signatures - l2chain = HLTChain( chain_name=sliceId+"_L2", - chain_counter=counterId, - lower_chain_name=trigId, - level="L2", - prescale='1', - pass_through='0') - l2chain.addTriggerTypeBit(4) - l2chain.addStreamTag('muons', prescale='1') - - - # defining the EF chain for signatures - efchain = HLTChain( chain_name=sliceId+"_EF", - chain_counter=counterId, - lower_chain_name=sliceId+"_L2", - level="EF", - prescale='1', - pass_through='0') - efchain.addTriggerTypeBit(4) - efchain.addStreamTag('muons', prescale='1') - - - - ########################################## - # Starting configuring the L2 signatures # - ########################################## - - # tile - ########## - sequence = [] - if TriggerFlags.MuonSlice.doL2Muon(): - - sequence += [ TrigTileLookForMuAlg_L2() ] - sequence += [ TileMuHypoConfig(lvl2Conf) ] - - TE = triggerPythonConfig.addSequence(TE, sequence , 'L2_'+sliceId ) - l2chain.addHLTSignature(TE) - - - triggerPythonConfig.addHLTChain(l2chain) - triggerPythonConfig.addHLTChain(efchain) diff --git a/Trigger/TrigHypothesis/TrigMuonHypo/share/jobOfragment_MooreHypo.py b/Trigger/TrigHypothesis/TrigMuonHypo/share/jobOfragment_MooreHypo.py deleted file mode 100755 index 53e6fbd75ed5b00b05062b7333f7ba8c43598b78..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMuonHypo/share/jobOfragment_MooreHypo.py +++ /dev/null @@ -1,20 +0,0 @@ -# define effective thresholds as nominal thresholds - 2 sigma -include( "TrigMuonHypo/jobOfragment_TrigMooreHypo.py" ) -include.block( "TrigMuonHypo/jobOfragment_TrigMooreHypo.py" ) -TrigMooreHypo_6GeV_EF = Algorithm( "TrigMooreHypo_6GeV_EF" ) -TrigMooreHypo_6GeV_EF.ptThreshold = 5.76*GeV # 6 GeV - -TrigMooreHypo_20GeV_EF = Algorithm( "TrigMooreHypo_20GeV_EF" ) -TrigMooreHypo_20GeV_EF.ptThreshold = 19.08*GeV # 20 GeV - -TrigMooreHypo_4GeV_EF = Algorithm( "TrigMooreHypo_4GeV_EF" ) -TrigMooreHypo_4GeV_EF.ptThreshold = 3.84*GeV # 4 GeV - -TrigMooreHypo_5GeV_EF = Algorithm( "TrigMooreHypo_5GeV_EF" ) -TrigMooreHypo_5GeV_EF.ptThreshold = 4.8*GeV # 5 GeV - -TrigMooreHypo_2GeV_EF = Algorithm( "TrigMooreHypo_2GeV_EF" ) -TrigMooreHypo_2GeV_EF.ptThreshold = 2*GeV - -#print TrigMooreHypo_6GeV_EF.ptThreshold -#TrigMooreHypo_6GeV_EF.OutputLevel = DEBUG diff --git a/Trigger/TrigHypothesis/TrigMuonHypo/share/jobOfragment_MuisoHypo.py b/Trigger/TrigHypothesis/TrigMuonHypo/share/jobOfragment_MuisoHypo.py deleted file mode 100755 index cf43db6cffa031a9480957e053710871aa97233e..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMuonHypo/share/jobOfragment_MuisoHypo.py +++ /dev/null @@ -1,5 +0,0 @@ -theApp.Dlls += [ "TrigMuonHypo" ] -# -# so far only one instance of the muon iso hypothesis -# algo is needed -MuisoHypo = Algorithm( "MuisoHypo" ) diff --git a/Trigger/TrigHypothesis/TrigMuonHypo/share/jobOfragment_TrigMooreHypo.py b/Trigger/TrigHypothesis/TrigMuonHypo/share/jobOfragment_TrigMooreHypo.py deleted file mode 100755 index 310a067175ee7b44e11cd92995cb3e78bbfe67d9..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMuonHypo/share/jobOfragment_TrigMooreHypo.py +++ /dev/null @@ -1,3 +0,0 @@ -# joboptions for muon hypotheses -theApp.Dlls += [ "TrigMuonHypo" ] -