diff --git a/Event/xAOD/xAODTrigL1Calo/Root/JGTowerAuxContainer_v1.cxx b/Event/xAOD/xAODTrigL1Calo/Root/JGTowerAuxContainer_v1.cxx index a18099a7b097efde952ca8e8300b1d6ef981c839..035033d90d89b3b9cdb2d90e5a1d065d77f28797 100755 --- a/Event/xAOD/xAODTrigL1Calo/Root/JGTowerAuxContainer_v1.cxx +++ b/Event/xAOD/xAODTrigL1Calo/Root/JGTowerAuxContainer_v1.cxx @@ -20,11 +20,8 @@ namespace xAOD { AUX_VARIABLE( dphi ); AUX_VARIABLE( Id ); AUX_VARIABLE( et ); - AUX_VARIABLE( LAr_et ); - AUX_VARIABLE( Tile_et ); AUX_VARIABLE( SCIndex ); AUX_VARIABLE( TileIndex ); - AUX_VARIABLE( tileFrac ); AUX_VARIABLE( sampling); } diff --git a/Event/xAOD/xAODTrigL1Calo/Root/JGTower_v1.cxx b/Event/xAOD/xAODTrigL1Calo/Root/JGTower_v1.cxx index a506759d7b8bae69d94c49c4fd2dd8c5e5e8cf08..3f194d802e14a0146fd142806fe618faf6b5eb69 100755 --- a/Event/xAOD/xAODTrigL1Calo/Root/JGTower_v1.cxx +++ b/Event/xAOD/xAODTrigL1Calo/Root/JGTower_v1.cxx @@ -68,6 +68,13 @@ namespace xAOD{ static Accessor< float > acc( "eta" ); return acc( *this ); } + + void JGTower_v1::setEta(float eta) + { + static Accessor< float > acc( "eta" ); + acc( *this ) = eta; + } + double JGTower_v1::phi() const { @@ -81,17 +88,16 @@ namespace xAOD{ acc( *this ) = phi; } - - void JGTower_v1::setEta(float eta) + double JGTower_v1::deta() const { - static Accessor< float > acc( "eta" ); - acc( *this ) = eta; + static Accessor< float > acc( "deta" ); + return acc( *this ); } - double JGTower_v1::deta() const + void JGTower_v1::setdEta(float deta) { static Accessor< float > acc( "deta" ); - return acc( *this ); + acc( *this ) = deta; } double JGTower_v1::dphi() const @@ -106,14 +112,6 @@ namespace xAOD{ acc( *this ) = dphi; } - - void JGTower_v1::setdEta(float deta) - { - static Accessor< float > acc( "deta" ); - acc( *this ) = deta; - } - - int JGTower_v1::Id() const { static Accessor< int > acc( "Id" ); @@ -151,45 +149,6 @@ namespace xAOD{ acc( *this ) = et; } - double JGTower_v1::LAr_et() const - { - static Accessor< float > acc( "LAr_et" ); - return acc( *this ); - } - - void JGTower_v1::setLArEt(float LAr_et) - { - static Accessor< float > acc( "LAr_et" ); - acc( *this ) = LAr_et; - } - - double JGTower_v1::Tile_et() const - { - static Accessor< float > acc( "Tile_et" ); - return acc( *this ); - } - - void JGTower_v1::setTileEt(float Tile_et) - { - static Accessor< float > acc( "Tile_et" ); - acc( *this ) = Tile_et; - } - - - - double JGTower_v1::tileFrac() const - { - static Accessor< float > acc( "tileFrac" ); - return acc( *this ); - } - - void JGTower_v1::setTileFrac(float tileFrac) - { - static Accessor< float > acc( "tileFrac" ); - acc( *this ) = tileFrac; - } - - double JGTower_v1::pt() const { return static_cast< double >(pt() ); diff --git a/Event/xAOD/xAODTrigL1Calo/xAODTrigL1Calo/versions/JGTowerAuxContainer_v1.h b/Event/xAOD/xAODTrigL1Calo/xAODTrigL1Calo/versions/JGTowerAuxContainer_v1.h index b822369bc7c8fd1705f1fb98efacbdf534500c73..91b8baaa2fd39641dc9b5df2bacf38cad3433157 100755 --- a/Event/xAOD/xAODTrigL1Calo/xAODTrigL1Calo/versions/JGTowerAuxContainer_v1.h +++ b/Event/xAOD/xAODTrigL1Calo/xAODTrigL1Calo/versions/JGTowerAuxContainer_v1.h @@ -35,11 +35,8 @@ namespace xAOD{ std::vector<float> deta; std::vector<float> dphi; std::vector<float> et; - std::vector<float> LAr_et; - std::vector<float> Tile_et; std::vector<int> Id; std::vector<int> sampling; - std::vector<float> tileFrac; std::vector<std::vector<int>> SCIndex; std::vector<std::vector<int>> TileIndex; }; // class JGTowerAuxContainer diff --git a/Event/xAOD/xAODTrigL1Calo/xAODTrigL1Calo/versions/JGTower_v1.h b/Event/xAOD/xAODTrigL1Calo/xAODTrigL1Calo/versions/JGTower_v1.h index e2bed421b7fc28e77ff20508678970601166fb8b..1d10f09f47bfb8eb8e2227c0a8b3a758b284ec44 100755 --- a/Event/xAOD/xAODTrigL1Calo/xAODTrigL1Calo/versions/JGTower_v1.h +++ b/Event/xAOD/xAODTrigL1Calo/xAODTrigL1Calo/versions/JGTower_v1.h @@ -83,10 +83,6 @@ namespace xAOD { virtual double et() const ATH_FINAL; void setEt(float); - virtual double LAr_et() const ATH_FINAL; - void setLArEt(float); - virtual double Tile_et() const ATH_FINAL; - void setTileEt(float); /// get coolId virtual int Id() const ATH_FINAL; @@ -95,8 +91,6 @@ namespace xAOD { void setSampling(int); - virtual double tileFrac() const ATH_FINAL; - void setTileFrac(float); ///get SCIndex diff --git a/MuonSpectrometer/MuonDigitization/sTGC_Digitization/src/sTgcDigitizationTool.cxx b/MuonSpectrometer/MuonDigitization/sTGC_Digitization/src/sTgcDigitizationTool.cxx index 402058dd2239fe74a42f2ade89365481e63386d8..6918e980159d35d5c16660ef48e8a24a4e5a5477 100644 --- a/MuonSpectrometer/MuonDigitization/sTGC_Digitization/src/sTgcDigitizationTool.cxx +++ b/MuonSpectrometer/MuonDigitization/sTGC_Digitization/src/sTgcDigitizationTool.cxx @@ -712,7 +712,7 @@ StatusCode sTgcDigitizationTool::doDigitization() { } // Create a MuonSimData (SDO) corresponding to the digit - MuonSimData::Deposit deposit(hit.particleLink(), MuonMCData(hit.depositEnergy(), tof)); + MuonSimData::Deposit deposit(trklink, MuonMCData(hit.depositEnergy(), tof)); std::vector<MuonSimData::Deposit> deposits; deposits.push_back(deposit); MuonSimData simData(deposits, hit.particleEncoding()); diff --git a/Simulation/G4Extensions/RHadrons/CMakeLists.txt b/Simulation/G4Extensions/RHadrons/CMakeLists.txt index 268f113ce3d36678726564e7bd4284e442d9983e..78a09cadd5561453ff68344ea0c91e1d0eaf4890 100644 --- a/Simulation/G4Extensions/RHadrons/CMakeLists.txt +++ b/Simulation/G4Extensions/RHadrons/CMakeLists.txt @@ -5,29 +5,31 @@ # Declare the package name: atlas_subdir( RHadrons ) -# Declare the package's dependencies: -atlas_depends_on_subdirs( PUBLIC - GaudiKernel - PRIVATE - Control/AthenaBaseComps - Control/CxxUtils - Simulation/G4Atlas/G4AtlasInterfaces - Simulation/G4Atlas/G4AtlasTools - Simulation/G4Extensions/G4ExternalDecay - Simulation/G4Sim/SimHelpers ) +if( NOT GENERATIONBASE ) + # Declare the package's dependencies: + atlas_depends_on_subdirs( PUBLIC + GaudiKernel + PRIVATE + Control/AthenaBaseComps + Control/CxxUtils + Simulation/G4Atlas/G4AtlasInterfaces + Simulation/G4Atlas/G4AtlasTools + Simulation/G4Extensions/G4ExternalDecay + Simulation/G4Sim/SimHelpers ) -# External dependencies: -find_package( CLHEP ) -find_package( Geant4 ) -find_package( XercesC ) -find_package( Pythia8 ) + # External dependencies: + find_package( CLHEP ) + find_package( Geant4 ) + find_package( XercesC ) + find_package( Pythia8 ) -# Component(s) in the package: -atlas_add_component( RHadrons - src/*.cxx - src/components/*.cxx - INCLUDE_DIRS ${GEANT4_INCLUDE_DIRS} ${XERCESC_INCLUDE_DIRS} ${CLHEP_INCLUDE_DIRS} ${PYTHIA8_INCLUDE_DIRS} - LINK_LIBRARIES ${GEANT4_LIBRARIES} ${XERCESC_LIBRARIES} ${CLHEP_LIBRARIES} ${PYTHIA8_LIBRARIES} GaudiKernel AthenaBaseComps G4AtlasInterfaces G4AtlasToolsLib G4ExternalDecay SimHelpers Pythia8_iLib ) + # Component(s) in the package: + atlas_add_component( RHadrons + src/*.cxx + src/components/*.cxx + INCLUDE_DIRS ${GEANT4_INCLUDE_DIRS} ${XERCESC_INCLUDE_DIRS} ${CLHEP_INCLUDE_DIRS} ${PYTHIA8_INCLUDE_DIRS} + LINK_LIBRARIES ${GEANT4_LIBRARIES} ${XERCESC_LIBRARIES} ${CLHEP_LIBRARIES} ${PYTHIA8_LIBRARIES} GaudiKernel AthenaBaseComps G4AtlasInterfaces G4AtlasToolsLib G4ExternalDecay SimHelpers Pythia8_iLib ) +endif() # Install files from the package: atlas_install_python_modules( python/*.py ) diff --git a/Simulation/G4Extensions/RHadrons/cmt/requirements b/Simulation/G4Extensions/RHadrons/cmt/requirements deleted file mode 100644 index c85afaf9832dd5d3bb1d3906092c57747202e799..0000000000000000000000000000000000000000 --- a/Simulation/G4Extensions/RHadrons/cmt/requirements +++ /dev/null @@ -1,24 +0,0 @@ -package RHadrons - -author ADA <dellacqu@mail.cern.ch> - -public -use AtlasPolicy AtlasPolicy-* -use GaudiInterface GaudiInterface-* External - -private -use AthenaBaseComps AthenaBaseComps-* Control -use AtlasCLHEP AtlasCLHEP-* External -use Geant4 Geant4-* External -use G4AtlasInterfaces G4AtlasInterfaces-* Simulation/G4Atlas -use G4AtlasTools G4AtlasTools-* Simulation/G4Atlas -use G4ExternalDecay G4ExternalDecay-* Simulation/G4Extensions -use SimHelpers SimHelpers-* Simulation/G4Sim -end_private - -library RHadrons *.cxx components/*.cxx -apply_pattern component_library - -apply_pattern generic_declare_for_link kind=share files='-s=../share *.MeV *.txt' prefix=share name=<name> -apply_pattern declare_python_modules files="*.py" -apply_pattern declare_joboptions files="-s=../share *.py" diff --git a/Simulation/G4Extensions/RHadrons/python/RHadronMasses.py b/Simulation/G4Extensions/RHadrons/python/RHadronMasses.py index 602cf77a3caaebf1f66794e7c49a3090f0f1c633..9b3bb8ca0f53ade974b2a36b25e7a3aa361b08ac 100644 --- a/Simulation/G4Extensions/RHadrons/python/RHadronMasses.py +++ b/Simulation/G4Extensions/RHadrons/python/RHadronMasses.py @@ -14,14 +14,13 @@ Columns are: Charge (for PDG table) Mass Offset in the Pythia6 simulation configuration - 8 mass options taken from slides 4 and 5 of ESK's presentation here: -https://indico.cern.ch/event/748024/contributions/3094005/attachments/1701409/2740180/GlRhadMasses_20180816.pdf - First 3 are as shown on slide 4; 4th is the first specrum shifted to make the gluino R-glueball heaver + 8 mass options documented in the INT note of the stopped particle analysis: + https://cds.cern.ch/record/2665511 + First 3 are the meson fits; 4th is the first specrum shifted to make the gluino R-glueball heaver than the lightest R-mesons, but with the same relative splitting otherwise. - Second set of four follow the same pattern, but for the splittings shown on slide 5. + Second set of four follow the same pattern, but for the baryon fits. -The list of possible R-hadrons comes from the Pythia8 code, for example: -/afs/cern.ch/sw/lcg/external/MCGenerators_lcgcmt67c/pythia8/235/share/sources/src/RHadrons.cc +The list of possible R-hadrons comes from the Pythia8 code, in src/RHadrons.cc (at the top) """ first_mass_set = 4 @@ -33,56 +32,99 @@ offset_options = { # Gluino R-glueball 1000993 : [ 1000021 , False , '~g_glueball ' , 0 , 0.700 , 0.700 , 0.700 , 0.700 , 0.700 , 0.700 , 0.700 , 0.700 , 0.700 ] , # Gluino q-qbar R-mesons - 1009113 : [ 1000021 , False , '~g_rho0 ' , 0 , 0.650 , 0.682 , 0.551 , 0.770 , 0.000 , 0.770 , 0.551 , 0.770 , 0.000 ] , - 1009223 : [ 1000021 , False , '~g_omega ' , 0 , 0.650 , 0.682 , 0.551 , 0.770 , 0.000 , 0.770 , 0.551 , 0.770 , 0.000 ] , - 1009333 : [ 1000021 , False , '~g_phi ' , 0 , 1.800 , 0.956 , 0.868 , 1.098 , 0.000 , 1.079 , 0.868 , 1.098 , 0.000 ] , - 1009443 : [ 1000021 , False , '~g_JPsi ' , 0 , 3.400 , 3.262 , 3.102 , 3.421 , 0.000 , 3.401 , 3.102 , 3.421 , 0.000 ] , - 1009553 : [ 1000021 , False , '~g_Upsilon ' , 0 ,10.000 ,10.000 ,10.000 ,10.000 ,10.000 ,10.000 ,10.000 ,10.000 ,10.000 ] , + 1009113 : [ 1000021 , False , '~g_pi0 ' , 0 , 0.650 , 0.682 , 0.551 , 0.770 , 0.000 , 0.770 , 0.551 , 0.770 , 0.000 ] , + 1009223 : [ 1000021 , False , '~g_omega ' , 0 , 0.650 , 0.609 , 0.402 , 0.716 , 0.000 , 0.716 , 0.402 , 0.716 , 0.000 ] , + 1009333 : [ 1000021 , False , '~g_phi ' , 0 , 1.800 , 0.923 , 0.827 , 1.073 , 0.000 , 1.053 , 0.827 , 1.073 , 0.000 ] , + 1009443 : [ 1000021 , False , '~g_eta_c ' , 0 , 3.400 , 3.262 , 3.102 , 3.421 , 0.000 , 3.401 , 3.102 , 3.421 , 0.000 ] , + 1009553 : [ 1000021 , False , '~g_eta_b ' , 0 , 9.460 , 9.460 ,11.000 ,10.000 ,10.000 , 9.460 , 9.460 ,11.000 ,10.000 ] , # Light-flavor Gluino R-mesons - 1009213 : [ 1000021 , True , '~g_rho+ ' , 1 , 0.650 , 0.682 , 0.551 , 0.770 , 0.000 , 0.770 , 0.551 , 0.770 , 0.000 ] , + 1009213 : [ 1000021 , True , '~g_pi+ ' , 1 , 0.650 , 0.682 , 0.551 , 0.770 , 0.000 , 0.770 , 0.551 , 0.770 , 0.000 ] , # Strange Gluino R-mesons - 1009313 : [ 1000021 , True , '~g_K*0 ' , 0 , 0.825 , 0.767 , 0.619 , 0.890 , 0.000 , 0.885 , 0.619 , 0.890 , 0.000 ] , - 1009323 : [ 1000021 , True , '~g_K*+ ' , 1 , 0.825 , 0.767 , 0.619 , 0.890 , 0.000 , 0.885 , 0.619 , 0.890 , 0.000 ] , + 1009313 : [ 1000021 , True , '~g_K*0 ' , 0 , 0.825 , 0.816 , 0.697 , 0.927 , 0.000 , 0.922 , 0.697 , 0.927 , 0.000 ] , + 1009323 : [ 1000021 , True , '~g_K*+ ' , 1 , 0.825 , 0.816 , 0.697 , 0.927 , 0.000 , 0.922 , 0.697 , 0.927 , 0.000 ] , # Charm Gluino R-mesons - 1009413 : [ 1000021 , True , '~g_D*+ ' , 1 , 2.000 , 1.943 , 1.847 , 2.070 , 0.000 , 2.064 , 1.847 , 2.070 , 0.000 ] , - 1009423 : [ 1000021 , True , '~g_D*0 ' , 0 , 2.000 , 1.943 , 1.847 , 2.070 , 0.000 , 2.064 , 1.847 , 2.070 , 0.000 ] , - 1009433 : [ 1000021 , True , '~g_D*s+ ' , 1 , 2.200 , 2.096 , 2.036 , 2.250 , 0.000 , 2.230 , 2.036 , 2.250 , 0.000 ] , + 1009413 : [ 1000021 , True , '~g_D+ ' , 1 , 2.000 , 1.954 , 1.863 , 2.078 , 0.000 , 2.073 , 1.863 , 2.078 , 0.000 ] , + 1009423 : [ 1000021 , True , '~g_D0 ' , 0 , 2.000 , 1.954 , 1.863 , 2.078 , 0.000 , 2.073 , 1.863 , 2.078 , 0.000 ] , + 1009433 : [ 1000021 , True , '~g_Ds+ ' , 1 , 2.200 , 2.103 , 2.043 , 2.255 , 0.000 , 2.235 , 2.043 , 2.255 , 0.000 ] , # Bottom Gluino R-mesons - 1009513 : [ 1000021 , True , '~g_B*0 ' , 0 , 2.000 , 5.313 , 5.219 , 5.364 , 0.000 , 5.364 , 5.219 , 5.364 , 0.000 ] , - 1009523 : [ 1000021 , True , '~g_B*+ ' , 1 , 2.000 , 5.313 , 5.219 , 5.364 , 0.000 , 5.364 , 5.219 , 5.364 , 0.000 ] , - 1009533 : [ 1000021 , True , '~g_B*s0 ' , 0 , 2.200 , 5.465 , 5.418 , 5.539 , 0.000 , 5.530 , 5.418 , 5.539 , 0.000 ] , - 1009543 : [ 1000021 , True , '~g_B*c+ ' , 1 , 2.200 , 6.630 , 6.550 , 6.710 , 0.000 , 6.699 , 6.550 , 6.710 , 0.000 ] , + 1009513 : [ 1000021 , True , '~g_B0 ' , 0 , 5.000 , 5.047 , 5.043 , 5.862 , 0.000 , 5.098 , 5.043 , 5.862 , 0.000 ] , + 1009523 : [ 1000021 , True , '~g_B+ ' , 1 , 5.000 , 5.047 , 5.043 , 5.862 , 0.000 , 5.098 , 5.043 , 5.862 , 0.000 ] , + 1009533 : [ 1000021 , True , '~g_Bs0 ' , 0 , 5.200 , 5.198 , 5.198 , 6.041 , 0.000 , 5.262 , 5.198 , 6.041 , 0.000 ] , + 1009543 : [ 1000021 , True , '~g_Bc+ ' , 1 , 7.000 , 6.360 , 6.280 , 7.210 , 0.000 , 6.430 , 6.280 , 7.210 , 0.000 ] , # Light-flavor singlet Gluino R-baryons - 1093214 : [ 1000021 , True , '~g_Lambda0 ' , 0 , 1.150 , 0.561 , 0.280 , 0.715 , 0.000 , 0.715 , 0.280 , 0.715 , 0.000 ] , + 1093214 : [ 1000021 , True , '~g_Lambda0 ' , 0 , 1.150 , 0.562 , 0.280 , 0.715 , 0.000 , 0.715 , 0.280 , 0.715 , 0.000 ] , # Charm singlet Gluino R-baryons 1094214 : [ 1000021 , True , '~g_Sigmac*+ ' , 1 , 2.300 , 1.726 , 1.489 , 1.885 , 0.000 , 1.885 , 1.489 , 1.885 , 0.000 ] , 1094314 : [ 1000021 , True , '~g_Xic*0 ' , 0 , 2.300 , 1.878 , 1.688 , 2.050 , 0.000 , 2.050 , 1.688 , 2.050 , 0.000 ] , 1094324 : [ 1000021 , True , '~g_Xic*+ ' , 1 , 2.300 , 1.878 , 1.688 , 2.050 , 0.000 , 2.050 , 1.688 , 2.050 , 0.000 ] , # Bottom singlet Gluino R-baryons - 1095214 : [ 1000021 , True , '~g_Sigmab*0 ' , 0 , 5.600 , 5.096 , 4.860 , 5.184 , 0.000 , 5.184 , 4.860 , 5.184 , 0.000 ] , - 1095314 : [ 1000021 , True , '~g_Xib*- ' , -1 , 5.750 , 5.248 , 5.059 , 5.349 , 0.000 , 5.349 , 5.059 , 5.349 , 0.000 ] , - 1095324 : [ 1000021 , True , '~g_Xib*0 ' , 0 , 5.750 , 5.248 , 5.059 , 5.349 , 0.000 , 5.349 , 5.059 , 5.349 , 0.000 ] , + 1095214 : [ 1000021 , True , '~g_Sigmab*0 ' , 0 , 5.600 , 4.826 , 4.796 , 5.660 , 0.000 , 4.915 , 4.796 , 5.660 , 0.000 ] , + 1095314 : [ 1000021 , True , '~g_Xib*- ' , -1 , 5.750 , 4.978 , 4.970 , 5.840 , 0.000 , 5.080 , 4.970 , 5.840 , 0.000 ] , + 1095324 : [ 1000021 , True , '~g_Xib*0 ' , 0 , 5.750 , 4.978 , 4.970 , 5.840 , 0.000 , 5.080 , 4.970 , 5.840 , 0.000 ] , # Light flavor Gluino R-baryons - 1091114 : [ 1000021 , True , '~g_Delta- ' , -1 , 0.975 , 0.811 , 0.530 , 0.965 , 0.000 , 0.965 , 0.530 , 0.965 , 0.000 ] , - 1092114 : [ 1000021 , True , '~g_Delta0 ' , 0 , 0.975 , 0.811 , 0.530 , 0.965 , 0.000 , 0.965 , 0.530 , 0.965 , 0.000 ] , - 1092214 : [ 1000021 , True , '~g_Delta+ ' , 1 , 0.975 , 0.811 , 0.530 , 0.965 , 0.000 , 0.965 , 0.530 , 0.965 , 0.000 ] , - 1092224 : [ 1000021 , True , '~g_Delta++ ' , 2 , 0.975 , 0.811 , 0.530 , 0.965 , 0.000 , 0.965 , 0.530 , 0.965 , 0.000 ] , + 1091114 : [ 1000021 , True , '~g_Delta- ' , -1 , 0.975 , 0.812 , 0.530 , 0.965 , 0.000 , 0.965 , 0.530 , 0.965 , 0.000 ] , + 1092114 : [ 1000021 , True , '~g_Delta0 ' , 0 , 0.975 , 0.812 , 0.530 , 0.965 , 0.000 , 0.965 , 0.530 , 0.965 , 0.000 ] , + 1092214 : [ 1000021 , True , '~g_Delta+ ' , 1 , 0.975 , 0.812 , 0.530 , 0.965 , 0.000 , 0.965 , 0.530 , 0.965 , 0.000 ] , + 1092224 : [ 1000021 , True , '~g_Delta++ ' , 2 , 0.975 , 0.812 , 0.530 , 0.965 , 0.000 , 0.965 , 0.530 , 0.965 , 0.000 ] , # Strange Gluino R-baryons - 1093114 : [ 1000021 , True , '~g_Sigma*- ' , -1 , 1.150 , 1.093 , 0.858 , 1.260 , 0.000 , 1.259 , 0.858 , 1.260 , 0.000 ] , - 1093224 : [ 1000021 , True , '~g_Sigma*+ ' , 1 , 1.150 , 1.093 , 0.858 , 1.260 , 0.000 , 1.259 , 0.858 , 1.260 , 0.000 ] , - 1093314 : [ 1000021 , True , '~g_Xi*- ' , -1 , 1.300 , 1.245 , 1.057 , 1.440 , 0.000 , 1.425 , 1.057 , 1.440 , 0.000 ] , - 1093324 : [ 1000021 , True , '~g_Xi*0 ' , 0 , 1.300 , 1.245 , 1.057 , 1.440 , 0.000 , 1.425 , 1.057 , 1.440 , 0.000 ] , - 1093334 : [ 1000021 , True , '~g_Omega- ' , -1 , 1.600 , 1.397 , 1.256 , 1.619 , 0.000 , 1.590 , 1.256 , 1.619 , 0.000 ] , + 1093114 : [ 1000021 , True , '~g_Sigma*- ' , -1 , 1.150 , 1.094 , 0.858 , 1.260 , 0.000 , 1.260 , 0.858 , 1.260 , 0.000 ] , + 1093224 : [ 1000021 , True , '~g_Sigma*+ ' , 1 , 1.150 , 1.094 , 0.858 , 1.260 , 0.000 , 1.260 , 0.858 , 1.260 , 0.000 ] , + 1093314 : [ 1000021 , True , '~g_Xi*- ' , -1 , 1.300 , 1.246 , 1.058 , 1.440 , 0.000 , 1.425 , 1.058 , 1.440 , 0.000 ] , + 1093324 : [ 1000021 , True , '~g_Xi*0 ' , 0 , 1.300 , 1.246 , 1.058 , 1.440 , 0.000 , 1.425 , 1.058 , 1.440 , 0.000 ] , + 1093334 : [ 1000021 , True , '~g_Omega- ' , -1 , 1.600 , 1.398 , 1.257 , 1.620 , 0.000 , 1.590 , 1.257 , 1.620 , 0.000 ] , # Charm Gluino R-baryons - 1094114 : [ 1000021 , True , '~g_Sigmac*0 ' , 0 , 2.300 , 2.257 , 2.067 , 2.430 , 0.000 , 2.429 , 2.067 , 2.430 , 0.000 ] , - 1094224 : [ 1000021 , True , '~g_Sigmac*++' , 2 , 2.300 , 2.257 , 2.067 , 2.430 , 0.000 , 2.429 , 2.067 , 2.430 , 0.000 ] , - 1094334 : [ 1000021 , True , '~g_Omegac*0 ' , 0 , 2.300 , 2.561 , 2.465 , 2.789 , 0.000 , 2.760 , 2.465 , 2.789 , 0.000 ] , + 1094114 : [ 1000021 , True , '~g_Sigmac*0 ' , 0 , 2.300 , 2.258 , 2.068 , 2.430 , 0.000 , 2.430 , 2.068 , 2.430 , 0.000 ] , + 1094224 : [ 1000021 , True , '~g_Sigmac*++' , 2 , 2.300 , 2.258 , 2.068 , 2.430 , 0.000 , 2.430 , 2.068 , 2.430 , 0.000 ] , + 1094334 : [ 1000021 , True , '~g_Omegac*0 ' , 0 , 2.300 , 2.562 , 2.466 , 2.790 , 0.000 , 2.760 , 2.466 , 2.790 , 0.000 ] , # Bottom Gluino R-baryons - 1095114 : [ 1000021 , True , '~g_Sigmab*- ' , -1 , 5.600 , 5.627 , 5.439 , 5.729 , 0.000 , 5.729 , 5.439 , 5.729 , 0.000 ] , - 1095224 : [ 1000021 , True , '~g_Sigmab*+ ' , 1 , 5.600 , 5.627 , 5.439 , 5.729 , 0.000 , 5.729 , 5.439 , 5.729 , 0.000 ] , - 1095334 : [ 1000021 , True , '~g_Omegab*- ' , -1 , 5.900 , 5.931 , 5.837 , 6.079 , 0.000 , 6.060 , 5.837 , 6.079 , 0.000 ] , + 1095114 : [ 1000021 , True , '~g_Sigmab*- ' , -1 , 5.600 , 5.358 , 5.350 , 6.220 , 0.000 , 5.460 , 5.350 , 6.220 , 0.000 ] , + 1095224 : [ 1000021 , True , '~g_Sigmab*+ ' , 1 , 5.600 , 5.358 , 5.350 , 6.220 , 0.000 , 5.460 , 5.350 , 6.220 , 0.000 ] , + 1095334 : [ 1000021 , True , '~g_Omegab*- ' , -1 , 5.900 , 5.662 , 5.662 , 6.580 , 0.000 , 5.790 , 5.662 , 6.580 , 0.000 ] , + +# Sbottom R-mesons + 1000512 : [ 1000005 , True , '~B0 ' , 0 , 0.325 , 0.314 , 0.220 , 0.365 , 0.000 , 0.365 , 0.220 , 0.365 , 0.000 ] , + 1000522 : [ 1000005 , True , '~B- ' , -1 , 0.325 , 0.314 , 0.220 , 0.365 , 0.000 , 0.365 , 0.220 , 0.365 , 0.000 ] , + 1000532 : [ 1000005 , True , '~Bs0 ' , 0 , 0.500 , 0.466 , 0.419 , 0.540 , 0.000 , 0.530 , 0.419 , 0.540 , 0.000 ] , + 1000542 : [ 1000005 , True , '~Bc- ' , -1 , 1.500 , 1.630 , 1.550 , 1.710 , 0.000 , 1.700 , 1.550 , 1.710 , 0.000 ] , + 1000552 : [ 1000005 , True , '~etab0 ' , 0 , 4.800 , 4.730 , 4.730 , 5.500 , 0.000 , 4.730 , 4.730 , 5.500 , 0.000 ] , +# Sbottom R-baryons + 1005113 : [ 1000005 , True , '~Sigmab- ' , -1 , 0.650 , 0.671 , 0.529 , 0.762 , 0.000 , 0.762 , 0.529 , 0.762 , 0.000 ] , + 1005211 : [ 1000005 , True , '~Sigmab0 ' , 0 , 0.650 , 0.496 , 0.171 , 0.632 , 0.000 , 0.632 , 0.171 , 0.632 , 0.000 ] , + 1005213 : [ 1000005 , True , '~Sigmab*0 ' , 0 , 0.650 , 0.671 , 0.529 , 0.762 , 0.000 , 0.762 , 0.529 , 0.762 , 0.000 ] , + 1005223 : [ 1000005 , True , '~Sigmab+ ' , 1 , 0.650 , 0.671 , 0.529 , 0.762 , 0.000 , 0.762 , 0.529 , 0.762 , 0.000 ] , + 1005311 : [ 1000005 , True , '~Xib- ' , -1 , 0.825 , 0.691 , 0.497 , 0.833 , 0.000 , 0.827 , 0.497 , 0.833 , 0.000 ] , + 1005313 : [ 1000005 , True , '~Xib*- ' , -1 , 0.809 , 0.686 , 0.922 , 0.365 , 0.000 , 0.917 , 0.686 , 0.922 , 0.000 ] , + 1005321 : [ 1000005 , True , '~Xib0 ' , 0 , 0.825 , 0.691 , 0.497 , 0.833 , 0.000 , 0.827 , 0.497 , 0.833 , 0.000 ] , + 1005323 : [ 1000005 , True , '~Xib*0 ' , 0 , 0.809 , 0.686 , 0.922 , 0.365 , 0.000 , 0.917 , 0.686 , 0.922 , 0.000 ] , + 1005333 : [ 1000005 , True , '~Omegab- ' , -1 , 1.000 , 0.951 , 0.862 , 1.094 , 0.000 , 1.075 , 0.862 , 1.094 , 0.000 ] , +# Stop R-mesons + 1000612 : [ 1000006 , True , '~T+ ' , 1 , 0.325 , 0.314 , 0.220 , 0.365 , 0.000 , 0.365 , 0.220 , 0.365 , 0.000 ] , + 1000622 : [ 1000006 , True , '~T0 ' , 0 , 0.325 , 0.314 , 0.220 , 0.365 , 0.000 , 0.365 , 0.220 , 0.365 , 0.000 ] , + 1000632 : [ 1000006 , True , '~Ts+ ' , 1 , 0.500 , 0.466 , 0.419 , 0.540 , 0.000 , 0.530 , 0.419 , 0.540 , 0.000 ] , + 1000642 : [ 1000006 , True , '~Tc0 ' , 0 , 1.500 , 1.630 , 1.550 , 1.710 , 0.000 , 1.700 , 1.550 , 1.710 , 0.000 ] , + 1000652 : [ 1000006 , True , '~etat+ ' , 1 , 4.800 , 4.730 , 4.730 , 5.500 , 0.000 , 4.730 , 4.730 , 5.500 , 0.000 ] , +# Stop R-baryons + 1006113 : [ 1000006 , True , '~Sigmat0 ' , 0 , 0.650 , 0.671 , 0.529 , 0.762 , 0.000 , 0.762 , 0.529 , 0.762 , 0.000 ] , + 1006211 : [ 1000006 , True , '~Sigmat+ ' , 1 , 0.650 , 0.496 , 0.171 , 0.632 , 0.000 , 0.632 , 0.171 , 0.632 , 0.000 ] , + 1006213 : [ 1000006 , True , '~Sigmat*+ ' , 1 , 0.650 , 0.671 , 0.529 , 0.762 , 0.000 , 0.762 , 0.529 , 0.762 , 0.000 ] , + 1006223 : [ 1000006 , True , '~Sigmat++ ' , 2 , 0.650 , 0.671 , 0.529 , 0.762 , 0.000 , 0.762 , 0.529 , 0.762 , 0.000 ] , + 1006311 : [ 1000006 , True , '~Xit0 ' , 0 , 0.691 , 0.497 , 0.833 , 0.365 , 0.000 , 0.827 , 0.497 , 0.833 , 0.000 ] , + 1006313 : [ 1000006 , True , '~Xit*0 ' , 0 , 0.809 , 0.686 , 0.922 , 0.365 , 0.000 , 0.917 , 0.686 , 0.922 , 0.000 ] , + 1006321 : [ 1000006 , True , '~Xit+ ' , 1 , 0.691 , 0.497 , 0.833 , 0.365 , 0.000 , 0.827 , 0.497 , 0.833 , 0.000 ] , + 1006323 : [ 1000006 , True , '~Xit*+ ' , 1 , 0.809 , 0.686 , 0.922 , 0.365 , 0.000 , 0.917 , 0.686 , 0.922 , 0.000 ] , + 1006333 : [ 1000006 , True , '~Omegat0 ' , 0 , 1.000 , 0.951 , 0.862 , 1.094 , 0.000 , 1.075 , 0.862 , 1.094 , 0.000 ] , } +# Now programmatically calculate the missing spectra +for pid in offset_options: + # Skip fundamental SUSY particles and R-glueball + if offset_options[pid][0] == 0 or pid == 1000993: continue + # Setup #4 to be mass set #1 but with 1009113 matching mass set 5 + offset_options[pid][first_mass_set+4] = offset_options[pid][first_mass_set+1]+0.088 + # Setup #8 to be mass set #5 but with 1009113 matches mass set 2 + offset_options[pid][first_mass_set+8] = offset_options[pid][first_mass_set+5]-0.088 + + def charge( c ): """ Function to return a PDG table formatted charge given an integer charge @@ -129,16 +171,6 @@ def anti_name( x ): return x.replace('0','bar0') -# Now programmatically calculate the missing spectra -for pid in offset_options: - # Skip fundamental SUSY particles and R-glueball - if offset_options[pid][0] == 0 or pid == 1000993: continue - # Setup #4 to be mass set #1 but with 1009113 matching mass set 5 - offset_options[pid][first_mass_set+4] = offset_options[pid][first_mass_set+1]+0.088 - # Setup #8 to be mass set #5 but with 1009113 matches mass set 2 - offset_options[pid][first_mass_set+8] = offset_options[pid][first_mass_set+5]-0.088 - - def get_gluino_Rhadron_masses(input_file, mass_spectrum=1): """ Function to return a dictionary of PDG IDs and masses based on an input param/SLHA/LHE file First parameter: input file (string or file handle) diff --git a/Simulation/ISF/ISF_Validation/test/ISF_Validation_TestConfiguration.xml b/Simulation/ISF/ISF_Validation/test/ISF_Validation_TestConfiguration.xml deleted file mode 100644 index 58b828c757003b922bd3773a8fa67759fd93ffd1..0000000000000000000000000000000000000000 --- a/Simulation/ISF/ISF_Validation/test/ISF_Validation_TestConfiguration.xml +++ /dev/null @@ -1,1745 +0,0 @@ -<?xml version="1.0"?> -<!DOCTYPE unifiedTestConfiguration SYSTEM "http://www.hep.ucl.ac.uk/atlas/AtlasTesting/DTD/unifiedTestConfiguration.dtd"> - -<!-- - don't forget to validate the xml syntax of this file after changing it: - python /afs/cern.ch/user/r/rtt/public/xmlvalidate.py ISF_Validation_TestConfiguration.xml ---> - -<unifiedTestConfiguration> - <rtt xmlns="http://www.hep.ucl.ac.uk/atlas/AtlasTesting/rtt"> - <rttContactPerson>Elmar Ritsch (elmar.ritsch@cern.ch)</rttContactPerson> - <rttContactPerson>John Chapman (chapman@hep.phy.cam.ac.uk)</rttContactPerson> - <rttContactPerson>Robert Harrington (roberth@cern.ch)</rttContactPerson> - <mailto>atlas-simulation-testreports@cern.ch</mailto> - - <!-- - run the following to check the xml syntax in this file: - python /afs/cern.ch/user/r/rtt/public/validateXML.py ISF_Validation_TestConfiguration.xml - (this is now done by default when make is run on this package) - --> - - <jobList> - <classification> - <displayClass>OfflineValidation</displayClass> - <displayProcess>Simul</displayProcess> - <displayComponent>Athena-Core</displayComponent> - </classification> - - <!--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - %% FullG4 ttbar (MC15 production setup) - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - --> - <chain> - <chainName>SimulationTest_FullG4_ttbar</chainName> - <sequential> - - <chainElement> - <jobTransform userJobId="FullG4_ttbar_1sim"> - <doc>Test detector functionality for ISF FullG4 using ttbar events</doc> - <jobTransformJobName>FullG4_ttbar_1sim</jobTransformJobName> - <jobTransformCmd>Sim_tf.py --conditionsTag 'default:OFLCOND-RUN12-SDR-19' --physicsList 'FTFP_BERT' --truthStrategy 'MC15aPlus' --simulator 'FullG4' --postInclude 'default:PyJobTransforms/UseFrontier.py,G4AtlasTests/postInclude.DCubeTest.py' --preInclude 'EVNTtoHITS:SimulationJobOptions/preInclude.BeamPipeKill.py,SimulationJobOptions/preInclude.FrozenShowersFCalOnly.py' --DataRunNumber '222525' --geometryVersion 'default:ATLAS-R2-2015-03-01-00_VALIDATION' --inputEVNTFile "/afs/cern.ch/atlas/groups/Simulation/EVNT_files/mc12_valid.110401.PowhegPythia_P2012_ttbar_nonallhad.evgen.EVNT.e3099.01517252._000001.pool.root.1" --outputHITSFile "Hits.pool.root" --maxEvents 4</jobTransformCmd> - <group>ISF_Validation_sim</group> - <queue>medium</queue> - - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MC15/dcube-G4_ttbar_1sim.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MC15/G4_ttbar_1sim.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>truth.root</argvalue> - </arg> - <keepFilePattern>DCube-MC15/G4_ttbar_1sim.truth.root/truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="FullG4_ttbar_1sim_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>FullG4_ttbar_1sim_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py FullG4_ttbar_1sim truth.root Hits.pool.root</jobTransformCmd> - <group>ISF_Validation_HitsRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <!--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - %% FullG4_LongLived Z-prime (MC15 production setup) - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - --> - <chain> - <chainName>SimulationTest_FullG4_ZPrime_QuasiStable</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="FullG4_LongLived_ZPrime_1sim"> - <doc>Test detector functionality for ISF G4 using ttbar</doc> - <jobTransformJobName>FullG4_LongLived_ZPrime_1sim</jobTransformJobName> - <jobTransformCmd>Sim_tf.py --conditionsTag 'default:OFLCOND-RUN12-SDR-19' --physicsList 'FTFP_BERT' --truthStrategy 'MC15aPlus' --simulator 'FullG4_LongLived' --postInclude 'default:PyJobTransforms/UseFrontier.py,G4AtlasTests/postInclude.DCubeTest.py' --preInclude 'EVNTtoHITS:SimulationJobOptions/preInclude.BeamPipeKill.py,SimulationJobOptions/preInclude.FrozenShowersFCalOnly.py' --DataRunNumber '222525' --geometryVersion 'default:ATLAS-R2-2015-03-01-00_VALIDATION' --inputEVNTFile "root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/jira/ATLASSIM-1795/EVNT.04607198._000001.pool.root.1" --outputHITSFile "Hits.pool.root" --maxEvents 10</jobTransformCmd> - <group>ISF_Validation_sim</group> - <queue>medium</queue> - - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MC15/dcube-G4_MC15_ZPrime_QuasiStable_1sim.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MC15/G4_MC15_ZPrime_QuasiStable_1sim.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>truth.root</argvalue> - </arg> - <keepFilePattern>DCube-MC15/G4_MC15_ZPrime_QuasiStable_1sim.truth.root/truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="FullG4_LongLived_ZPrime_1sim_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>FullG4_LongLived_ZPrime_1sim_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py FullG4_LongLived_ZPrime_1sim truth.root Hits.pool.root</jobTransformCmd> - <group>ISF_Validation_HitsRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <!--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - %% Geant4 Z-prime LongLived (MC15 Truth Strategy) (will soon be depricated) - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - --> - <chain> - <chainName>SimulationTest_Geant4_ZPrime_QuasiStable_MC15</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="G4_MC15_ZPrime_QuasiStable_1sim"> - <doc>Test detector functionality for ISF G4 using ttbar</doc> - <jobTransformJobName>G4_MC15_ZPrime_QuasiStable_1sim</jobTransformJobName> - <jobTransformCmd>xrdcp root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/jira/ATLASSIM-1795/EVNT.04607198._000001.pool.root.1 EVNT.04607198._000001.pool.root.1; Sim_tf.py --inputEVNTFile="EVNT.04607198._000001.pool.root.1" --DataRunNumber="222525" --conditionsTag="OFLCOND-RUN12-SDR-20" --geometryVersion="ATLAS-R2-2015-03-01-00_VALIDATION" --maxEvents="10" --outputHITSFile="Hits.pool.root" --physicsList="FTFP_BERT" --postInclude="PyJobTransforms/UseFrontier.py" --preInclude EVNTtoHITS:SimulationJobOptions/preInclude.BeamPipeKill.py --randomSeed="8" --simulator="MC12G4_longLived" --truthStrategy MC15 --postInclude=G4AtlasTests/postInclude.DCubeTest.py</jobTransformCmd> - <group>ISF_Validation_sim</group> - <queue>medium</queue> - - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MC15/dcube-G4_MC15_ZPrime_QuasiStable_1sim.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MC15/G4_MC15_ZPrime_QuasiStable_1sim.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>truth.root</argvalue> - </arg> - <keepFilePattern>DCube-MC15/G4_MC15_ZPrime_QuasiStable_1sim.truth.root/truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="G4_MC15_ZPrime_QuasiStable_1sim_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>G4_MC15_ZPrime_QuasiStable_1sim_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py G4_MC15_ZPrime_QuasiStable_1sim truth.root Hits.pool.root</jobTransformCmd> - <group>ISF_Validation_HitsRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <!--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - %% FullG4 Minbias FullChain (MC15 production setup) - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - --> - <chain> - <chainName>FullChainTest_FullG4_minbias</chainName> - <sequential> - - <chainElement> - <jobTransform userJobId="FullG4_minbias_1sim"> - <doc>Tests detector functionality for ISF FullG4 truth and beam transformation using minbias events in the innerdetector</doc> - <jobTransformJobName>FullG4_minbias_1sim</jobTransformJobName> - <jobTransformCmd>Sim_tf.py --conditionsTag 'default:OFLCOND-RUN12-SDR-19' --physicsList 'FTFP_BERT' --truthStrategy 'MC15aPlus' --simulator 'FullG4' --postInclude 'default:PyJobTransforms/UseFrontier.py,G4AtlasTests/postInclude.DCubeTest.py' --preInclude 'EVNTtoHITS:SimulationJobOptions/preInclude.BeamPipeKill.py,SimulationJobOptions/preInclude.FrozenShowersFCalOnly.py' --DataRunNumber '222525' --geometryVersion 'default:ATLAS-R2-2015-03-01-00_VALIDATION' --inputEVNTFile "/afs/cern.ch/atlas/groups/Simulation/EVNT_files/mc12_valid.119994.Pythia8_A2MSTW2008LO_minbias_inelastic.evgen.EVNT.e3099.01517253._000001.pool.root.1" --outputHITSFile "Hits.pool.root" --maxEvents 50</jobTransformCmd> - <group>ISF_Validation_sim</group> - <queue>medium</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <!-- need to update this for minbias and minbias above --> - <argvalue>MC15/dcube-G4_minbias_1sim.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MC15/G4_minbias_1sim.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>truth.root</argvalue> - </arg> - <keepFilePattern>DCube-MC15/G4_minbias_1sim.truth.root/truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - <chainfileout> - Hits.pool.root - </chainfileout> - </chainElement> - - <parallel> - <chainElement> - <jobTransform userJobId="FullG4_minbias_1sim_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>FullG4_minbias_1sim_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py FullG4_minbias_1sim truth.root Hits.pool.root</jobTransformCmd> - - <group>ISF_Validation_HitsRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - <chainElement> - <jobTransform userJobId="FullG4_minbias_1sim_Compare_MCProd_G4"> - <doc>comparison to ISF references</doc> - <jobTransformJobName>FullG4_minbias_1sim_Compare_MCProd_G4</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py FullG4_minbias_1sim</jobTransformCmd> - - <group>ISF_Validation</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/minbias_G4_50evt.truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/minbias_G4_50evt.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/minbias_G4_50evt.truth.root/today.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - </jobTransform> - </chainElement> - <sequential> - <chainElement> - <jobTransform userJobId="FullG4_minbias_2merge"> - <doc>HITS merge job</doc> - <jobTransformJobName>FullG4_minbias_2merge</jobTransformJobName> - <jobTransformCmd>HITSMerge_tf.py --inputHITSFile='Hits.pool.root' --outputHITS_MRGFile='Merge.pool.root' --maxEvents=50 --skipEvents='0' --geometryVersion 'ATLAS-R2-2015-03-01-00' --conditionsTag 'OFLCOND-RUN12-SDR-19'</jobTransformCmd> - <group>ISF_Validation</group> - <chaindataset_info> - <jobTransformData/> - <chaindatasetName>Hits.pool.root</chaindatasetName> - <dataset_info> - <jobTransformData/> - <datasetName>/afs/cern.ch/atlas/offline/external/FullChainTest/long/rtt.fallback/MC12/MC12.108351.pythia_minbias.8TeV.HITS.pool.root</datasetName> - </dataset_info> - </chaindataset_info> - <queue>short</queue> - <batchWallTime>300</batchWallTime> - </jobTransform> - <chainfileout> - Merge.pool.root - </chainfileout> - </chainElement> - <!-- Run Digitisation --> - <chainElement> - <jobTransform userJobId="FullG4_minbias_3digi"> - - <doc>Digitiziation without pile-up, with additional modifications for AFII inputs.</doc> - <jobTransformJobName>FullG4_minbias_3digi</jobTransformJobName> - - <jobTransformCmd>Digi_tf.py --inputHITSFile 'Merge.pool.root' --outputRDOFile 'RDO.pool.root' --maxEvents '50' --skipEvents '0' --geometryVersion 'ATLAS-R2-2015-03-01-00' --digiSeedOffset1 '123456' --digiSeedOffset2 '2345678' --postInclude 'PyJobTransforms/UseFrontier.py' --AddCaloDigi 'False' --conditionsTag 'OFLCOND-RUN12-SDR-31'</jobTransformCmd> - - <group>ISF_Validation</group> - - <chaindataset_info> - <jobTransformData/> - <chaindatasetName>Merge.pool.root</chaindatasetName> - <dataset_info> - <jobTransformData/> - <datasetName>/afs/cern.ch/atlas/offline/external/FullChainTest/long/rtt.fallback/MC12/MC12.108351.pythia_minbias.8TeV.HITS.pool.root</datasetName> - </dataset_info> - </chaindataset_info> - - <queue>short</queue> - <batchWallTime>300</batchWallTime> - </jobTransform> - <chainfileout>RDO.pool.root</chainfileout> - </chainElement> - - <!-- Run Reconstruction --> - <chainElement> - <jobTransform userJobId="FullG4_minbias_4reco"> - <doc>reco</doc> - <jobTransformJobName>FullG4_minbias_4reco</jobTransformJobName> - <jobTransformCmd>Reco_tf.py --inputRDOFile 'RDO.pool.root' --outputESDFile 'ESD.pool.root' --maxEvents '50' --skipEvents '0' --preInclude 'ISF_Example/preInclude.IDonly_reconstruction.py'</jobTransformCmd> - <group>ISF_Validation</group> - <chaindataset_info> - <jobTransformData/> - <chaindatasetName>RDO.pool.root</chaindatasetName> - <dataset_info> - <jobTransformData/> - <datasetName>/afs/cern.ch/atlas/offline/external/FullChainTest/long/rtt.fallback/MC12/MC12.108351.pythia_minbias.8TeV.RDO.pool.root</datasetName> - </dataset_info> - </chaindataset_info> - <queue>short</queue> - <batchWallTime>300</batchWallTime> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/InDetStandardPlots.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/minbias_G4_50evt.InDetStandardPlots.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>InDetStandardPlots.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/minbias_G4_50evt.InDetStandardPlots.root/InDetStandardPlots.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - <chainfileout>AOD.pool.root</chainfileout> - </chainElement> - </sequential> - </parallel> - </sequential> - </chain> - - - <!--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - %% G4 COSMICS - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - --> - <jobTransform userJobId="G4_cosmics_1sim"> - <doc>Running cosmic simulation transform from track records</doc> - <jobTransformJobName>G4_cosmics_1sim</jobTransformJobName> - <jobTransformCmd>Sim_tf.py --simulator MC12G4 --inputEVNT_TRFile /afs/cern.ch/atlas/offline/ProdData/16.6.X/16.6.7.Y/Cosmics.TR.pool.root --outputHITSFile testCosmics.HITS.pool.root --maxEvents -1 --randomSeed 1234 --DataRunNumber '10' --geometryVersion ATLAS-R2-2015-03-01-00_VALIDATION --conditionsTag OFLCOND-RUN12-SDR-19 --firstEvent 0 --physicsList QGSP_BERT --preInclude SimulationJobOptions/preInclude.Cosmics.py --beamType cosmics</jobTransformCmd> - <group>ISF_Validation_sim</group> - <queue>short</queue> - <!-- add in some tests later --> - </jobTransform> - - <jobTransform userJobId="G4_cosmicsTR_1sim"> - <doc>Running cosmic simulation transform from track records</doc> - <jobTransformJobName>G4_cosmicsTR_1sim</jobTransformJobName> - <jobTransformCmd>Sim_tf.py --simulator MC12G4 --outputEVNT_TRFile 'testCosmics.TR.pool.root' --outputHITSFile 'testCosmics.HITS.pool.root' --maxEvents '1500' --randomSeed '1234' --DataRunNumber '10' --physicsList 'QGSP_BERT' --CosmicFilterVolume 'Calo' --CosmicFilterVolume2 'NONE' --preInclude 'SimulationJobOptions/preInclude.Cosmics.py' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --CosmicPtSlice 'NONE' --beamType 'cosmics'</jobTransformCmd> - <group>ISF_Validation_sim</group> - <queue>medium</queue> - <!-- add in some tests later --> - </jobTransform> - - - <!--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - %% G4 CALIBRATION HITS - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - --> - - <chain> - <chainName>RegressionTest_G4_WriteCalHitsTest</chainName> - <sequential> - - <chainElement> - <jobTransform userJobId="G4_WriteCalHitsTest_1sim"> - <doc>Reading gen events, single particle</doc> - <jobTransformJobName>G4_WriteCalHitsTest_1sim</jobTransformJobName> - <jobTransformCmd>Sim_tf.py --simulator MC12G4 --inputEVNTFile '/afs/cern.ch/atlas/offline/ProdData/16.6.X/16.6.7.Y/pi_E50_eta0-60.evgen.pool.root' --outputHITSFile 'Hits.pool.root' --maxEvents '10' --skipEvents '0' --randomSeed '10' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --preInclude 'SimulationJobOptions/preInclude.CalHits.py,SimulationJobOptions/preInclude.ParticleID.py' --postInclude 'G4AtlasTests/postInclude.DCubeTest_CaloCalibHits.py' --preExec 'simFlags.ReleaseGeoModel=False;'</jobTransformCmd> - <group>ISF_Validation_sim</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>G4_WriteCalHitsTestDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MC15/dcube-G4_WriteCalHitsTest_1sim.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MC15/G4_WriteCalHitsTest_1sim.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>truth.root</argvalue> - </arg> - <keepFilePattern>DCube-MC15/G4_WriteCalHitsTest_1sim.truth.root/truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="G4_WriteCalHitsTest_1sim_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>G4_WriteCalHitsTest_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py G4_WriteCalHitsTest_1sim truth.root Hits.pool.root</jobTransformCmd> - <group>ISF_Validation</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>G4_WriteCalHitsTest_RegDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MC15/dcube-G4_WriteCalHitsTest_1sim.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>yesterday.truth.root</argvalue> - </arg> - <arg> - <argname>localRefFile</argname> - <argvalue>True</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.truth.root</argvalue> - </arg> - <keepFilePattern>DCube-yesterday.truth.root/today.truth.root.dcube.xml.php</keepFilePattern> - </test> - <test position="2"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>HITS_RegressionTestRunner</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>today.Hits.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>yesterday.Hits.pool.root</argvalue> - </arg> - <keepFilePattern>today.Hits.pool.root_yesterday.Hits.pool.root.diffPool</keepFilePattern> - </test> - - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - - <!--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - %% ATLFASTII ttbar (FullChainTest) - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - --> - <chain> - <chainName>FullChainTest_ATLFASTII_ttbar</chainName> - <sequential> - <chainElement> - <jobTransform userJobId="ATLFASTII_ttbar_1sim"> - <doc>Tests detector functionality for ISF ATLFASTII-like configuration using ttbar events</doc> - <jobTransformJobName>ATLFASTII_ttbar_1sim</jobTransformJobName> - <!-- MC15 production AMI tag a766 --> - <jobTransformCmd>Sim_tf.py --conditionsTag 'default:OFLCOND-RUN12-SDR-19' --physicsList 'FTFP_BERT' --truthStrategy 'MC12' --simulator 'ATLFASTII' --postInclude 'default:PyJobTransforms/UseFrontier.py' 'G4AtlasTests/postInclude.DCubeTest.py' --preInclude 'EVNTtoHITS:SimulationJobOptions/preInclude.BeamPipeKill.py' --DataRunNumber '222525' --geometryVersion 'default:ATLAS-R2-2015-03-01-00_VALIDATION' --inputEVNTFile "/afs/cern.ch/atlas/groups/Simulation/EVNT_files/mc12_valid.110401.PowhegPythia_P2012_ttbar_nonallhad.evgen.EVNT.e3099.01517252._000001.pool.root.1" --outputHITSFile "Hits.pool.root" --maxEvents 250</jobTransformCmd> - <group>ISF_Validation_sim</group> - <queue>long</queue> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MC15/dcube-ISF_ATLFASTII_ttbar_MC12.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MC15/ISF_ATLFASTII_ttbar_MC12.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>truth.root</argvalue> - </arg> - <keepFilePattern>ISF_ATLFASTII_ttbar_log</keepFilePattern> - <keepFilePattern>DCube-MC15/ISF_ATLFASTII_ttbar_MC12.truth.root/truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - <chainfileout>Hits.pool.root</chainfileout> - </chainElement> - <parallel> - <chainElement> - <jobTransform userJobId="ATLFASTII_ttbar_1sim_Compare_MCProd_AFII"> - <doc>comparison to ISF references</doc> - <jobTransformJobName>ATLFASTII_ttbar_1sim_Compare_MCProd_AFII</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTII_ttbar_1sim</jobTransformCmd> - <group>ISF_Validation</group> - <queue>extrashort</queue> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/ttbar_ATLFASTII_500evt.truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/ttbar_ATLFASTII_500evt.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/ttbar_ATLFASTII_500evt.truth.root/today.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - </jobTransform> - </chainElement> - <chainElement> - <jobTransform userJobId="ATLFASTII_ttbar_1sim_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>ATLFASTII_ttbar_1sim_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTII_ttbar_1sim truth.root Hits.pool.root</jobTransformCmd> - <group>ISF_Validation_HitsRegressionTests</group> - <queue>medium</queue> - </jobTransform> - </chainElement> - <sequential> - - <chainElement> - <jobTransform userJobId="ATLFASTII_ttbar_2merge"> - <doc>Merge job for backward compatibility with 17.3.13</doc> - <jobTransformJobName>ATLFASTII_ttbar_2merge</jobTransformJobName> - <jobTransformCmd>HITSMerge_tf.py --inputHITSFile='Hits.pool.root' --outputHITS_MRGFile='Merge.pool.root' --maxEvents=-1 --skipEvents='0' --geometryVersion='ATLAS-R2-2015-03-01-00' --conditionsTag='OFLCOND-RUN12-SDR-19'</jobTransformCmd> - <group>ISF_Validation</group> - <chaindataset_info> - <jobTransformData/> - <chaindatasetName>Hits.pool.root</chaindatasetName> - <dataset_info> - <jobTransformData/> - <datasetName>/afs/cern.ch/atlas/offline/external/FullChainTest/long/rtt.fallback/MC12/MC12.108351.pythia_minbias.8TeV.HITS.pool.root</datasetName> - </dataset_info> - </chaindataset_info> - <queue>short</queue> - </jobTransform> - <chainfileout> - Merge.pool.root - </chainfileout> - </chainElement> - - <!-- Run Digitization + Reconstruction --> - <chainElement> - <jobTransform userJobId="ATLFASTII_ttbar_3digireco"> - <doc>reco</doc> - <jobTransformJobName>ATLFASTII_ttbar_3digireco</jobTransformJobName> - <jobTransformCmd>Reco_tf.py --digiSteeringConf 'StandardSignalOnlyTruth' --conditionsTag 'default:OFLCOND-MC15c-SDR-09' --postInclude 'default:RecJobTransforms/UseFrontier.py' 'HITtoRDO:DigitizationTests/postInclude.RDO_Plots.py' --autoConfiguration 'everything' --steering 'doRDO_TRIG' --geometryVersion 'default:ATLAS-R2-2015-03-01-00' --DataRunNumber '267599' --preExec 'all:rec.Commissioning.set_Value_and_Lock(True);from AthenaCommon.BeamFlags import jobproperties;jobproperties.Beam.numberOfCollisions.set_Value_and_Lock(0.0);from LArROD.LArRODFlags import larRODFlags;larRODFlags.NumberOfCollisions.set_Value_and_Lock(0);larRODFlags.nSamples.set_Value_and_Lock(4);larRODFlags.doOFCPileupOptimization.set_Value_and_Lock(True);larRODFlags.firstSample.set_Value_and_Lock(0);larRODFlags.useHighestGainAutoCorr.set_Value_and_Lock(True)' 'RAWtoESD:from CaloRec.CaloCellFlags import jobproperties;jobproperties.CaloCellFlags.doLArCellEmMisCalib=False;from InDetRecExample.InDetJobProperties import InDetFlags;InDetFlags.doStandardPlots.set_Value_and_Lock(True)' 'ESDtoAOD:TriggerFlags.AODEDMSet="AODFULL"' 'RAWtoESD:from InDetRecExample.InDetJobProperties import InDetFlags;InDetFlags.doSlimming.set_Value_and_Lock(False)' 'ESDtoAOD:from InDetRecExample.InDetJobProperties import InDetFlags;InDetFlags.doSlimming.set_Value_and_Lock(False)' --numberOfCavernBkg '0' --postExec 'all:CfgMgr.MessageSvc().setError+=["HepMcParticleLink"]' "ESDtoAOD:fixedAttrib=[s if \"CONTAINER_SPLITLEVEL = \'99\'\" not in s else \"\" for s in svcMgr.AthenaPoolCnvSvc.PoolAttributes];svcMgr.AthenaPoolCnvSvc.PoolAttributes=fixedAttrib" --inputHITSFile 'Merge.pool.root' --outputRDOFile 'RDO.pool.root' --outputESDFile 'ESD.pool.root' --outputAODFile 'AOD.pool.root' --outputNTUP_PHYSVALFile 'PhysValMon.root' --validationFlags 'doInDet,doJet,doMuon,doEgamma' --maxEvents '250' --jobNumber '1'</jobTransformCmd> - <group>ISF_Validation</group> - <chaindataset_info> - <jobTransformData/> - <chaindatasetName>Merge.pool.root</chaindatasetName> - <dataset_info> - <jobTransformData/> - <datasetName>/afs/cern.ch/atlas/offline/external/FullChainTest/long/rtt.fallback/MC12/MC12.108351.pythia_minbias.8TeV.HITS.pool.root</datasetName> <!-- dummy file --> - </dataset_info> - </chaindataset_info> - <queue>long</queue> - </jobTransform> - </chainElement> - - <parallel> - <chainElement> - <jobTransform userJobId="ATLFASTII_ttbar_3digireco_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>ATLFASTII_ttbar_3digireco_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTII_ttbar_3digireco InDetStandardPlots.root PhysValMon.root RDO_truth.root</jobTransformCmd> - <group>ISF_Validation_RecoRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - <chainElement> - <jobTransform userJobId="ATLFASTII_ttbar_3digireco_Compare_MCProd_G4"> - <doc>comparison to MC12 Geant4 references</doc> - <jobTransformJobName>ATLFASTII_ttbar_3digireco_Compare_MCProd_G4</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTII_ttbar_3digireco InDetStandardPlots.root PhysValMon.root RDO_truth.root</jobTransformCmd> - <group>ISF_Validation</group> - <queue>medium</queue> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/ttbar_G4_500evt.InDetStandardPlots.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/ttbar_G4_500evt.InDetStandardPlots.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.InDetStandardPlots.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/ttbar_G4_500evt.InDetStandardPlots.root/today.InDetStandardPlots.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/ttbar_G4_500evt.PhysValMon.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/ttbar_G4_500evt.PhysValMon.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.PhysValMon.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/ttbar_G4_500evt.PhysValMon.root/today.PhysValMon.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/ttbar_G4_500evt.RDO_truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/ttbar_G4_500evt.RDO_truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.RDO_truth.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/ttbar_G4_500evt.RDO_truth.root/today.RDO_truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - </jobTransform> - </chainElement> - <chainElement> - <jobTransform userJobId="ATLFASTII_ttbar_3digireco_Compare_MCProd_AFII"> - <doc>comparison to MC12 AtlfastII references</doc> - <jobTransformJobName>ISF_reco_ATLFASTII_ttbar_AFII</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTII_ttbar_3digireco InDetStandardPlots.root PhysValMon.root RDO_truth.root</jobTransformCmd> - <group>ISF_Validation</group> - <queue>medium</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/ttbar_ATLFASTII_500evt.InDetStandardPlots.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/ttbar_ATLFASTII_500evt.InDetStandardPlots.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.InDetStandardPlots.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/ttbar_ATLFASTII_500evt.InDetStandardPlots.root/today.InDetStandardPlots.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/ttbar_ATLFASTII_500evt.PhysValMon.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/ttbar_ATLFASTII_500evt.PhysValMon.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.PhysValMon.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/ttbar_ATLFASTII_500evt.PhysValMon.root/today.PhysValMon.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/ttbar_ATLFASTII_500evt.RDO_truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/ttbar_ATLFASTII_500evt.RDO_truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.RDO_truth.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/ttbar_ATLFASTII_500evt.RDO_truth.root/today.RDO_truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - </jobTransform> - </chainElement> - </parallel> - </sequential> - </parallel> - </sequential> - </chain> - - - <!--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - %% ATLFASTIIF ttbar FullChain - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - --> - <chain> - <chainName>FullChainTest_ATLFASTIIF_ttbar</chainName> - <abortOnError /> - <sequential> - <chainElement> - <jobTransform userJobId="ATLFASTIIF_ttbar_1sim"> - <doc>Tests detector functionality for ISF ATLFASTIIF using ttbar</doc> - <jobTransformJobName>ATLFASTIIF_ttbar_1sim</jobTransformJobName> - <jobTransformCmd>Sim_tf.py --conditionsTag 'default:OFLCOND-RUN12-SDR-19' --physicsList 'FTFP_BERT' --truthStrategy 'MC12' --simulator 'ATLFASTIIF' --postInclude 'default:PyJobTransforms/UseFrontier.py' 'G4AtlasTests/postInclude.DCubeTest.py' --DataRunNumber '222525' --geometryVersion 'default:ATLAS-R2-2015-03-01-00_VALIDATION' --inputEVNTFile "/afs/cern.ch/atlas/groups/Simulation/EVNT_files/mc12_valid.110401.PowhegPythia_P2012_ttbar_nonallhad.evgen.EVNT.e3099.01517252._000001.pool.root.1" --outputHITSFile "Hits.pool.root" --maxEvents 2000</jobTransformCmd> - <group>ISF_Validation_sim</group> - <queue>medium</queue> - <!-- - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MC15/dcube-ISF_ATLFASTIIF_ttbar.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MC15/ISF_ATLFASTIIF_ttbar.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>truth.root</argvalue> - </arg> - </test> - --> - </jobTransform> - <chainfileout>Hits.pool.root</chainfileout> - </chainElement> - <parallel> - <chainElement> - <jobTransform userJobId="ATLFASTIIF_ttbar_1sim_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>ATLFASTIIF_ttbar_1sim_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTIIF_ttbar_1sim truth.root Hits.pool.root</jobTransformCmd> - <group>ISF_Validation_HitsRegressionTests</group> - <queue>medium</queue> - </jobTransform> - </chainElement> - <chainElement> - <jobTransform userJobId="ATLFASTIIF_ttbar_1sim_Compare_MCProd_G4"> - <doc>comparison to ISF references</doc> - <jobTransformJobName>ATLFASTIIF_ttbar_1sim_Compare_MCProd_G4</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTIIF_ttbar_1sim</jobTransformCmd> - <group>ISF_Validation</group> - <queue>extrashort</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/ttbar_G4_500evt.truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/ttbar_G4_500evt.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/ttbar_G4_500evt.truth.root/today.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - </jobTransform> - </chainElement> - <chainElement> - <jobTransform userJobId="ATLFASTIIF_ttbar_1sim_Compare_MCProd_AFII"> - <doc>comparison to ISF references</doc> - <jobTransformJobName>ATLFASTIIF_ttbar_1sim_Compare_MCProd_AFII</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTIIF_ttbar_1sim</jobTransformCmd> - <group>ISF_Validation</group> - <queue>extrashort</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/ttbar_ATLFASTII_500evt.truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/ttbar_ATLFASTII_500evt.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/ttbar_ATLFASTII_500evt.truth.root/today.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - </jobTransform> - </chainElement> - <sequential> - - <!--Run Merge Job with 17.6.51 makes hit file compatible with 17.3.13--> - <chainElement> - <jobTransform userJobId="ATLFASTIIF_ttbar_2merge"> - <doc>Merge job for backward compatibility with 17.3.13</doc> - <jobTransformJobName>ATLFASTIIF_ttbar_2merge</jobTransformJobName> - <jobTransformCmd>HITSMerge_tf.py --inputHITSFile='Hits.pool.root' --outputHITS_MRGFile='Merge.pool.root' --maxEvents=-1 --skipEvents='0' --geometryVersion='ATLAS-R2-2015-03-01-00' --conditionsTag='OFLCOND-RUN12-SDR-19'</jobTransformCmd> - <group>ISF_Validation</group> - <chaindataset_info> - <jobTransformData/> - <chaindatasetName>Hits.pool.root</chaindatasetName> - <dataset_info> - <jobTransformData/> - <datasetName>/afs/cern.ch/atlas/offline/external/FullChainTest/long/rtt.fallback/MC12/MC12.108351.pythia_minbias.8TeV.HITS.pool.root</datasetName> - </dataset_info> - </chaindataset_info> - <queue>short</queue> - </jobTransform> - <chainfileout> - Merge.pool.root - </chainfileout> - </chainElement> - - <!-- Run Digitization + Reconstruction --> - <chainElement> - <jobTransform userJobId="ATLFASTIIF_ttbar_3digireco"> - <doc>reco</doc> - <jobTransformJobName>ATLFASTIIF_ttbar_3digireco</jobTransformJobName> - <jobTransformCmd>Reco_tf.py --digiSteeringConf 'StandardSignalOnlyTruth' --conditionsTag 'default:OFLCOND-MC15c-SDR-09' --postInclude 'default:RecJobTransforms/UseFrontier.py' 'HITtoRDO:DigitizationTests/postInclude.RDO_Plots.py' --autoConfiguration 'everything' --steering 'doRDO_TRIG' --geometryVersion 'default:ATLAS-R2-2015-03-01-00' --DataRunNumber '267599' --preExec 'all:rec.Commissioning.set_Value_and_Lock(True);from AthenaCommon.BeamFlags import jobproperties;jobproperties.Beam.numberOfCollisions.set_Value_and_Lock(0.0);from LArROD.LArRODFlags import larRODFlags;larRODFlags.NumberOfCollisions.set_Value_and_Lock(0);larRODFlags.nSamples.set_Value_and_Lock(4);larRODFlags.doOFCPileupOptimization.set_Value_and_Lock(True);larRODFlags.firstSample.set_Value_and_Lock(0);larRODFlags.useHighestGainAutoCorr.set_Value_and_Lock(True);' 'RAWtoESD:from CaloRec.CaloCellFlags import jobproperties;jobproperties.CaloCellFlags.doLArCellEmMisCalib=False;from InDetRecExample.InDetJobProperties import InDetFlags;InDetFlags.doStandardPlots.set_Value_and_Lock(True)' 'ESDtoAOD:TriggerFlags.AODEDMSet="AODFULL"' 'RAWtoESD:from InDetRecExample.InDetJobProperties import InDetFlags;InDetFlags.doSlimming.set_Value_and_Lock(False)' 'ESDtoAOD:from InDetRecExample.InDetJobProperties import InDetFlags;InDetFlags.doSlimming.set_Value_and_Lock(False)' --numberOfCavernBkg '0' --postExec 'all:CfgMgr.MessageSvc().setError+=["HepMcParticleLink"]' "ESDtoAOD:fixedAttrib=[s if \"CONTAINER_SPLITLEVEL = \'99\'\" not in s else \"\" for s in svcMgr.AthenaPoolCnvSvc.PoolAttributes];svcMgr.AthenaPoolCnvSvc.PoolAttributes=fixedAttrib" --inputHITSFile 'Merge.pool.root' --outputRDOFile 'RDO.pool.root' --outputESDFile 'ESD.pool.root' --outputAODFile 'AOD.pool.root' --outputNTUP_PHYSVALFile 'PhysValMon.root' --validationFlags 'doInDet,doJet,doMuon,doEgamma' --maxEvents '2000' --jobNumber '1'</jobTransformCmd> - <group>ISF_Validation</group> - <chaindataset_info> - <jobTransformData/> - <chaindatasetName>Merge.pool.root</chaindatasetName> - <dataset_info> - <jobTransformData/> - <datasetName>/afs/cern.ch/atlas/offline/external/FullChainTest/long/rtt.fallback/MC12/MC12.108351.pythia_minbias.8TeV.HITS.pool.root</datasetName> <!-- TODO: change this to ttbar dataset --> - </dataset_info> - </chaindataset_info> - <queue>long</queue> - </jobTransform> - <!-- not required to be on chainstore at the moment - <chainfileout>ESD.pool.root</chainfileout> - <chainfileout>AOD.pool.root</chainfileout> - <chainfileout>RecoValHists.root</chainfileout> - <chainfileout>InDetStandardPlots.root</chainfileout> - <chainfileout>PhysValMon.root</chainfileout>--> - </chainElement> - <parallel> - <chainElement> - <jobTransform userJobId="ATLFASTIIF_ttbar_3digireco_Reg"> - <doc>Regression test between builds</doc> - <jobTransformJobName>ATLFASTIIF_ttbar_3digireco_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTIIF_ttbar_3digireco InDetStandardPlots.root PhysValMon.root RDO_truth.root</jobTransformCmd> - <group>ISF_Validation_RecoRegressionTests</group> - <queue>medium</queue> - </jobTransform> - </chainElement> - <chainElement> - <jobTransform userJobId="ATLFASTIIF_ttbar_3digireco_Compare_MCProd_G4"> - <doc>comparison to MC12 Geant4 references</doc> - <jobTransformJobName>ATLFASTIIF_ttbar_3digireco_Compare_MCProd_G4</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTIIF_ttbar_3digireco InDetStandardPlots.root PhysValMon.root RDO_truth.root</jobTransformCmd> - <group>ISF_Validation</group> - <queue>medium</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/ttbar_G4_500evt.InDetStandardPlots.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/ttbar_G4_500evt.InDetStandardPlots.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.InDetStandardPlots.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/ttbar_G4_500evt.InDetStandardPlots.root/today.InDetStandardPlots.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/ttbar_G4_500evt.PhysValMon.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/ttbar_G4_500evt.PhysValMon.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.PhysValMon.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/ttbar_G4_500evt.PhysValMon.root/today.PhysValMon.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/ttbar_G4_500evt.RDO_truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/ttbar_G4_500evt.RDO_truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.RDO_truth.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/ttbar_G4_500evt.RDO_truth.root/today.RDO_truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="ATLFASTIIF_ttbar_3digireco_Compare_MCProd_AFII"> - <doc>comparison to MC12 ATLFASTII references</doc> - <jobTransformJobName>ATLFASTIIF_ttbar_3digireco_Compare_MCProd_AFII</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTIIF_ttbar_3digireco InDetStandardPlots.root PhysValMon.root RDO_truth.root</jobTransformCmd> - <group>ISF_Validation</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/ttbar_ATLFASTII_500evt.InDetStandardPlots.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/ttbar_ATLFASTII_500evt.InDetStandardPlots.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.InDetStandardPlots.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/ttbar_ATLFASTII_500evt.InDetStandardPlots.root/today.InDetStandardPlots.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/ttbar_ATLFASTII_500evt.PhysValMon.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/ttbar_ATLFASTII_500evt.PhysValMon.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.PhysValMon.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/ttbar_ATLFASTII_500evt.PhysValMon.root/today.PhysValMon.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/ttbar_ATLFASTII_500evt.RDO_truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/ttbar_ATLFASTII_500evt.RDO_truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.RDO_truth.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/ttbar_ATLFASTII_500evt.RDO_truth.root/today.RDO_truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - </jobTransform> - </chainElement> - - </parallel> - </sequential> - - </parallel> - </sequential> - - </chain> - - <!--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - %% ATLFASTIIF minbias FullChain - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - --> - <chain> - <chainName>FullChainTest_ATLFASTIIF_minbias</chainName> - <abortOnError /> - <sequential> - <chainElement> - <jobTransform userJobId="ATLFASTIIF_minbias_1sim"> - <doc>Tests detector functionality for ISF ATLFASTIIF using minbias</doc> - <jobTransformJobName>ATLFASTIIF_minbias_1sim</jobTransformJobName> - <jobTransformCmd>Sim_tf.py --conditionsTag 'default:OFLCOND-RUN12-SDR-19' --physicsList 'FTFP_BERT' --truthStrategy 'MC12' --simulator 'ATLFASTIIF' --postInclude 'default:PyJobTransforms/UseFrontier.py' 'G4AtlasTests/postInclude.DCubeTest.py' --DataRunNumber '222525' --geometryVersion 'default:ATLAS-R2-2015-03-01-00_VALIDATION' --inputEVNTFile "/afs/cern.ch/atlas/groups/Simulation/EVNT_files/mc12_valid.119994.Pythia8_A2MSTW2008LO_minbias_inelastic.evgen.EVNT.e3099.01517253._000001.pool.root.1" --outputHITSFile "Hits.pool.root" --maxEvents 2000</jobTransformCmd> - <group>ISF_Validation_sim</group> - <queue>medium</queue> - <!-- - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MC15/dcube-ISF_ATLFASTIIF_minbias.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MC15/ISF_ATLFASTIIF_minbias.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>truth.root</argvalue> - </arg> - </test> - --> - </jobTransform> - <chainfileout>Hits.pool.root</chainfileout> - </chainElement> - <parallel> - <chainElement> - <jobTransform userJobId="ATLFASTIIF_minbias_1sim_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>ATLFASTIIF_minbias_1sim_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTIIF_minbias_1sim truth.root Hits.pool.root</jobTransformCmd> - <group>ISF_Validation_HitsRegressionTests</group> - <queue>medium</queue> - </jobTransform> - </chainElement> - <chainElement> - <jobTransform userJobId="ATLFASTIIF_minbias_1sim_Compare_MCProd_AFII"> - <doc>comparison to ISF references</doc> - <jobTransformJobName>ATLFASTIIF_minbias_1sim_Compare_MCProd_AFII</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTIIF_minbias_1sim</jobTransformCmd> - <group>ISF_Validation</group> - <queue>extrashort</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/minbias_ATLFASTII_2000evt.truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/minbias_ATLFASTII_2000evt.truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/minbias_ATLFASTII_2000evt.truth.root/today.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - </jobTransform> - </chainElement> - <chainElement> - <jobTransform userJobId="ATLFASTIIF_minbias_1sim_Compare_MCProd_G4"> - <doc>comparison to ISF references</doc> - <jobTransformJobName>ATLFASTIIF_minbias_1sim_Compare_MCProd_G4</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTIIF_minbias_1sim</jobTransformCmd> - <group>ISF_Validation</group> - <queue>extrashort</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/minbias_G4_2000evt.truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/minbias_G4_2000evt.truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/minbias_G4_2000evt.truth.root/today.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - </jobTransform> - </chainElement> - <chainElement> - <jobTransform userJobId="ATLFASTIIF_minbias_1sim_Compare_MCProd_AFIIF"> - <doc>comparison to ISF references</doc> - <jobTransformJobName>ATLFASTIIF_minbias_1sim_Compare_MCProd_AFIIF</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTIIF_minbias_1sim</jobTransformCmd> - <group>ISF_Validation</group> - <queue>extrashort</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/minbias_ATLFASTIIF_2000evt.truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/minbias_ATLFASTIIF_2000evt.truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/minbias_ATLFASTIIF_2000evt.truth.root/today.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - </jobTransform> - </chainElement> - - <sequential> - - <!--Run Merge Job with 17.6.51 makes hit file compatible with 17.3.13--> - <chainElement> - <jobTransform userJobId="ATLFASTIIF_minbias_2merge"> - <doc>Merge job for backward compatibility with 17.3.13</doc> - <jobTransformJobName>ATLFASTIIF_minbias_2merge</jobTransformJobName> - <jobTransformCmd>HITSMerge_tf.py --inputHITSFile='Hits.pool.root' --outputHITS_MRGFile='Merge.pool.root' --maxEvents=-1 --skipEvents='0' --geometryVersion='ATLAS-R2-2015-03-01-00' --conditionsTag='OFLCOND-RUN12-SDR-19'</jobTransformCmd> - <group>ISF_Validation</group> - <chaindataset_info> - <jobTransformData/> - <chaindatasetName>Hits.pool.root</chaindatasetName> - <dataset_info> - <jobTransformData/> - <datasetName>/afs/cern.ch/atlas/offline/external/FullChainTest/long/rtt.fallback/MC12/MC12.108351.pythia_minbias.8TeV.HITS.pool.root</datasetName> - </dataset_info> - </chaindataset_info> - <queue>short</queue> - </jobTransform> - <chainfileout> - Merge.pool.root - </chainfileout> - </chainElement> - - <!-- Run Digitization + Reconstruction --> - <chainElement> - <jobTransform userJobId="ATLFASTIIF_minbias_3digireco"> - <doc>reco</doc> - <jobTransformJobName>ATLFASTIIF_minbias_3digireco</jobTransformJobName> - <jobTransformCmd>Reco_tf.py --digiSteeringConf 'StandardSignalOnlyTruth' --conditionsTag 'default:OFLCOND-MC15c-SDR-09' --postInclude 'default:RecJobTransforms/UseFrontier.py' 'HITtoRDO:DigitizationTests/postInclude.RDO_Plots.py' --autoConfiguration 'everything' --steering 'doRDO_TRIG' --geometryVersion 'default:ATLAS-R2-2015-03-01-00' --DataRunNumber '267599' --preExec 'all:rec.Commissioning.set_Value_and_Lock(True);from AthenaCommon.BeamFlags import jobproperties;jobproperties.Beam.numberOfCollisions.set_Value_and_Lock(0.0);from LArROD.LArRODFlags import larRODFlags;larRODFlags.NumberOfCollisions.set_Value_and_Lock(0);larRODFlags.nSamples.set_Value_and_Lock(4);larRODFlags.doOFCPileupOptimization.set_Value_and_Lock(True);larRODFlags.firstSample.set_Value_and_Lock(0);larRODFlags.useHighestGainAutoCorr.set_Value_and_Lock(True)' 'RAWtoESD:from CaloRec.CaloCellFlags import jobproperties;jobproperties.CaloCellFlags.doLArCellEmMisCalib=False;from InDetRecExample.InDetJobProperties import InDetFlags;InDetFlags.doStandardPlots.set_Value_and_Lock(True)' 'ESDtoAOD:TriggerFlags.AODEDMSet="AODFULL"' 'RAWtoESD:from InDetRecExample.InDetJobProperties import InDetFlags;InDetFlags.doSlimming.set_Value_and_Lock(False)' 'ESDtoAOD:from InDetRecExample.InDetJobProperties import InDetFlags;InDetFlags.doSlimming.set_Value_and_Lock(False)' --numberOfCavernBkg '0' --postExec 'all:CfgMgr.MessageSvc().setError+=["HepMcParticleLink"]' "ESDtoAOD:fixedAttrib=[s if \"CONTAINER_SPLITLEVEL = \'99\'\" not in s else \"\" for s in svcMgr.AthenaPoolCnvSvc.PoolAttributes];svcMgr.AthenaPoolCnvSvc.PoolAttributes=fixedAttrib" --inputHITSFile 'Merge.pool.root' --outputRDOFile 'RDO.pool.root' --outputESDFile 'ESD.pool.root' --outputAODFile 'AOD.pool.root' --outputNTUP_PHYSVALFile 'PhysValMon.root' --validationFlags 'doInDet,doJet,doMuon,doEgamma' --maxEvents '2000' --jobNumber '1'</jobTransformCmd> - <group>ISF_Validation</group> - <chaindataset_info> - <jobTransformData/> - <chaindatasetName>Merge.pool.root</chaindatasetName> - <dataset_info> - <jobTransformData/> - <datasetName>/afs/cern.ch/atlas/offline/external/FullChainTest/long/rtt.fallback/MC12/MC12.108351.pythia_minbias.8TeV.HITS.pool.root</datasetName> <!-- TODO: change this to minbias dataset --> - </dataset_info> - </chaindataset_info> - <queue>long</queue> - </jobTransform> - </chainElement> - <parallel> - <chainElement> - <jobTransform userJobId="ATLFASTIIF_minbias_3digireco_Reg"> - <doc>Regression test between builds</doc> - <jobTransformJobName>ATLFASTIIF_minbias_3digireco_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTIIF_minbias_3digireco InDetStandardPlots.root PhysValMon.root RDO_truth.root</jobTransformCmd> - <group>ISF_Validation_RecoRegressionTests</group> - <queue>medium</queue> - </jobTransform> - </chainElement> - <chainElement> - <jobTransform userJobId="ATLFASTIIF_minbias_3digireco_Compare_MCProd_G4"> - <doc>comparison to MC12 ATLFASTII references</doc> - <jobTransformJobName>ATLFASTIIF_minbias_3digireco_Compare_MCProd_G4</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTIIF_minbias_3digireco InDetStandardPlots.root PhysValMon.root RDO_truth.root</jobTransformCmd> - <group>ISF_Validation</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/minbias_G4_2000evt.InDetStandardPlots.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/minbias_G4_2000evt.InDetStandardPlots.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.InDetStandardPlots.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/minbias_G4_2000evt.InDetStandardPlots.root/today.InDetStandardPlots.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/minbias_G4_2000evt.PhysValMon.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/minbias_G4_2000evt.PhysValMon.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.PhysValMon.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/minbias_G4_2000evt.PhysValMon.root/today.PhysValMon.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/minbias_G4_2000evt.RDO_truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/minbias_G4_2000evt.RDO_truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.RDO_truth.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/minbias_G4_2000evt.RDO_truth.root/today.RDO_truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - </jobTransform> - </chainElement> - <chainElement> - <jobTransform userJobId="ATLFASTIIF_minbias_3digireco_Compare_MCProd_AFII"> - <doc>comparison to MC12 ATLFASTII references</doc> - <jobTransformJobName>ATLFASTIIF_minbias_3digireco_Compare_MCProd_AFII</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTIIF_minbias_3digireco InDetStandardPlots.root PhysValMon.root RDO_truth.root</jobTransformCmd> - <group>ISF_Validation</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/minbias_ATLFASTII_2000evt.InDetStandardPlots.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/minbias_ATLFASTII_2000evt.InDetStandardPlots.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.InDetStandardPlots.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/minbias_ATLFASTII_2000evt.InDetStandardPlots.root/today.InDetStandardPlots.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/minbias_ATLFASTII_2000evt.PhysValMon.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/minbias_ATLFASTII_2000evt.PhysValMon.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.PhysValMon.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/minbias_ATLFASTII_2000evt.PhysValMon.root/today.PhysValMon.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/minbias_ATLFASTII_2000evt.RDO_truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/minbias_ATLFASTII_2000evt.RDO_truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.RDO_truth.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/minbias_ATLFASTII_2000evt.RDO_truth.root/today.RDO_truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="ATLFASTIIF_minbias_3digireco_Compare_MCProd_AFIIF"> - <doc>comparison to MC12 ATLFASTII references</doc> - <jobTransformJobName>ATLFASTIIF_minbias_3digireco_Compare_MCProd_AFIIF</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ATLFASTIIF_minbias_3digireco InDetStandardPlots.root PhysValMon.root RDO_truth.root</jobTransformCmd> - <group>ISF_Validation</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/minbias_ATLFASTIIF_2000evt.InDetStandardPlots.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/minbias_ATLFASTIIF_2000evt.InDetStandardPlots.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.InDetStandardPlots.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/minbias_ATLFASTIIF_2000evt.InDetStandardPlots.root/today.InDetStandardPlots.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/minbias_ATLFASTIIF_2000evt.PhysValMon.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/minbias_ATLFASTIIF_2000evt.PhysValMon.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.PhysValMon.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/minbias_ATLFASTIIF_2000evt.PhysValMon.root/today.PhysValMon.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/minbias_ATLFASTIIF_2000evt.RDO_truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>MCProd/minbias_ATLFASTIIF_2000evt.RDO_truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.RDO_truth.root</argvalue> - </arg> - <keepFilePattern>DCube-MCProd/minbias_ATLFASTIIF_2000evt.RDO_truth.root/today.RDO_truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - </jobTransform> - </chainElement> - - - </parallel> - </sequential> - - </parallel> - </sequential> - - </chain> - - - - </jobList> - - - <jobGroups> - <jobGroup name="ISF_Validation" parent="Top"> - <keepFilePattern>*.root</keepFilePattern> - <keepFilePattern>*.txt</keepFilePattern> - <keepFilePattern>*.out</keepFilePattern> - <keepFilePattern>*.html</keepFilePattern> - <keepFilePattern>prof/*.html</keepFilePattern> - <keepFilePattern>*.php</keepFilePattern> - <keepFilePattern>*log</keepFilePattern> - <keepFilePattern>log*</keepFilePattern> - <keepFilePattern>*.diffPool</keepFilePattern> - <keepFilePattern>test.athena.profile</keepFilePattern> - </jobGroup> - <jobGroup name="ISF_Validation_HitsRegressionTests" parent="Top"> - <keepFilePattern>*.root</keepFilePattern> - <keepFilePattern>*.txt</keepFilePattern> - <keepFilePattern>*.out</keepFilePattern> - <keepFilePattern>*.html</keepFilePattern> - <keepFilePattern>prof/*.html</keepFilePattern> - <keepFilePattern>*.php</keepFilePattern> - <keepFilePattern>*log</keepFilePattern> - <keepFilePattern>*.diffPool</keepFilePattern> - <keepFilePattern>*.diffRoot</keepFilePattern> - <keepFilePattern>test.athena.profile</keepFilePattern> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>HITS_RegressionTestDiffPoolRunner</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>today.Hits.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>yesterday.Hits.pool.root</argvalue> - </arg> - <keepFilePattern>today.Hits.pool.root_yesterday.Hits.pool.root.diffPool</keepFilePattern> - </test> - <test position="2"> - <modulename>FlexibleDiffPoolFilesRunner</modulename> - <testname>FlexibleDiffPoolFilesRunner</testname> - <testidentifier>HITS_RegressionTestDiffRootRunner</testidentifier> - <arg> - <argname>platformDependent</argname> - <argvalue>True</argvalue> - </arg> - <arg> - <argname>optionString</argname> - <argvalue>--ignore-leaves RecoTimingObj_p1_EVNTtoHITS_timings</argvalue> - </arg> - <arg> - <argname>doDetailedChecks</argname> - <argvalue>True</argvalue> - </arg> - <arg> - <argname>fileName</argname> - <argvalue>today.Hits.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>yesterday.Hits.pool.root</argvalue> - </arg> - <arg> - <argname>testOutputFile</argname> - <argvalue>today.Hits.pool.root_yesterday.Hits.pool.root.diffRoot</argvalue> - </arg> - <keepFilePattern>today.Hits.pool.root_yesterday.Hits.pool.root.diffRoot</keepFilePattern> - </test> - <test position="3"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/HITS_truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>yesterday.truth.root</argvalue> - </arg> - <arg> - <argname>localRefFile</argname> - <argvalue>True</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.truth.root</argvalue> - </arg> - <keepFilePattern>DCube-yesterday.truth.root/today.truth.root.dcube.xml.php</keepFilePattern> - </test> - - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - </jobGroup> - - <jobGroup name="ISF_Validation_RecoRegressionTests" parent="Top"> - <keepFilePattern>*.root</keepFilePattern> - <keepFilePattern>*.txt</keepFilePattern> - <keepFilePattern>*.out</keepFilePattern> - <keepFilePattern>*.html</keepFilePattern> - <keepFilePattern>prof/*.html</keepFilePattern> - <keepFilePattern>*.php</keepFilePattern> - <keepFilePattern>*log</keepFilePattern> - <keepFilePattern>log.*</keepFilePattern> - <keepFilePattern>*.diffPool</keepFilePattern> - <keepFilePattern>test.athena.profile</keepFilePattern> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/RDO_truth.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>yesterday.RDO_truth.root</argvalue> - </arg> - <arg> - <argname>localRefFile</argname> - <argvalue>True</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.RDO_truth.root</argvalue> - </arg> - <keepFilePattern>DCube-yesterday.RDO_truth.root/today.RDO_truth.root.dcube.xml.php</keepFilePattern> - </test> - <test position="2"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/PhysValMon.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>yesterday.PhysValMon.root</argvalue> - </arg> - <arg> - <argname>localRefFile</argname> - <argvalue>True</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.PhysValMon.root</argvalue> - </arg> - <keepFilePattern>DCube-yesterday.PhysValMon.root/today.PhysValMon.root.dcube.xml.php</keepFilePattern> - </test> - <test position="3"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <arg> - <argname>DCubeCfg</argname> - <argvalue>MCProd/InDetStandardPlots.root.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>yesterday.InDetStandardPlots.root</argvalue> - </arg> - <arg> - <argname>localRefFile</argname> - <argvalue>True</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.InDetStandardPlots.root</argvalue> - </arg> - <keepFilePattern>DCube-yesterday.InDetStandardPlots.root/today.InDetStandardPlots.root.dcube.xml.php</keepFilePattern> - </test> - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - </jobGroup> - - <jobGroup name="ISF_Validation_sim" parent="Top"> - <keepFilePattern>*.root</keepFilePattern> - <keepFilePattern>*.txt</keepFilePattern> - <keepFilePattern>*.out</keepFilePattern> - <keepFilePattern>*.html</keepFilePattern> - <keepFilePattern>prof/*.html</keepFilePattern> - <keepFilePattern>*.php</keepFilePattern> - <keepFilePattern>*log</keepFilePattern> - <keepFilePattern>log.*</keepFilePattern> - <keepFilePattern>*.diffPool</keepFilePattern> - <keepFilePattern>test.athena.profile</keepFilePattern> - <test> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>fileGrepper_results.txt</outputFile> - <testidentifier>FileGrepperA</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>log.EVNTtoHITS</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- search pattern block --> - <fileGrepperSearchPattern> - <fileGrepperPattern>leaving with code 0</fileGrepperPattern> - </fileGrepperSearchPattern> - <!-- veto pattern block --> - <fileGrepperVetoPattern> - <fileGrepperPattern>(segmentation violation|bus error|Event was aborted)</fileGrepperPattern> - </fileGrepperVetoPattern> - <fileGrepperVetoPattern> - <!-- This looks for StuckTrack that is not due to a CSCspacer --> - <fileGrepperPattern>\*\*\* G4Exception : StuckTrack(?!([^\n]*\n){4}([^\n]*?)CSCspacer)</fileGrepperPattern> - <compileFlags>S</compileFlags> - </fileGrepperVetoPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>fileGrepper_results.txt</keepFilePattern> - </test> - <test> <!-- Special Test for InfiniteLoop G4Exceptions should remove once it starts failing.. --> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>InfiniteLoopGrepper_results.txt</outputFile> - <testidentifier>InfiniteLoopGrepper</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>log.EVNTtoHITS</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- veto pattern block --> - <fileGrepperVetoPattern> - <fileGrepperPattern>G4Exception : InfiniteLoop</fileGrepperPattern> - <compileFlags>S</compileFlags> - </fileGrepperVetoPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>InfiniteLoopGrepper_results.txt</keepFilePattern> - </test> - <test> <!-- Special Test for StrangePDG G4Exceptions should remove once it starts failing.. --> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>StrangePDGGrepper_results.txt</outputFile> - <testidentifier>StrangePDGGrepper</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>log.EVNTtoHITS</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- veto pattern block --> - <fileGrepperVetoPattern> - <fileGrepperPattern>G4Exception : PART102</fileGrepperPattern> - <compileFlags>S</compileFlags> - </fileGrepperVetoPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>StrangePDGGrepper_results.txt</keepFilePattern> - </test> - <test> <!-- Special Test for uninitialized random stream seeds should remove once it starts failing.. --> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>DefaultSeedsGrepper_results.txt</outputFile> - <testidentifier>DefaultSeedsGrepper</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>log.EVNTtoHITS</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- veto pattern block --> - <fileGrepperVetoPattern> - <fileGrepperPattern>DEFAULT seeds</fileGrepperPattern> - <compileFlags>S</compileFlags> - </fileGrepperVetoPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>DefaultSeedsGrepper_results.txt</keepFilePattern> - </test> - - </jobGroup> - - </jobGroups> - - </rtt> - -</unifiedTestConfiguration> diff --git a/Simulation/ISF/ISF_Validation/test/test_MC16_ATLFASTIIF_ttbar.sh b/Simulation/ISF/ISF_Validation/test/test_MC16_ATLFASTIIF_ttbar.sh new file mode 100755 index 0000000000000000000000000000000000000000..4317a8a2ddeb0fba9ff7988260fc9e2db97d752b --- /dev/null +++ b/Simulation/ISF/ISF_Validation/test/test_MC16_ATLFASTIIF_ttbar.sh @@ -0,0 +1,33 @@ +#!/bin/sh +# +# art-description: MC16-style simulation using ATLFASTIIF +# art-type: build +# art-include: 21.3/Athena +# art-include: 21.9/Athena +# art-include: master/Athena + +# MC16 setup +# ATLAS-R2-2016-01-00-01 and OFLCOND-MC16-SDR-14 + +Sim_tf.py \ +--conditionsTag 'default:OFLCOND-MC16-SDR-14' \ +--physicsList 'FTFP_BERT_ATL' \ +--truthStrategy 'MC15aPlus' \ +--simulator 'ATLFASTIIF' \ +--postInclude 'default:PyJobTransforms/UseFrontier.py' 'EVNTtoHITS:G4AtlasTests/postInclude.DCubeTest.py' \ +--preExec 'EVNTtoHITS:simFlags.TightMuonStepping=True' \ +--DataRunNumber '284500' \ +--geometryVersion 'default:ATLAS-R2-2016-01-00-01' \ +--inputEVNTFile "/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/SimCoreTests/valid1.410000.PowhegPythiaEvtGen_P2012_ttbar_hdamp172p5_nonallhad.evgen.EVNT.e4993.EVNT.08166201._000012.pool.root.1" \ +--outputHITSFile "Hits.pool.root" \ +--maxEvents 2000 \ +--imf False + +echo "art-result: $? simulation" + +ArtPackage=$1 +ArtJobName=$2 +# TODO This is a regression test I think. We would also need to compare these files to fixed references +art.py compare grid --entries 10 ${ArtPackage} ${ArtJobName} + +echo "art-result: $? regression" diff --git a/Simulation/ISF/ISF_Validation/test/test_MC16_ATLFASTII_ttbar.sh b/Simulation/ISF/ISF_Validation/test/test_MC16_ATLFASTII_ttbar.sh new file mode 100755 index 0000000000000000000000000000000000000000..b9386bb4c1aef0b15955ce30b51977877c4b2271 --- /dev/null +++ b/Simulation/ISF/ISF_Validation/test/test_MC16_ATLFASTII_ttbar.sh @@ -0,0 +1,37 @@ +#!/bin/sh +# +# art-description: MC16-style simulation using ATLFASTII +# art-include: 21.0/Athena +# art-include: 21.3/Athena +# art-include: 21.9/Athena +# art-include: master/Athena +# art-type: grid +# art-output: test.HITS.pool.root +# art-output: truth.root + +# MC16 setup +# ATLAS-R2-2016-01-00-01 and OFLCOND-MC16-SDR-14 + +Sim_tf.py \ +--conditionsTag 'default:OFLCOND-MC16-SDR-14' \ +--physicsList 'FTFP_BERT_ATL' \ +--truthStrategy 'MC15aPlus' \ +--simulator 'ATLFASTII' \ +--postInclude 'default:PyJobTransforms/UseFrontier.py' 'EVNTtoHITS:G4AtlasTests/postInclude.DCubeTest.py' \ +--preInclude 'EVNTtoHITS:SimulationJobOptions/preInclude.BeamPipeKill.py' \ +--preExec 'EVNTtoHITS:simFlags.TightMuonStepping=True' \ +--DataRunNumber '284500' \ +--geometryVersion 'default:ATLAS-R2-2016-01-00-01' \ +--inputEVNTFile "/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/SimCoreTests/valid1.410000.PowhegPythiaEvtGen_P2012_ttbar_hdamp172p5_nonallhad.evgen.EVNT.e4993.EVNT.08166201._000012.pool.root.1" \ +--outputHITSFile "test.Hits.pool.root" \ +--maxEvents 250 \ +--imf False + +echo "art-result: $? simulation" + +ArtPackage=$1 +ArtJobName=$2 +# TODO This is a regression test I think. We would also need to compare these files to fixed references +art.py compare grid --entries 10 ${ArtPackage} ${ArtJobName} + +echo "art-result: $? regression" diff --git a/Simulation/ISF/ISF_Validation/test/test_MC16_FullG4_QS_ttbar.sh b/Simulation/ISF/ISF_Validation/test/test_MC16_FullG4_QS_ttbar.sh new file mode 100755 index 0000000000000000000000000000000000000000..de5226928208e638326096a21db33a71c2e323d9 --- /dev/null +++ b/Simulation/ISF/ISF_Validation/test/test_MC16_FullG4_QS_ttbar.sh @@ -0,0 +1,36 @@ +#!/bin/sh +# +# art-description: MC16-style simulation using FullG4_LongLived +# art-include: 21.0/Athena +# art-include: 21.3/Athena +# art-include: 21.9/Athena +# art-include: master/Athena +# art-type: grid +# art-output: test.HITS.pool.root +# art-output: truth.root + +# MC16 setup +# ATLAS-R2-2016-01-00-01 and OFLCOND-MC16-SDR-14 +Sim_tf.py \ +--conditionsTag 'default:OFLCOND-MC16-SDR-14' \ +--physicsList 'FTFP_BERT_ATL' \ +--truthStrategy 'MC15aPlus' \ +--simulator 'FullG4_LongLived' \ +--postInclude 'default:PyJobTransforms/UseFrontier.py' \ +--preInclude 'EVNTtoHITS:SimulationJobOptions/preInclude.BeamPipeKill.py,SimulationJobOptions/preInclude.FrozenShowersFCalOnly.py' \ +--preExec 'EVNTtoHITS:simFlags.TightMuonStepping=True' \ +--DataRunNumber '284500' \ +--geometryVersion 'default:ATLAS-R2-2016-01-00-01' \ +--inputEVNTFile "/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/SimCoreTests/valid1.410000.PowhegPythiaEvtGen_P2012_ttbar_hdamp172p5_nonallhad.evgen.EVNT.e4993.EVNT.08166201._000012.pool.root.1" \ +--outputHITSFile "Hits.pool.root" \ +--maxEvents 4 \ +--imf False + +echo "art-result: $? simulation" + +ArtPackage=$1 +ArtJobName=$2 +# TODO This is a regression test I think. We would also need to compare these files to fixed references +art.py compare grid --entries 4 ${ArtPackage} ${ArtJobName} + +echo "art-result: $? regression" diff --git a/Simulation/ISF/ISF_Validation/test/test_MC16_FullG4_ttbar.sh b/Simulation/ISF/ISF_Validation/test/test_MC16_FullG4_ttbar.sh new file mode 100755 index 0000000000000000000000000000000000000000..99060e2c9a879eadf28afbf9d5d926fc91831777 --- /dev/null +++ b/Simulation/ISF/ISF_Validation/test/test_MC16_FullG4_ttbar.sh @@ -0,0 +1,36 @@ +#!/bin/sh +# +# art-description: MC16-style simulation using FullG4 +# art-include: 21.0/Athena +# art-include: 21.3/Athena +# art-include: 21.9/Athena +# art-include: master/Athena +# art-type: grid +# art-output: test.HITS.pool.root +# art-output: truth.root + +# MC16 setup +# ATLAS-R2-2016-01-00-01 and OFLCOND-MC16-SDR-14 +Sim_tf.py \ +--conditionsTag 'default:OFLCOND-MC16-SDR-14' \ +--physicsList 'FTFP_BERT_ATL' \ +--truthStrategy 'MC15aPlus' \ +--simulator 'FullG4' \ +--postInclude 'default:PyJobTransforms/UseFrontier.py' \ +--preInclude 'EVNTtoHITS:SimulationJobOptions/preInclude.BeamPipeKill.py,SimulationJobOptions/preInclude.FrozenShowersFCalOnly.py' \ +--preExec 'EVNTtoHITS:simFlags.TightMuonStepping=True' \ +--DataRunNumber '284500' \ +--geometryVersion 'default:ATLAS-R2-2016-01-00-01' \ +--inputEVNTFile "/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/SimCoreTests/valid1.410000.PowhegPythiaEvtGen_P2012_ttbar_hdamp172p5_nonallhad.evgen.EVNT.e4993.EVNT.08166201._000012.pool.root.1" \ +--outputHITSFile "Hits.pool.root" \ +--maxEvents 4 \ +--imf False + +echo "art-result: $? simulation" + +ArtPackage=$1 +ArtJobName=$2 +# TODO This is a regression test I think. We would also need to compare these files to fixed references +art.py compare grid --entries 4 ${ArtPackage} ${ArtJobName} + +echo "art-result: $? regression" diff --git a/Simulation/ISF/ISF_Validation/test/test_MC16_FullG4_ttbar_2evts.sh b/Simulation/ISF/ISF_Validation/test/test_MC16_FullG4_ttbar_2evts.sh new file mode 100755 index 0000000000000000000000000000000000000000..83ff94ba13b5c2eb2104c56108d85706eaf98d27 --- /dev/null +++ b/Simulation/ISF/ISF_Validation/test/test_MC16_FullG4_ttbar_2evts.sh @@ -0,0 +1,29 @@ +#!/bin/sh +# +# art-description: MC16-style simulation using FullG4 +# art-type: build +# art-include: 21.0/Athena +# art-include: 21.0/AthSimulation +# art-include: 21.3/Athena +# art-include: 21.9/Athena +# art-include: master/Athena +# art-include: master/AthSimulation + +# MC16 setup +# ATLAS-R2-2016-01-00-01 and OFLCOND-MC16-SDR-14 +export TRF_ECHO=1 +Sim_tf.py \ +--conditionsTag 'default:OFLCOND-MC16-SDR-14' \ +--physicsList 'FTFP_BERT_ATL' \ +--truthStrategy 'MC15aPlus' \ +--simulator 'FullG4' \ +--postInclude 'default:PyJobTransforms/UseFrontier.py' \ +--preInclude 'EVNTtoHITS:SimulationJobOptions/preInclude.BeamPipeKill.py,SimulationJobOptions/preInclude.FrozenShowersFCalOnly.py' \ +--preExec 'EVNTtoHITS:simFlags.TightMuonStepping=True' \ +--DataRunNumber '284500' \ +--geometryVersion 'default:ATLAS-R2-2016-01-00-01' \ +--inputEVNTFile "/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/SimCoreTests/valid1.410000.PowhegPythiaEvtGen_P2012_ttbar_hdamp172p5_nonallhad.evgen.EVNT.e4993.EVNT.08166201._000012.pool.root.1" \ +--outputHITSFile "Hits.pool.root" \ +--maxEvents 2 + +echo "art-result: $? simulation" diff --git a/Simulation/Tests/SimCoreTests/test/SimCoreTests_TestConfiguration.xml b/Simulation/Tests/SimCoreTests/test/SimCoreTests_TestConfiguration.xml deleted file mode 100644 index 4c45acbfbff925aa35b9f94e1e1d7d1b1b2d9c03..0000000000000000000000000000000000000000 --- a/Simulation/Tests/SimCoreTests/test/SimCoreTests_TestConfiguration.xml +++ /dev/null @@ -1,2066 +0,0 @@ -<!DOCTYPE unifiedTestConfiguration SYSTEM "http://www.hep.ucl.ac.uk/atlas/AtlasTesting/DTD/unifiedTestConfiguration.dtd"> -<unifiedTestConfiguration> - <rtt xmlns="http://www.hep.ucl.ac.uk/atlas/AtlasTesting/rtt"> - <rttContactPerson>John Chapman (chapman@hep.phy.cam.ac.uk)</rttContactPerson> - <mailto>atlas-simulation-testreports@cern.ch</mailto> - - <!-- - don't forget to check the xml file with - python /afs/cern.ch/user/r/rtt/public/validateXML.py SimCoreTests_TestConfiguration.xml - - and to update the twiki page: - https://twiki.cern.ch/twiki/bin/viewauth/AtlasComputing/SimCoreTests - - --> - - <jobList> - - <classification> - <displayClass>OfflineValidation</displayClass> - <displayProcess>Simul</displayProcess> - <displayComponent>Athena-Core</displayComponent> - </classification> - - <chain> - <chainName>RegressionTest_TestBeamSim</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="TestBeamSim"> - <doc>Tile TB Simulation</doc> - <jobTransformJobName>TestBeamSim</jobTransformJobName> - <jobTransformCmd>TestBeam_tf.py --outputHITSFile 'test.HITS.pool.root' --maxEvents '10' --Eta '0.35' --testBeamConfig 'tbtile' --postInclude 'PyJobTransforms/UseFrontier.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>TestBeamSim_HITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/TestBeamSim.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_TestBeamSim.HITS.pool.root.diffPool</keepFilePattern> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="TestBeamSim_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>TestBeamSim_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py TestBeamSim</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <chain> - <chainName>RegressionTest_Atlas2010GeomSim</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="Atlas2010GeomSim"> - <doc>Reading gen events, single particle</doc> - <jobTransformJobName>Atlas2010GeomSim</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --inputEVNTFile '/afs/cern.ch/atlas/offline/ProdData/16.6.X/16.6.7.Y/mu_E200_eta0-25.evgen.pool.root' --outputHITSFile 'test.HITS.pool.root' --maxEvents '10' --skipEvents '0' --randomSeed '10' --geometryVersion 'ATLAS-R1-2010-02-00-00' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '155697' --physicsList 'FTFP_BERT' --postInclude 'PyJobTransforms/UseFrontier.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>Atlas2010GeomSim_HITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/Atlas2010GeomSim.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_Atlas2010GeomSim.HITS.pool.root.diffPool</keepFilePattern> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="Atlas2010GeomSim_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>Atlas2010GeomSim_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py Atlas2010GeomSim</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <chain> - <chainName>RegressionTest_Atlas2011GeomSim</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="Atlas2011GeomSim"> - <doc>Reading gen events, single particle</doc> - <jobTransformJobName>Atlas2011GeomSim</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --inputEVNTFile '/afs/cern.ch/atlas/offline/ProdData/16.6.X/16.6.7.Y/mu_E200_eta0-25.evgen.pool.root' --outputHITSFile 'test.HITS.pool.root' --maxEvents '10' --skipEvents '0' --randomSeed '10' --geometryVersion 'ATLAS-R1-2011-02-00-00' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '180164' --physicsList 'FTFP_BERT' --postInclude 'PyJobTransforms/UseFrontier.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>Atlas2011GeomSim_HITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/Atlas2011GeomSim.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_Atlas2011GeomSim.HITS.pool.root.diffPool</keepFilePattern> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="Atlas2011GeomSim_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>Atlas2011GeomSim_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py Atlas2011GeomSim</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <chain> - <chainName>RegressionTest_Atlas2012GeomSim</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="Atlas2012GeomSim"> - <doc>Reading gen events, single particle</doc> - <jobTransformJobName>Atlas2012GeomSim</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --inputEVNTFile '/afs/cern.ch/atlas/offline/ProdData/16.6.X/16.6.7.Y/mu_E200_eta0-25.evgen.pool.root' --outputHITSFile 'test.HITS.pool.root' --maxEvents '10' --skipEvents '0' --randomSeed '10' --geometryVersion 'ATLAS-R1-2012-03-00-00' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '212272' --physicsList 'FTFP_BERT' --postInclude 'PyJobTransforms/UseFrontier.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>Atlas2012GeomSim_HITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/Atlas2012GeomSim.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_Atlas2012GeomSim.HITS.pool.root.diffPool</keepFilePattern> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="Atlas2012GeomSim_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>Atlas2012GeomSim_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py Atlas2012GeomSim</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <chain> - <chainName>RegressionTest_TTbarSim</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="TTbarSim"> - <doc>Reading gen events, full physics</doc> - <jobTransformJobName>T1_McAtNlo_Jimmy</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --inputEVNTFile '/afs/cern.ch/atlas/offline/ProdData/16.6.X/16.6.7.Y/ttbar_muplusjets-pythia6-7000.evgen.pool.root' --outputHITSFile 'test.HITS.pool.root' --maxEvents '4' --skipEvents '0' --randomSeed '10' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '222525' --physicsList 'FTFP_BERT' --postInclude 'PyJobTransforms/UseFrontier.py' 'AtlasG4Tf:G4AtlasTests/postInclude.DCubeTest.py' --preExec 'AtlasG4Tf:simFlags.ReleaseGeoModel=False;' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>TTbarSimHITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/TTbarSim.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_TTbarSim.HITS.pool.root.diffPool</keepFilePattern> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="TTbarSim_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>TTbarSim_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py TTbarSim</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <chain> - <chainName>TimingTest_TTbarSim</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="TTbarSimTiming"> - <doc>Reading gen events, full physics, with timing information in output</doc> - <jobTransformJobName>T1_McAtNlo_Jimmy</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --inputEVNTFile '/afs/cern.ch/atlas/offline/ProdData/16.6.X/16.6.7.Y/ttbar_muplusjets-pythia6-7000.evgen.pool.root' --outputHITSFile 'test.HITS.pool.root' --maxEvents '10' --skipEvents '0' --randomSeed '10' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '222525' --physicsList 'FTFP_BERT' --postInclude 'PyJobTransforms/UseFrontier.py' --preInclude 'AtlasG4Tf:LArG4FastSimulation/LArG4FastSimulation_setupTimer_jobOptions.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>medium</queue> - - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>TTbarSimTiming_DCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>20.7.X/dcube_TTbarSimTiming.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>20.7.X/TTbarSimTiming.timing_histos.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>timing_histos.root</argvalue> - </arg> - <keepFilePattern>DCube-20.7.X/TTbarSimTiming.timing_histos.root/timing_histos.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <chain> - <chainName>RegressionTest_FtfpBertAtlTest</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="FtfpBertAtlTest"> - <doc>Reading gen events, full physics</doc> - <jobTransformJobName>J2_jetjet-pythia6</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --inputEVNTFile '/afs/cern.ch/atlas/offline/ProdData/16.6.X/16.6.7.Y/J2_jetjet-pythia6-7000.evgen.pool.root' --outputHITSFile 'test.HITS.pool.root' --maxEvents '5' --skipEvents '0' --randomSeed '10' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '222525' --physicsList 'FTFP_BERT_ATL' --postInclude 'PyJobTransforms/UseFrontier.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>medium</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>FtfpBertAtlTestHITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/FtfpBertAtlTest.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_FtfpBertAtlTest.HITS.pool.root.diffPool</keepFilePattern> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="FtfpBertAtlTest_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>FtfpBertAtlTest_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py FtfpBertAtlTest</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - </jobTransform> - - </chainElement> - </sequential> - </chain> - - - - <chain> - <chainName>RegressionTest_NeutronCutTest</chainName> - <abortOnError /> - <sequential> - <chainElement> - - <jobTransform userJobId="NeutronCutTest"> - <doc>Reading gen events, full physics</doc> - <jobTransformJobName>A3_Ztautau-NeutronCut</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --inputEVNTFile '/afs/cern.ch/atlas/offline/ProdData/16.6.X/16.6.7.Y/A3_Ztautau_filter-pythia6-7000.evgen.pool.root' --outputHITSFile 'test.HITS.pool.root' --maxEvents '5' --skipEvents '0' --randomSeed '10' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '222525' --physicsList 'FTFP_BERT' --preInclude 'SimulationJobOptions/preInclude.G4SignalCavern.py' --postInclude 'PyJobTransforms/UseFrontier.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>medium</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>NeutronCutTestHITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/NeutronCutTest.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_NeutronCutTest.HITS.pool.root.diffPool</keepFilePattern> - </test> - </jobTransform> - - </chainElement> - - <chainElement> - <jobTransform userJobId="NeutronCutTest_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>NeutronCutTest_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py NeutronCutTest</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - </sequential> - </chain> - - - <chain> - <chainName>RegressionTest_QgsBicTest</chainName> - <abortOnError /> - <sequential> - <chainElement> - <jobTransform userJobId="QgsBicTest"> - <doc>Reading gen events, full physics</doc> - <jobTransformJobName>SusyQgsBic</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --inputEVNTFile '/afs/cern.ch/atlas/offline/ProdData/16.6.X/16.6.7.Y/susy_SU3-herwigpp-7000.evgen.pool.root' --outputHITSFile 'test.HITS.pool.root' --maxEvents '5' --skipEvents '0' --randomSeed '42' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '222525' --physicsList 'QGSP_BIC' --postInclude 'PyJobTransforms/UseFrontier.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>medium</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>QgsBicTestHITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/QgsBicTest.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_QgsBicTest.HITS.pool.root.diffPool</keepFilePattern> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="QgsBicTest_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>QgsBicTest_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py QgsBicTest</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - </jobTransform> - - </chainElement> - </sequential> - </chain> - - - <chain> - <chainName>RegressionTest_HeavyIonSim</chainName> - <abortOnError /> - <sequential> - <chainElement> - <jobTransform userJobId="HeavyIonSim"> - <doc>Reading gen events, lead ions peripheral simulation (low multiplicity)</doc> - <jobTransformJobName>HeavyIons_Simulation</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --inputEVNTFile '/afs/cern.ch/atlas/offline/ProdData/16.6.X/16.6.7.Y/pbpb_Peripheral-hijing-5500.evgen.pool.root' --outputHITSFile 'test.HITS.pool.root' --maxEvents '1' --skipEvents '4' --randomSeed '10' --geometryVersion 'ATLAS-R1-2012-03-00-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '210184' --physicsList 'FTFP_BERT' --postInclude 'PyJobTransforms/UseFrontier.py' 'AtlasG4Tf:SimulationJobOptions/postInclude.HijingPars.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>HeavyIonSimHITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/HeavyIonSim.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_HeavyIonSim.HITS.pool.root.diffPool</keepFilePattern> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="HeavyIonSim_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>HeavyIonSim_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py HeavyIonSim</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - </sequential> - </chain> - - - <chain> - <chainName>RegressionTest_CavernBg_EVNT2TR</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="CavernBg_EVNT2TR"> - <doc>Reading min bias events, write cavern background track records</doc> - <jobTransformJobName>CavernBg_EVNT2TR</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --inputEVNTFile '/afs/cern.ch/atlas/offline/ProdData/16.6.X/16.6.7.Y/minbias_Inelastic_low-pythia8-7000.evgen.pool.root' --outputHITSFile 'discard.HITS.pool.root' --outputEVNT_TRFile 'test.EVNT.pool.root' --maxEvents '2' --skipEvents '0' --randomSeed '5678' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '222525' --physicsList 'QGSP_BERT_HP' --postInclude 'PyJobTransforms/UseFrontier.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>medium</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>CavernBg_EVNT2TR_EVNTFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.EVNT.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/CavernBg_EVNT2TR.EVNT.pool.root</argvalue> - </arg> - <keepFilePattern>test.EVNT.pool.root_CavernBg_EVNT2TR.EVNT.pool.root.diffPool</keepFilePattern> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="CavernBg_EVNT2TR_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>CavernBg_EVNT2TR_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py CavernBg_EVNT2TR</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>CavernBg_EVNT_RegressionTestRunner</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>today.EVNT.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>yesterday.EVNT.pool.root</argvalue> - </arg> - <keepFilePattern>today.EVNT.pool.root_yesterday.EVNT.pool.root.diffPool</keepFilePattern> - </test> - <testToRemove> - <jobGroupName>SimCoreTests:SimCoreRegressionTests</jobGroupName> - <testidentifier>HITS_RegressionTestRunner</testidentifier> - </testToRemove> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - - <chain> - <chainName>RegressionTest_CavernBg_TR2HITS</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="CavernBg_TR2HITS"> - <doc>Reading cavern background track record, creating cav bg hits.</doc> - <jobTransformJobName>CavernBg_TR2HITS</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --inputEVNT_TRFile '/afs/cern.ch/atlas/offline/ProdData/16.6.X/16.6.7.Y/cavernbg-pythia8-7000.evgen.pool.root' --outputHITSFile 'test.HITS.pool.root' --maxEvents '5' --skipEvents '0' --randomSeed '8765' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '222525' --physicsList 'QGSP_BERT_HP' --postInclude 'PyJobTransforms/UseFrontier.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>medium</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>CavernBg_HITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/CavernBg_TR2HITS.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_CavernBg_TR2HITS.HITS.pool.root.diffPool</keepFilePattern> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="CavernBg_TR2HITS_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>CavernBg_TR2HITS_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py CavernBg_TR2HITS</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <chain> - <chainName>RegressionTest_FrozenShowerFCalOnly</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="FrozenShowerFCalOnly"> - <doc>Testing basic frozen showers (FCal only)</doc> - <jobTransformJobName>FrozenShowerFCalOnly</jobTransformJobName> - <!-- setting environment variables needs syntax update --> - <jobTransformCmd>FSRELEASE=1.0.0 DATAPATH=$DATAPATH:/afs/cern.ch/atlas/software/FSreleases/DD0/FSRelease/1.0.0 AtlasG4_tf.py --inputEVNTFile '/afs/cern.ch/atlas/offline/ProdData/17.2.X/17.2.6.2/e_E50_eta34_49.EVNT.pool.root' --outputHITSFile 'test.HITS.pool.root' --maxEvents 10 --skipEvents 0 --randomSeed 10 --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '222525' --physicsList 'FTFP_BERT' --preInclude 'SimulationJobOptions/preInclude.FrozenShowersFCalOnly.py' --postInclude 'PyJobTransforms/UseFrontier.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>FrozenShowerFCalOnlyHITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/FrozenShowerFCalOnly.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_FrozenShowerFCalOnly.HITS.pool.root.diffPool</keepFilePattern> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="FrozenShowerFCalOnly_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>FrozenShowerFCalOnly_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py FrozenShowerFCalOnly</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <chain> - <chainName>RegressionTest_CosmicSimTR</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="CosmicSimTR"> - <doc>Running cosmic simulation transform from track records</doc> - <jobTransformJobName>CosmicSimTR</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --inputEVNT_TRFile '/afs/cern.ch/atlas/offline/ProdData/16.6.X/16.6.7.Y/Cosmics.TR.pool.root' --outputHITSFile 'test.HITS.pool.root' --maxEvents '-1' --randomSeed '1234' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --physicsList 'FTFP_BERT' --DataRunNumber '222525' --firstEvent '0' --beamType 'cosmics' --postInclude 'PyJobTransforms/UseFrontier.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>CosmicSimTR_HITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/CosmicSimTR.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_CosmicSimTR.HITS.pool.root.diffPool</keepFilePattern> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="CosmicSimTR_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>CosmicSimTR_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py CosmicSimTR</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <chain> - <chainName>RegressionTest_LucidSimTest</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="LucidSimTest"> - <doc>Test Main ATLAS+Lucid simulation job transform</doc> - <jobTransformJobName>LucidSimTest</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --inputEVNTFile '/afs/cern.ch/atlas/offline/ProdData/16.6.X/16.6.7.Y/minbias_Inelastic-pythia8-7000.evgen.pool.root' --outputHITSFile 'test.HITS.pool.root' --maxEvents '3' --skipEvents '0' --randomSeed '10' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '222525' --physicsList 'FTFP_BERT' --LucidOn 'True' --postInclude 'PyJobTransforms/UseFrontier.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>LucidSimTestHITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/LucidSimTest.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_LucidSimTest.HITS.pool.root.diffPool</keepFilePattern> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="LucidSimTest_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>LucidSimTest_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py LucidSimTest</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <chain> - <chainName>RegressionTest_AFPSimTest</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="AFPSimTest"> - <doc>Test Main ATLAS+AFP simulation job transform</doc> - <jobTransformJobName>AFPSimTest</jobTransformJobName> - <!-- FIXME need an AFP-specific single particle generator configuration --> - <jobTransformCmd>AtlasG4_tf.py --preInclude 'G4AtlasTests/preInclude.ALFA_SingleParticle.py' --outputHITSFile 'test.HITS.pool.root' --maxEvents '3' --randomSeed '10' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '222525' --physicsList 'FTFP_BERT' --AFPOn 'True' --postInclude 'PyJobTransforms/UseFrontier.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>AFPSimTestHITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/AFPSimTest.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_AFPSimTest.HITS.pool.root.diffPool</keepFilePattern> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="AFPSimTest_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>AFPSimTest_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py AFPSimTest</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <chain> - <chainName>RegressionTest_ALFASimTest</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="ALFASimTest"> - <doc>Test Main ATLAS+ALFA simulation job transform</doc> - <jobTransformJobName>ALFASimTest</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --preInclude 'G4AtlasTests/preInclude.ALFA_SingleParticle.py' --outputHITSFile 'test.HITS.pool.root' --maxEvents '3' --randomSeed '10' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '222525' --physicsList 'FTFP_BERT' --ALFAOn 'True' --postInclude 'PyJobTransforms/UseFrontier.py' 'AtlasG4Tf:G4AtlasTests/postInclude.ALFA_dcube.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>ALFASimTestHITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/ALFASimTest.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_ALFASimTest.HITS.pool.root.diffPool</keepFilePattern> - </test> - <test position="2"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>ALFASimTestDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>20.7.X/dcube-ALFASimTest.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>20.7.X/ALFASimTest.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>truth.root</argvalue> - </arg> - <keepFilePattern>DCube-20.7.X/ALFASimTest.truth.root/truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="ALFASimTest_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>ALFASimTest_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ALFASimTest</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <chain> - <chainName>RegressionTest_ZDCSimTest</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="ZDCSimTest"> - <doc>Test Main ATLAS+ZDC simulation job transform</doc> - <jobTransformJobName>ZDCSimTest</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --preInclude 'G4AtlasTests/preInclude.ZDC_SingleParticle.py' --outputHITSFile 'test.HITS.pool.root' --maxEvents 3 --randomSeed 10 --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '222525' --physicsList 'FTFP_BERT' --ZDCOn 'True' --postInclude 'PyJobTransforms/UseFrontier.py' 'AtlasG4Tf:G4AtlasTests/postInclude.ZDC_dcube.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>medium</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>ZDCSimTestHITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/ZDCSimTest.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_ZDCSimTest.HITS.pool.root.diffPool</keepFilePattern> - </test> - <test position="2"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>ZDCSimTestDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>20.7.X/dcube-ZDCSimTest.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>20.7.X/ZDCSimTest.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>truth.root</argvalue> - </arg> - <keepFilePattern>DCube-20.7.X/ZDCSimTest.truth.root/truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="ZDCSimTest_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>ZDCSimTest_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py ZDCSimTest</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - <test position="2"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>ZDCSimTest_RegDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>20.7.X/dcube-ZDCSimTest.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>yesterday.root</argvalue> - </arg> - <arg> - <argname>localRefFile</argname> - <argvalue>True</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.root</argvalue> - </arg> - <keepFilePattern>DCube-yesterday.root/today.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <chain> - <chainName>RegressionTest_NSWSimTest</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="NSWSimTest"> - <doc>Test Main ATLAS+NSW simulation job transform</doc> - <jobTransformJobName>NSWSimTest</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --preInclude 'G4AtlasTests/ParticleGun_flatpt_2particle.py' --outputHITSFile 'test.HITS.pool.root' --maxEvents '200' --randomSeed '10' --geometryVersion 'ATLAS-R2-2015-03-01-00' --conditionsTag 'OFLCOND-RUN12-SDR-25' --physicsList 'FTFP_BERT' --DBRelease 'current' --postInclude 'G4AtlasTests/postInclude.DCubeTest.py,G4AtlasTests/postInclude.NSW.config.simu.py' --preExec 'simFlags.ReleaseGeoModel=False;simFlags.SimulateNewSmallWheel=True;' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>medium</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>NSWSimTestHITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/NSWSimTest.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_NSWSimTest.HITS.pool.root.diffPool</keepFilePattern> - </test> - <test position="2"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>NSWSimTestDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>20.7.X/dcube-NSWSimTest.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>20.7.X/NSWSimTest.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>truth.root</argvalue> - </arg> - <keepFilePattern>DCube-20.7.X/NSWSimTest.truth.root/truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="NSWSimTest_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>NSWSimTest_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py NSWSimTest</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - <test position="2"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>NSWSimTest_RegDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>20.7.X/dcube-NSWSimTest.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>yesterday.root</argvalue> - </arg> - <arg> - <argname>localRefFile</argname> - <argvalue>True</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.root</argvalue> - </arg> - <keepFilePattern>DCube-yesterday.root/today.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <chain> - <chainName>RegressionTest_AtlasG4_muons</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="AtlasG4_muons"> - <doc>Tests detector functionality using single muons</doc> - <jobTransformJobName>AtlasG4_muons</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --preInclude 'SimulationJobOptions/preInclude.SingleMuonGenerator.py' --outputHITSFile 'test.HITS.pool.root' --maxEvents '2000' --randomSeed '10' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '222525' --physicsList 'FTFP_BERT' --postInclude 'PyJobTransforms/UseFrontier.py' 'AtlasG4Tf:G4AtlasTests/postInclude.DCubeTest.py' --preExec 'AtlasG4Tf:simFlags.ReleaseGeoModel=False;' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>medium</queue> - - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>AtlasG4_muonsDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>20.7.X/dcube-AtlasG4_muons.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>20.7.X/AtlasG4_muons.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>truth.root</argvalue> - </arg> - <keepFilePattern>DCube-20.7.X/AtlasG4_muons.truth.root/truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - <chainfileout>test.HITS.pool.root</chainfileout> - </chainElement> - - <parallel> - <chainElement> - <athena userJobId="AtlasG4_muons_noevgen"> - <doc>Tests detector functionality using single muons read from POOL</doc> - <options>G4AtlasTests/test_AtlasG4_muons_noevgen</options> - <group>AthenaSimCoreTestJobs</group> - <queue>short</queue> - <chaindataset_info> - <dc2 /> - <chaindatasetName>test.HITS.pool.root</chaindatasetName> - <dataset_info> - <dc2 /> - <datasetName>/eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/AtlasG4_muons.HITS.pool.root</datasetName> - </dataset_info> - </chaindataset_info> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>AtlasG4_muons_noevgenDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>20.7.X/dcube-AtlasG4_muons_noevgen.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>truth.root</argvalue> - </arg> - <arg> - <argname>localRefFile</argname> - <argvalue>True</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>truth_2.root</argvalue> - </arg> - <keepFilePattern>DCube-truth.root/truth_2.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - <testToRemove> - <jobGroupName>RTT:Athena</jobGroupName> - <testidentifier>Athena_FileGrepper</testidentifier> - </testToRemove> - <testToRemove> - <jobGroupName>RTT:Athena</jobGroupName> - <testidentifier>Athena_FileGrepper1</testidentifier> - </testToRemove> - </athena> - </chainElement> - - <chainElement> - <jobTransform userJobId="AtlasG4_muons_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>AtlasG4_muons_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py AtlasG4_muons</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>AtlasG4_muons_RegDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>20.7.X/dcube-AtlasG4_muons.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>yesterday.root</argvalue> - </arg> - <arg> - <argname>localRefFile</argname> - <argvalue>True</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.root</argvalue> - </arg> - <keepFilePattern>DCube-yesterday.root/today.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - </chainElement> - - </parallel> - </sequential> - </chain> - - <chain> - <chainName>RegressionTest_AtlasG4_pions</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="AtlasG4_pions"> - <doc>Tests detector functionality using single pions</doc> - <jobTransformJobName>AtlasG4_pions</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --preInclude 'SimulationJobOptions/preInclude.SinglePionGenerator.py' --outputHITSFile 'test.HITS.pool.root' --maxEvents '150' --randomSeed '10' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '222525' --physicsList 'FTFP_BERT' --postInclude 'PyJobTransforms/UseFrontier.py' 'AtlasG4Tf:G4AtlasTests/postInclude.DCubeTest.py' --preExec 'AtlasG4Tf:simFlags.ReleaseGeoModel=False;' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>long</queue> - - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>AtlasG4_pionsDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>20.7.X/dcube-AtlasG4_pions.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>20.7.X/AtlasG4_pions.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>truth.root</argvalue> - </arg> - <keepFilePattern>DCube-20.7.X/AtlasG4_pions.truth.root/truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="AtlasG4_pions_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>AtlasG4_pions_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py AtlasG4_pions</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>AtlasG4_pions_RegDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>20.7.X/dcube-AtlasG4_pions.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>yesterday.root</argvalue> - </arg> - <arg> - <argname>localRefFile</argname> - <argvalue>True</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.root</argvalue> - </arg> - <keepFilePattern>DCube-yesterday.root/today.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <chain> - <chainName>RegressionTest_AtlasG4_minbias</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="AtlasG4_minbias"> - <doc>Reading gen events, single particle</doc> - <jobTransformJobName>AtlasG4_minbias</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --inputEVNTFile '/afs/cern.ch/atlas/offline/ProdData/16.6.X/16.6.7.Y/minbias_Inelastic-pythia8-7000.evgen.pool.root' --outputHITSFile 'test.HITS.pool.root' --maxEvents '50' --skipEvents '0' --randomSeed '10' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '222525' --physicsList 'FTFP_BERT' --preInclude 'SimulationJobOptions/preInclude.CaloOffDigitConfig.py,SimulationJobOptions/preInclude.MuonOffDigitConfig.py' --postInclude 'PyJobTransforms/UseFrontier.py' 'AtlasG4Tf:G4AtlasTests/postInclude.DCubeTest.py' --preExec 'AtlasG4Tf:simFlags.ReleaseGeoModel=False;simFlags.EventFilter.set_On();simFlags.EventFilter.get_Value()["BeamEffectTransformation"]=True;' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>medium</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>AtlasG4_minbias_HITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/AtlasG4_minbias.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_AtlasG4_minbias.HITS.pool.root.diffPool</keepFilePattern> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>AtlasG4_minbiasDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>20.7.X/dcube-AtlasG4_minbias.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>20.7.X/AtlasG4_minbias.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>truth.root</argvalue> - </arg> - <keepFilePattern>DCube-20.7.X/AtlasG4_minbias.truth.root/truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="AtlasG4_minbias_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>AtlasG4_minbias_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py AtlasG4_minbias</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>AtlasG4_minbias_RegDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>20.7.X/dcube-AtlasG4_minbias.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>yesterday.root</argvalue> - </arg> - <arg> - <argname>localRefFile</argname> - <argvalue>True</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.root</argvalue> - </arg> - <keepFilePattern>DCube-yesterday.root/today.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - <chain> - <chainName>RegressionTest_AtlasG4_electrons</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="AtlasG4_electrons"> - <doc>Tests detector functionality using single electrons</doc> - <jobTransformJobName>AtlasG4_electrons</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --preInclude 'SimulationJobOptions/preInclude.SingleElectronGenerator.py' --outputHITSFile 'test.HITS.pool.root' --maxEvents '1000' --randomSeed '10' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '222525' --physicsList 'FTFP_BERT' --postInclude 'PyJobTransforms/UseFrontier.py' 'AtlasG4Tf:G4AtlasTests/postInclude.DCubeTest.py' --preExec 'AtlasG4Tf:simFlags.ReleaseGeoModel=False;' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>long</queue> - - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>AtlasG4_electronsDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>20.7.X/dcube-AtlasG4_electrons.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>20.7.X/AtlasG4_electrons.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>truth.root</argvalue> - </arg> - <keepFilePattern>DCube-20.7.X/AtlasG4_electrons.truth.root/truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - - </jobTransform> - <chainfileout>test.HITS.pool.root</chainfileout> - </chainElement> - - <parallel> - - <chainElement> - <athena userJobId="AtlasG4_electrons_noevgen"> - <doc>Tests detector functionality using single electrons read from POOL</doc> - <options>G4AtlasTests/test_AtlasG4_electrons_noevgen</options> - <group>AthenaSimCoreTestJobs</group> - <queue>short</queue> - <chaindataset_info> - <dc2 /> - <chaindatasetName>test.HITS.pool.root</chaindatasetName> - <dataset_info> - <dc2 /> - <datasetName>/eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/AtlasG4_electrons.HITS.pool.root</datasetName> - </dataset_info> - </chaindataset_info> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>AtlasG4_electrons_noevgenDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>20.7.X/dcube-AtlasG4_electrons_noevgen.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>truth.root</argvalue> - </arg> - <arg> - <argname>localRefFile</argname> - <argvalue>True</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>truth_2.root</argvalue> - </arg> - <keepFilePattern>DCube-truth.root/truth_2.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - <testToRemove> - <jobGroupName>RTT:Athena</jobGroupName> - <testidentifier>Athena_FileGrepper</testidentifier> - </testToRemove> - <testToRemove> - <jobGroupName>RTT:Athena</jobGroupName> - <testidentifier>Athena_FileGrepper1</testidentifier> - </testToRemove> - </athena> - </chainElement> - - <chainElement> - <jobTransform userJobId="AtlasG4_electrons_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>AtlasG4_electrons_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py AtlasG4_electrons</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>AtlasG4_electrons_RegDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>20.7.X/dcube-AtlasG4_electrons.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>yesterday.root</argvalue> - </arg> - <arg> - <argname>localRefFile</argname> - <argvalue>True</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.root</argvalue> - </arg> - <keepFilePattern>DCube-yesterday.root/today.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - </chainElement> - - </parallel> - - </sequential> - </chain> - - <chain> - <chainName>RegressionTest_WriteCalHitsTest</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="WriteCalHitsTest"> - <doc>Reading gen events, single particle</doc> - <jobTransformJobName>WriteCalHitsTest</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --inputEVNTFile '/afs/cern.ch/atlas/offline/ProdData/16.6.X/16.6.7.Y/pi_E50_eta0-60.evgen.pool.root' --outputHITSFile 'test.HITS.pool.root' --maxEvents '10' --skipEvents '0' --randomSeed '10' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '222525' --physicsList 'FTFP_BERT' --preInclude 'SimulationJobOptions/preInclude.CalHits.py,SimulationJobOptions/preInclude.ParticleID.py' --postInclude 'PyJobTransforms/UseFrontier.py' 'AtlasG4Tf:G4AtlasTests/postInclude.DCubeTest_CaloCalibHits.py' --preExec 'AtlasG4Tf:simFlags.ReleaseGeoModel=False;' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>WriteCalHitsTestDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>20.7.X/dcube-WriteCalHitsTest.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>20.7.X/WriteCalHitsTest.truth.root</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>truth.root</argvalue> - </arg> - <keepFilePattern>DCube-20.7.X/WriteCalHitsTest.truth.root/truth.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - <test position="2"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>WriteCalHitsTestHITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/WriteCalHitsTest.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_WriteCalHitsTest.HITS.pool.root.diffPool</keepFilePattern> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="WriteCalHitsTest_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>WriteCalHitsTest_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py WriteCalHitsTest</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - <test> - <modulename>RttLibraryTools</modulename> - <testname>DCubeRunner</testname> - <testidentifier>WriteCalHitsTest_RegDCubeTest</testidentifier> - <arg> - <argname>DCubeCfg</argname> - <argvalue>20.7.X/dcube-WriteCalHitsTest.xml</argvalue> - </arg> - <arg> - <argname>DCubeRef</argname> - <argvalue>yesterday.root</argvalue> - </arg> - <arg> - <argname>localRefFile</argname> - <argvalue>True</argvalue> - </arg> - <arg> - <argname>DCubeMon</argname> - <argvalue>today.root</argvalue> - </arg> - <keepFilePattern>DCube-yesterday.root/today.root.dcube.xml.php</keepFilePattern> - <noalarm /> - </test> - </jobTransform> - </chainElement> - - </sequential> - </chain> - - - <!-- - ******************************************************************************** - Section II - ******************************************************************************** - --> - - <athena userJobId="G4AtlasGeoTest"> - <doc>Recursive geometry test on ATLAS-R2-2015-03-01-00 (MC15 default). Done only on G4 and GeoModel envelopes</doc> - <options>G4AtlasTests/test_G4AtlasGeo</options> - <group>SimCoreTests:SimGeomTestJobs</group> - <queue>short</queue> - <testToInvert> <!-- still failing as of August 2015 --> - <jobGroupName>SimCoreTests:SimGeomTestJobs</jobGroupName> - <testidentifier>SolidProblemGrepper</testidentifier> - </testToInvert> - </athena> - - <chain> - <chainName>RegressionTest_G4AtlasCosmic</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <athena userJobId="G4AtlasCosmic"> - <doc>Test with commisioning layouts and cosmic generator</doc> - <commandLineString>--preloadlib=${ATLASMKLLIBDIR_PRELOAD}/libintlc.so.5:${ATLASMKLLIBDIR_PRELOAD}/libimf.so</commandLineString> - <options>G4AtlasApps/jobOptions.G4Cosmic.py</options> - <group>AthenaSimCoreTestJobs</group> - <queue>short</queue> - </athena> - </chainElement> - - <chainElement> - <jobTransform userJobId="G4AtlasCosmic_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>G4AtlasCosmic_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py G4AtlasCosmic</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - - </sequential> - </chain> - <!-- - ******************************************************************************** - Section III - ******************************************************************************** - --> - <chain> - <chainName>RegressionTest_SkipEventsTest</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="SkipEventsTest"> - <doc>Reading single particle gen events, checking that the SkipEvents argument works</doc> - <jobTransformJobName>SkipEvents</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --inputEVNTFile '/afs/cern.ch/atlas/offline/ProdData/16.6.X/16.6.7.Y/e_E50_eta0-25.evgen.pool.root' --outputHITSFile 'test.HITS.pool.root' --maxEvents '10' --skipEvents '5' --randomSeed '10' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --DataRunNumber '222525' --physicsList 'FTFP_BERT' --postInclude 'PyJobTransforms/UseFrontier.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>fileGrepper_results.txt</outputFile> - <testidentifier>SkipFileGrepper</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>log.AtlasG4Tf</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <fileGrepperSearchPattern> - <fileGrepperPattern>skipping event 1.*skipping event 2.*skipping event 3.*skipping event 4.*skipping event 5</fileGrepperPattern> - <compileFlags>S</compileFlags> - </fileGrepperSearchPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>fileGrepper_results.txt</keepFilePattern> - </test> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="SkipEventsTest_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>SkipEventsTest_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py SkipEventsTest</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - </jobTransform> - </chainElement> - </sequential> - </chain> - - <chain> - <chainName>RegressionTest_CosmicSim</chainName> - <abortOnError /> - <sequential> - - <chainElement> - <jobTransform userJobId="CosmicSim"> - <doc>Running cosmic simulation transform</doc> - <jobTransformJobName>CosmicSim</jobTransformJobName> - <jobTransformCmd>AtlasG4_tf.py --outputHITSFile 'test.HITS.pool.root' --maxEvents '1500' --randomSeed '1234' --DataRunNumber '222525' --CosmicFilterVolume 'Calo' --CosmicFilterVolume2 'NONE' --geometryVersion 'ATLAS-R2-2015-03-01-00_VALIDATION' --conditionsTag 'OFLCOND-RUN12-SDR-19' --physicsList 'FTFP_BERT' --CosmicPtSlice 'NONE' --outputEVNT_TRFile 'test.TR.pool.root' --beamType 'cosmics' --postInclude 'PyJobTransforms/UseFrontier.py' - </jobTransformCmd> - <group>SimCoreJobTransformTests</group> - <queue>short</queue> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>CosmicSimHITSFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/CosmicSim.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>test.HITS.pool.root_CosmicSim.HITS.pool.root.diffPool</keepFilePattern> - </test> - <test position="2"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>CosmicSimTrackRecordFileDiff</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>test.TR.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>root://eosatlas//eos/atlas/atlascerngroupdisk/proj-sit/simulation/validation/RTT/referenceFiles/20.7.X/CosmicSim.TR.pool.root</argvalue> - </arg> - <keepFilePattern>test.TR.pool.root_CosmicSim.TR.pool.root.diffPool</keepFilePattern> - </test> - <testToRemove> - <jobGroupName>SimCoreTests:SimCoreJobTransformTests</jobGroupName> - <testidentifier>AbortedEventGrepper</testidentifier> - </testToRemove> - </jobTransform> - </chainElement> - - <chainElement> - <jobTransform userJobId="CosmicSim_Reg"> - <doc>Regression test between releases</doc> - <jobTransformJobName>CosmicSim_Reg</jobTransformJobName> - <jobTransformCmd>sim_reg_test.py CosmicSim</jobTransformCmd> - <group>SimCoreTests:SimCoreRegressionTests</group> - <queue>short</queue> - <test position="2"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <testidentifier>CosmicSim_RegTrackRecordRegressionTestRunner</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>today.TR.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>yesterday.TR.pool.root</argvalue> - </arg> - <keepFilePattern>today.TR.pool.root_yesterday.TR.pool.root.diffPool</keepFilePattern> - </test> - </jobTransform> - </chainElement> - - </sequential> - </chain> - </jobList> - - <jobGroups> - <jobGroup name="AthenaSimCoreTestJobs" parent="RTT:Athena"> - <keepFilePattern>*.ps</keepFilePattern> - <keepFilePattern>*.root</keepFilePattern> - <keepFilePattern>*.txt</keepFilePattern> - <keepFilePattern>*.log</keepFilePattern> - <keepFilePattern>*.diffPool</keepFilePattern> - <keepFilePattern>G4InitStats.out</keepFilePattern> - <keepFilePattern>memorytest.out</keepFilePattern> - <keepFilePattern>GeoModelStatistics</keepFilePattern> - <test> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>ErrorG4ExceptionGrepper_results.txt</outputFile> - <testidentifier>ErrorG4ExceptionGrepper</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>*_log</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- veto pattern block --> - <fileGrepperVetoPattern> - <fileGrepperPattern>-------- EEEE ------- G4Exception-START -------- EEEE ------- - </fileGrepperPattern> - </fileGrepperVetoPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>ErrorG4ExceptionGrepper_results.txt</keepFilePattern> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>WarningG4ExceptionGrepper_results.txt</outputFile> - <testidentifier>WarningG4ExceptionGrepper</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>*_log</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- veto pattern block --> - <fileGrepperVetoPattern> - <fileGrepperPattern>-------- WWWW ------- G4Exception-START -------- WWWW ------- - </fileGrepperPattern> - </fileGrepperVetoPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>WarningG4ExceptionGrepper_results.txt</keepFilePattern> - <noalarm /> - </test> - <test> <!-- Special Test for uninitialized random stream seeds should remove once it starts failing.. --> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>DefaultSeedsGrepper_results.txt</outputFile> - <testidentifier>DefaultSeedsGrepper</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>*_log</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- veto pattern block --> - <fileGrepperVetoPattern> - <fileGrepperPattern>DEFAULT seeds</fileGrepperPattern> - <compileFlags>S</compileFlags> - </fileGrepperVetoPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>DefaultSeedsGrepper_results.txt</keepFilePattern> - </test> - <test> <!-- Special Test for StrangePDG G4Exceptions should remove once it starts failing.. --> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>StrangePDGGrepper_results.txt</outputFile> - <testidentifier>StrangePDGGrepper</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>*_log</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- veto pattern block --> - <fileGrepperVetoPattern> - <fileGrepperPattern>G4Exception : PART102</fileGrepperPattern> - <compileFlags>S</compileFlags> - </fileGrepperVetoPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>StrangePDGGrepper_results.txt</keepFilePattern> - <noalarm /> - </test> - </jobGroup> - - <jobGroup name="SimGeomTestJobs" parent="RTT:Athena"> - <keepFilePattern>*.ps</keepFilePattern> - <keepFilePattern>*.root</keepFilePattern> - <keepFilePattern>*.txt</keepFilePattern> - <keepFilePattern>*.log</keepFilePattern> - <keepFilePattern>*.diffPool</keepFilePattern> - <keepFilePattern>G4InitStats.out</keepFilePattern> - <keepFilePattern>memorytest.out</keepFilePattern> - <keepFilePattern>GeoModelStatistics</keepFilePattern> - <test> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>CodeZeroGrepper_results.txt</outputFile> - <testidentifier>CodeZeroGrepper</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>G4AtlasGeo*_log</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- search pattern block --> - <fileGrepperSearchPattern> - <fileGrepperPattern>leaving with code 0</fileGrepperPattern> - </fileGrepperSearchPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>CodeZeroGrepper_results.txt</keepFilePattern> - </test> - - <test> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>OtherGeoErrorGrepper_results.txt</outputFile> - <testidentifier>OtherGeoErrorGrepper</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>G4AtlasGeo*_log</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- veto pattern block --> - <fileGrepperVetoPattern> - <fileGrepperPattern>GeomTest Error((?!(Overlapping daughter volumes|Overshooting daughter volume|SolidProblem)).)*$</fileGrepperPattern> - </fileGrepperVetoPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>OtherGeoErrorGrepper_results.txt</keepFilePattern> - </test> - - <test> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>DaughterOverlapGrepper_results.txt</outputFile> - <testidentifier>DaughterOverlapGrepper</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>G4AtlasGeo*_log</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- veto pattern block --> - <fileGrepperVetoPattern> - <fileGrepperPattern>GeomTest Error: Overlapping daughter volumes</fileGrepperPattern> - </fileGrepperVetoPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>DaughterOverlapGrepper_results.txt</keepFilePattern> - </test> - - <test> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>DaughterOvershootGrepper_results.txt</outputFile> - <testidentifier>DaughterOvershootGrepper</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>G4AtlasGeo*_log</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- veto pattern block --> - <fileGrepperVetoPattern> - <fileGrepperPattern>GeomTest Error: Overshooting daughter volume</fileGrepperPattern> - </fileGrepperVetoPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>DaughterOvershootGrepper_results.txt</keepFilePattern> - </test> - - <test> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>SolidProblemGrepper_results.txt</outputFile> - <testidentifier>SolidProblemGrepper</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>G4AtlasGeo*_log</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- veto pattern block --> - <fileGrepperVetoPattern> - <fileGrepperPattern>GeomTest Error: SolidProblem</fileGrepperPattern> - </fileGrepperVetoPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>SolidProblemGrepper_results.txt</keepFilePattern> - </test> - - <testToRemove> - <jobGroupName>SimCoreTests:AthenaSimCoreTestJobs</jobGroupName> - <testidentifier>ErrorG4ExceptionGrepper</testidentifier> - </testToRemove> - - <testToRemove> - <jobGroupName>SimCoreTests:AthenaSimCoreTestJobs</jobGroupName> - <testidentifier>WarningG4ExceptionGrepper</testidentifier> - </testToRemove> - - <testToRemove> - <jobGroupName>SimCoreTests:AthenaSimCoreTestJobs</jobGroupName> - <testidentifier>DefaultSeedsGrepper</testidentifier> - </testToRemove> - - <testToRemove> - <jobGroupName>SimCoreTests:AthenaSimCoreTestJobs</jobGroupName> - <testidentifier>StrangePDGGrepper</testidentifier> - </testToRemove> - - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - - </jobGroup> - - <jobGroup name="SimCoreJobTransformTests" parent="RTT:Top"> - <keepFilePattern>*.root</keepFilePattern> - <keepFilePattern>*.txt</keepFilePattern> - <keepFilePattern>*.out</keepFilePattern> - <keepFilePattern>*.html</keepFilePattern> - <keepFilePattern>prof/*.html</keepFilePattern> - <keepFilePattern>*.php</keepFilePattern> - <keepFilePattern>log*</keepFilePattern> - <keepFilePattern>*log</keepFilePattern> - <keepFilePattern>*.json</keepFilePattern> - <keepFilePattern>*.diffPool</keepFilePattern> - <keepFilePattern>test.athena.profile</keepFilePattern> - <!-- TODO: Look for G4Exceptions in jobReport.json rather than the log files. --> - <test> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>ErrorG4ExceptionGrepper_results.txt</outputFile> - <testidentifier>ErrorG4ExceptionGrepper</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>log.AtlasG4Tf</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- veto pattern block --> - <fileGrepperVetoPattern> - <fileGrepperPattern>-------- EEEE ------- G4Exception-START -------- EEEE ------- - </fileGrepperPattern> - </fileGrepperVetoPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>ErrorG4ExceptionGrepper_results.txt</keepFilePattern> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>WarningG4ExceptionGrepper_results.txt</outputFile> - <testidentifier>WarningG4ExceptionGrepper</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>log.AtlasG4Tf</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- veto pattern block --> - <fileGrepperVetoPattern> - <fileGrepperPattern>-------- WWWW ------- G4Exception-START -------- WWWW ------- - </fileGrepperPattern> - </fileGrepperVetoPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>WarningG4ExceptionGrepper_results.txt</keepFilePattern> - <noalarm /> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>AbortedEventGrepper_results.txt</outputFile> - <testidentifier>AbortedEventGrepper</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>log.AtlasG4Tf</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- veto pattern block --> - <fileGrepperVetoPattern> - <fileGrepperPattern>Event was aborted - </fileGrepperPattern> - </fileGrepperVetoPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>AbortedEventGrepper_results.txt</keepFilePattern> - </test> - <test> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>jobGroupFileGrepper_results.txt</outputFile> - <testidentifier>FileGrepperA</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>log.AtlasG4Tf</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- search pattern block --> - <fileGrepperSearchPattern> - <fileGrepperPattern>leaving with code 0</fileGrepperPattern> - </fileGrepperSearchPattern> - <!-- veto pattern block --> - <fileGrepperVetoPattern> - <fileGrepperPattern>(segmentation violation|bus error) - </fileGrepperPattern> - </fileGrepperVetoPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>jobGroupFileGrepper_results.txt</keepFilePattern> - </test> - <test> <!-- Special Test for uninitialized random stream seeds should remove once it starts failing.. --> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>DefaultSeedsGrepper_results.txt</outputFile> - <testidentifier>DefaultSeedsGrepper</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>log.AtlasG4Tf</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- veto pattern block --> - <fileGrepperVetoPattern> - <fileGrepperPattern>DEFAULT seeds</fileGrepperPattern> - <compileFlags>S</compileFlags> - </fileGrepperVetoPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>DefaultSeedsGrepper_results.txt</keepFilePattern> - </test> - <test> <!-- Special Test for StrangePDG G4Exceptions should remove once it starts failing.. --> - <modulename>RttLibraryTools</modulename> - <testname>FileGrepper</testname> - <outputFile>StrangePDGGrepper_results.txt</outputFile> - <testidentifier>StrangePDGGrepper</testidentifier> - <arg> - <argname>inputFile</argname> - <argvalue>log.AtlasG4Tf</argvalue> - </arg> - <arg> - <fileGrepperArgs> - <!-- veto pattern block --> - <fileGrepperVetoPattern> - <fileGrepperPattern>G4Exception : PART102</fileGrepperPattern> - <compileFlags>S</compileFlags> - </fileGrepperVetoPattern> - </fileGrepperArgs> - </arg> - <keepFilePattern>StrangePDGGrepper_results.txt</keepFilePattern> - <noalarm /> - </test> - </jobGroup> - <jobGroup name="SimCoreRegressionTests" parent="RTT:Top"> - <keepFilePattern>*.root</keepFilePattern> - <keepFilePattern>*.txt</keepFilePattern> - <keepFilePattern>*.out</keepFilePattern> - <keepFilePattern>*.html</keepFilePattern> - <keepFilePattern>prof/*.html</keepFilePattern> - <keepFilePattern>*.php</keepFilePattern> - <keepFilePattern>*log</keepFilePattern> - <keepFilePattern>*.diffPool</keepFilePattern> - <keepFilePattern>test.athena.profile</keepFilePattern> - <test position="1"> - <modulename>RttLibraryTools</modulename> - <testname>DiffPoolFilesRunner</testname> - <outputFile>today.HITS.pool.root_yesterday.HITS.pool.root.basic.diffPool</outputFile> - <testidentifier>HITS_RegressionTestRunner</testidentifier> - <arg> - <argname>fileName</argname> - <argvalue>today.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>yesterday.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>today.HITS.pool.root_yesterday.HITS.pool.root.basic.diffPool</keepFilePattern> - </test> - <test> - <modulename>FlexibleDiffPoolFilesRunner</modulename> - <testname>FlexibleDiffPoolFilesRunner</testname> - <testidentifier>HITS_RegressionTestRunner</testidentifier> - <arg> - <argname>platformDependent</argname> - <argvalue>True</argvalue> - </arg> - <arg> - <argname>optionString</argname> - <argvalue>--ignore-leaves RecoTimingObj_p1_EVNTtoHITS_timings</argvalue> - </arg> - <arg> - <argname>doDetailedChecks</argname> - <argvalue>True</argvalue> - </arg> - <arg> - <argname>fileName</argname> - <argvalue>today.HITS.pool.root</argvalue> - </arg> - <arg> - <argname>refFileName</argname> - <argvalue>yesterday.HITS.pool.root</argvalue> - </arg> - <keepFilePattern>today.HITS.pool.root_yesterday.HITS.pool.root.diffPool</keepFilePattern> - </test> - <testToRemove> - <jobGroupName>RTT:Top</jobGroupName> - <testidentifier>CheckFileRunner0</testidentifier> - </testToRemove> - </jobGroup> - </jobGroups> - - </rtt> - -</unifiedTestConfiguration> diff --git a/Simulation/Tests/SimCoreTests/test/test_MC16_AtlasG4_ttbar.sh b/Simulation/Tests/SimCoreTests/test/test_MC16_AtlasG4_ttbar.sh new file mode 100755 index 0000000000000000000000000000000000000000..0f746d6047b940483113d571590e4a715b59f4b1 --- /dev/null +++ b/Simulation/Tests/SimCoreTests/test/test_MC16_AtlasG4_ttbar.sh @@ -0,0 +1,35 @@ +#!/bin/sh +# +# art-description: MC16-style simulation using FullG4 +# art-include: 21.0/Athena +# art-include: 21.3/Athena +# art-include: 21.9/Athena +# art-include: master/Athena +# art-type: grid +# art-output: test.HITS.pool.root +# art-output: truth.root + +# MC16 setup +# ATLAS-R2-2016-01-00-01 and OFLCOND-MC16-SDR-14 +AtlasG4_tf.py \ +--conditionsTag 'default:OFLCOND-MC16-SDR-14' \ +--physicsList 'FTFP_BERT_ATL' \ +--truthStrategy 'MC15aPlus' \ +--postInclude 'default:PyJobTransforms/UseFrontier.py' \ +--preInclude 'AtlasG4Tf:SimulationJobOptions/preInclude.BeamPipeKill.py,SimulationJobOptions/preInclude.FrozenShowersFCalOnly.py' \ +--preExec 'AtlasG4Tf:simFlags.TightMuonStepping=True' \ +--DataRunNumber '284500' \ +--geometryVersion 'default:ATLAS-R2-2016-01-00-01' \ +--inputEVNTFile "/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/SimCoreTests/valid1.410000.PowhegPythiaEvtGen_P2012_ttbar_hdamp172p5_nonallhad.evgen.EVNT.e4993.EVNT.08166201._000012.pool.root.1" \ +--outputHITSFile "Hits.pool.root" \ +--maxEvents 4 \ +--imf False + +echo "art-result: $? simulation" + +ArtPackage=$1 +ArtJobName=$2 +# TODO This is a regression test I think. We would also need to compare these files to fixed references +art.py compare grid --entries 4 ${ArtPackage} ${ArtJobName} + +echo "art-result: $? regression" diff --git a/Tools/DirectIOART/generateARTtests.py b/Tools/DirectIOART/generateARTtests.py index d55aef995ef68783143aa03153584d8528c3b021..3953108018cee4d598849f6774b6e0ca4143e554 100755 --- a/Tools/DirectIOART/generateARTtests.py +++ b/Tools/DirectIOART/generateARTtests.py @@ -9,9 +9,9 @@ HAMMERCLOUD_FILE = "mc15_13TeV.423202.Pythia8B_A14_CTEQ6L1_Jpsie3e13.merge.AOD.e PROJECTS = ["AthAnalysis", "AthDerivation", "AthSimulation", "Athena", "AnalysisBase"] XAODCHECKER_TURLS = { - "ROOT" : "root://lcg-lrz-rootd.grid.lrz.de:1094/pnfs/lrz-muenchen.de/data/atlas/dq2/atlasdatadisk/rucio/data18_13TeV/e6/c2/DAOD_MUON0.14316152._000001.pool.root.1", # LRZ-LMU, - "DAVS" : "davs://lcg-lrz-http.grid.lrz.de:443/pnfs/lrz-muenchen.de/data/atlas/dq2/atlasdatadisk/rucio/data18_13TeV/e6/c2/DAOD_MUON0.14316152._000001.pool.root.1", # LRZ-LMU - "HTTPS" : "https://lcg-lrz-http.grid.lrz.de:443/pnfs/lrz-muenchen.de/data/atlas/dq2/atlasdatadisk/rucio/data18_13TeV/e6/c2/DAOD_MUON0.14316152._000001.pool.root.1", # LRZ-LMU + "ROOT" : "root://lcg-lrz-rootd.grid.lrz.de:1094/pnfs/lrz-muenchen.de/data/atlas/dq2/atlaslocalgroupdisk/rucio/data18_13TeV/e6/c2/DAOD_MUON0.14316152._000001.pool.root.1", # LRZ-LMU, + "DAVS" : "davs://lcg-lrz-http.grid.lrz.de:443/pnfs/lrz-muenchen.de/data/atlas/dq2/atlaslocalgroupdisk/rucio/data18_13TeV/e6/c2/DAOD_MUON0.14316152._000001.pool.root.1", # LRZ-LMU + "HTTPS" : "https://lcg-lrz-http.grid.lrz.de:443/pnfs/lrz-muenchen.de/data/atlas/dq2/atlaslocalgroupdisk/rucio/data18_13TeV/e6/c2/DAOD_MUON0.14316152._000001.pool.root.1", # LRZ-LMU } RECO_TF_TURLS = { diff --git a/Tools/DirectIOART/test/test_directioart_analysisbase_xaodchecker_davs.sh b/Tools/DirectIOART/test/test_directioart_analysisbase_xaodchecker_davs.sh index c4306e3f52172c33b418c0a2a38d91fa4cbd38fc..b5d39409bad9a52069a853171a626149a93b9864 100755 --- a/Tools/DirectIOART/test/test_directioart_analysisbase_xaodchecker_davs.sh +++ b/Tools/DirectIOART/test/test_directioart_analysisbase_xaodchecker_davs.sh @@ -6,7 +6,7 @@ set -e -xAODChecker davs://lcg-lrz-http.grid.lrz.de:443/pnfs/lrz-muenchen.de/data/atlas/dq2/atlasdatadisk/rucio/data18_13TeV/e6/c2/DAOD_MUON0.14316152._000001.pool.root.1 +xAODChecker davs://lcg-lrz-http.grid.lrz.de:443/pnfs/lrz-muenchen.de/data/atlas/dq2/atlaslocalgroupdisk/rucio/data18_13TeV/e6/c2/DAOD_MUON0.14316152._000001.pool.root.1 echo "art-result: $? DirectIOART_AnalysisBase_xAODChecker_protocol_DAVS" diff --git a/Tools/DirectIOART/test/test_directioart_analysisbase_xaodchecker_https.sh b/Tools/DirectIOART/test/test_directioart_analysisbase_xaodchecker_https.sh index 73877cbec82db799c38f1d46a6daec5a27b82580..29c73dcceaebeeea135ba00c2ac220b828386fa3 100755 --- a/Tools/DirectIOART/test/test_directioart_analysisbase_xaodchecker_https.sh +++ b/Tools/DirectIOART/test/test_directioart_analysisbase_xaodchecker_https.sh @@ -6,7 +6,7 @@ set -e -xAODChecker https://lcg-lrz-http.grid.lrz.de:443/pnfs/lrz-muenchen.de/data/atlas/dq2/atlasdatadisk/rucio/data18_13TeV/e6/c2/DAOD_MUON0.14316152._000001.pool.root.1 +xAODChecker https://lcg-lrz-http.grid.lrz.de:443/pnfs/lrz-muenchen.de/data/atlas/dq2/atlaslocalgroupdisk/rucio/data18_13TeV/e6/c2/DAOD_MUON0.14316152._000001.pool.root.1 echo "art-result: $? DirectIOART_AnalysisBase_xAODChecker_protocol_HTTPS" diff --git a/Tools/DirectIOART/test/test_directioart_analysisbase_xaodchecker_root.sh b/Tools/DirectIOART/test/test_directioart_analysisbase_xaodchecker_root.sh index 1f34aa4997935faf9596fb24755e13db106e2330..abea51cc1486ad16d1bc751211d9c32b171e0ac9 100755 --- a/Tools/DirectIOART/test/test_directioart_analysisbase_xaodchecker_root.sh +++ b/Tools/DirectIOART/test/test_directioart_analysisbase_xaodchecker_root.sh @@ -6,7 +6,7 @@ set -e -xAODChecker root://lcg-lrz-rootd.grid.lrz.de:1094/pnfs/lrz-muenchen.de/data/atlas/dq2/atlasdatadisk/rucio/data18_13TeV/e6/c2/DAOD_MUON0.14316152._000001.pool.root.1 +xAODChecker root://lcg-lrz-rootd.grid.lrz.de:1094/pnfs/lrz-muenchen.de/data/atlas/dq2/atlaslocalgroupdisk/rucio/data18_13TeV/e6/c2/DAOD_MUON0.14316152._000001.pool.root.1 echo "art-result: $? DirectIOART_AnalysisBase_xAODChecker_protocol_ROOT" diff --git a/Trigger/TrigConfiguration/TrigConfL1Data/Root/ThresholdConfig.cxx b/Trigger/TrigConfiguration/TrigConfL1Data/Root/ThresholdConfig.cxx index 8052fc7fc1caf65008aba2204d22d06dd457f2dc..7ca8c4d3d9515fe22f6048fd974d6ada7ac4bb25 100644 --- a/Trigger/TrigConfiguration/TrigConfL1Data/Root/ThresholdConfig.cxx +++ b/Trigger/TrigConfiguration/TrigConfL1Data/Root/ThresholdConfig.cxx @@ -73,7 +73,7 @@ TrigConf::ThresholdConfig::insertInPosition(std::vector<TriggerThreshold*>& thrV bool -TrigConf::ThresholdConfig::addTriggerThreshold(TriggerThreshold* thr) { +TrigConf::ThresholdConfig::addTriggerThreshold(TriggerThreshold* thr, bool respectRun2Limits) { // put the threshold into the vector of all thresholds m_TriggerThresholdVector.push_back(thr); @@ -86,9 +86,15 @@ TrigConf::ThresholdConfig::addTriggerThreshold(TriggerThreshold* thr) { // check if maximum is exceeded unsigned int max_thr = L1DataDef::typeConfig(ttype).max; if(thr->mapping()>0 && (unsigned int)thr->mapping() >= max_thr) { - cerr << "ThresholdConfig::addTriggerThreshold: threshold mapping " << thr->mapping() - << " exceeds maximum for type '" << thr->type() << "' , abort!" << endl; - throw runtime_error( "ThresholdConfig::addTriggerThreshold: threshold mapping exceeds limit" ); + if ( respectRun2Limits ) { + cerr << "ThresholdConfig::addTriggerThreshold: threshold mapping " << thr->mapping() + << " exceeds maximum for type '" << thr->type() << "' , abort!" << endl; + throw runtime_error( "ThresholdConfig::addTriggerThreshold: threshold mapping exceeds limit" ); + } else { + // for studying run3 menu + cout << "ThresholdConfig::addTriggerThreshold: threshold mapping " << thr->mapping() + << " (" << thr->name() << ") exceeds Run-2 maximum for type '" << thr->type() << "'. This is just for information, Run-2 limits are set to be ignored." << endl; + } } thr->setThresholdNumber(thr->mapping()); diff --git a/Trigger/TrigConfiguration/TrigConfL1Data/TrigConfL1Data/ThresholdConfig.h b/Trigger/TrigConfiguration/TrigConfL1Data/TrigConfL1Data/ThresholdConfig.h index a2963c2f116e7ef72efb6702915791a260e3d2c0..2a833a4407523491c47f01d9460a1b545c32e27e 100644 --- a/Trigger/TrigConfiguration/TrigConfL1Data/TrigConfL1Data/ThresholdConfig.h +++ b/Trigger/TrigConfiguration/TrigConfL1Data/TrigConfL1Data/ThresholdConfig.h @@ -61,7 +61,7 @@ namespace TrigConf { const CaloInfo& caloInfo() const { return m_CaloInfo; } void setCaloInfo (const CaloInfo& ci) { m_CaloInfo = ci; } - bool addTriggerThreshold(TriggerThreshold* value); // add according to type + bool addTriggerThreshold(TriggerThreshold* value, bool respectRun2Limits = true); // add according to type virtual void print(const std::string& indent="", unsigned int detail=1) const; diff --git a/Trigger/TrigConfiguration/TrigConfStorage/src/XMLMenuLoader.cxx b/Trigger/TrigConfiguration/TrigConfStorage/src/XMLMenuLoader.cxx index 3fd6b362df4b6bee5a90f333d7e9bce0a5e0fb1c..55365e6caad7fd68744a8f15480435f629050c24 100755 --- a/Trigger/TrigConfiguration/TrigConfStorage/src/XMLMenuLoader.cxx +++ b/Trigger/TrigConfiguration/TrigConfStorage/src/XMLMenuLoader.cxx @@ -35,6 +35,8 @@ TrigConf::XMLMenuLoader::load(Menu& menu) { IThresholdConfigLoader& thrcfgloader = m_storageMgr.thresholdConfigLoader(); thrcfgloader.setLevel(outputLevel()); thrcfgloader.load( menu.thresholdConfig() ); + std::cerr << std::flush; + std::cout << std::flush; TRG_MSG_INFO("Number of thresholds in the menu: " << menu.thresholdConfig().size()); for(value_type v: pt()) { @@ -122,10 +124,10 @@ TrigConf::XMLMenuLoader::readNode(const ptree::value_type& pt, trig_node->setTriggerThreshold(trig_thr); trig_node->setMultiplicity(mult); } else { - msg() << "XMLMenuLoader: ERROR cannot find threshold " << thr_name << std::endl; + TRG_MSG_ERROR("cannot find threshold " << thr_name); } } else { - msg() << "XMLMenuLoader: ERROR TriggerCondition without threshold " << std::endl; + TRG_MSG_ERROR("TriggerCondition without threshold"); } } else if (node_name == "InternalTrigger") { std::string thr_name(""); diff --git a/Trigger/TrigConfiguration/TrigConfStorage/src/XMLThresholdConfigLoader.cxx b/Trigger/TrigConfiguration/TrigConfStorage/src/XMLThresholdConfigLoader.cxx index 7ce0d5be9b9ca2baddb9009df04dd6288541ee02..bf40ae1255a56817c90d0aebaf42c499205caa2e 100755 --- a/Trigger/TrigConfiguration/TrigConfStorage/src/XMLThresholdConfigLoader.cxx +++ b/Trigger/TrigConfiguration/TrigConfStorage/src/XMLThresholdConfigLoader.cxx @@ -25,17 +25,21 @@ XMLThresholdConfigLoader::load( ThresholdConfig& thrcfg ) { if ( ! is_a("TriggerThresholdList") ) return false; - TRG_MSG_DEBUG("Loading ThresholdConfig object") + TRG_MSG_DEBUG("Loading ThresholdConfig object"); + + bool respectRun2Limits = false; // Get the thresholds XMLTriggerThresholdLoader* thr_ldr = new XMLTriggerThresholdLoader(m_storageMgr); thr_ldr->setLevel(outputLevel()); for(value_type v: pt() ) { + if(v.first == "<xmlcomment>") // ignore comments between the TriggerThresholds + continue; thr_ldr->setPtree(&v); TriggerThreshold* thr = new TriggerThreshold(); if (thr_ldr->load(*thr)) { - TRG_MSG_DEBUG("Adding trigger threshold " << *thr << "(type " << thr->ttype() << ", mapping " << thr->mapping() << ")") - thrcfg.addTriggerThreshold(thr); + TRG_MSG_DEBUG("Adding trigger threshold " << *thr << "(type " << thr->ttype() << ", mapping " << thr->mapping() << ")"); + thrcfg.addTriggerThreshold(thr, respectRun2Limits); } } delete thr_ldr; diff --git a/Trigger/TrigConfiguration/TrigConfigSvc/src/LVL1ConfigSvc.cxx b/Trigger/TrigConfiguration/TrigConfigSvc/src/LVL1ConfigSvc.cxx index c782fd40a0933ff8f7d6903af3d66cc6efe11dbf..b4791e1246764652aaecd83a8a708535bd543a7e 100644 --- a/Trigger/TrigConfiguration/TrigConfigSvc/src/LVL1ConfigSvc.cxx +++ b/Trigger/TrigConfiguration/TrigConfigSvc/src/LVL1ConfigSvc.cxx @@ -134,12 +134,13 @@ LVL1ConfigSvc::initialize() { // // Check if we have a valid trigger menu: // - if( Verifyer::verify( m_ctpConfig->menu(), msg() ) ) { - ATH_MSG_ERROR("Loaded trigger menu fails verification"); - return StatusCode::FAILURE; - } else { - ATH_MSG_DEBUG("Loaded trigger menu passed verification"); - } + ATH_MSG_INFO("Disabled L1 menu verification for Run-3 studies"); +// if( Verifyer::verify( m_ctpConfig->menu(), msg() ) ) { +// ATH_MSG_ERROR("Loaded trigger menu fails verification"); +// return StatusCode::FAILURE; +// } else { +// ATH_MSG_DEBUG("Loaded trigger menu passed verification"); +// } ATH_MSG_DEBUG("Dumping LVL1 configuration"); diff --git a/Trigger/TrigHypothesis/TrigHLTJetHypo/TrigHLTJetHypo/TrigHLTJetHypoUtils/JVTCondition.h b/Trigger/TrigHypothesis/TrigHLTJetHypo/TrigHLTJetHypo/TrigHLTJetHypoUtils/JVTCondition.h new file mode 100644 index 0000000000000000000000000000000000000000..7ef7306494dc6c765822fb67cd0be0d52784b758 --- /dev/null +++ b/Trigger/TrigHypothesis/TrigHLTJetHypo/TrigHLTJetHypo/TrigHLTJetHypoUtils/JVTCondition.h @@ -0,0 +1,43 @@ +/* + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +*/ + +#ifndef TRIGHLTJETHYPO_JVTCONDITION_H +#define TRIGHLTJETHYPO_JVTCONDITION_H + +/******************************************************************** + * + * NAME: JVTCondition.h + * PACKAGE: Trigger/TrigHypothesis/TrigHLTJetHypo + * + * AUTHOR: Jona Bossio + * CREATED: February, 2019 + * + *********************************************************************/ + +#include "TrigHLTJetHypo/TrigHLTJetHypoUtils/IJet.h" +#include "TrigHLTJetHypo/TrigHLTJetHypoUtils/ICondition.h" + + +class JVTCondition: public ICondition{ + public: + JVTCondition(double etThreshold, double workingPoint); + + ~JVTCondition() override {} + + bool isSatisfied(const HypoJetVector&) const override; + + double orderingParameter() const noexcept override; + + std::string toString() const noexcept override; + + private: + + bool passCuts(pHypoJet) const; + + double m_etThreshold; + double m_workingPoint; + +}; + +#endif diff --git a/Trigger/TrigHypothesis/TrigHLTJetHypo/TrigHLTJetHypo/TrigHLTJetHypoUtils/conditionsFactory2.h b/Trigger/TrigHypothesis/TrigHLTJetHypo/TrigHLTJetHypo/TrigHLTJetHypoUtils/conditionsFactory2.h index b1482a0fb65e380fbb42e577938ed9748a3497f5..b3bf1bd26ae72e9bf78e5720eeb72dcc0dc5c662 100644 --- a/Trigger/TrigHypothesis/TrigHLTJetHypo/TrigHLTJetHypo/TrigHLTJetHypoUtils/conditionsFactory2.h +++ b/Trigger/TrigHypothesis/TrigHLTJetHypo/TrigHLTJetHypo/TrigHLTJetHypoUtils/conditionsFactory2.h @@ -88,4 +88,7 @@ Conditions conditionsFactoryJetAttrs(const std::vector<std::string>& jetVars, const std::vector<double>& limitMins, const std::vector<double>& limitMaxs); +// Jona Bossio, February 2019 +Conditions conditionsFactoryJVT(const int& nJets, const double& etThreshold, const double& workingPoint); + #endif diff --git a/Trigger/TrigHypothesis/TrigHLTJetHypo/TrigHLTJetHypo/TrigHLTJetHypo_JVT.h b/Trigger/TrigHypothesis/TrigHLTJetHypo/TrigHLTJetHypo/TrigHLTJetHypo_JVT.h new file mode 100644 index 0000000000000000000000000000000000000000..4431a824be07bd771551c2f26936cefebdefa6d6 --- /dev/null +++ b/Trigger/TrigHypothesis/TrigHLTJetHypo/TrigHLTJetHypo/TrigHLTJetHypo_JVT.h @@ -0,0 +1,46 @@ +/* + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +*/ + +////////////////////////////////////////////////////////////////////// +// +// NAME: Trighltjethypo_JVT.h +// PACKAGE: Trigger/TrigHypothesis/TrigHLTJetHypo +// AUTHOR: Jona Bossio +// +// Selects events with Njets passing ET, eta and JVT requirements +// +////////////////////////////////////////////////////////////////////// + +#ifndef TRIGHLTJETHYPO_JVT_H +#define TRIGHLTJETHYPO_JVT_H + +#include "TrigHLTJetHypo/TrigHLTJetHypoBase.h" +#include "TrigHLTJetHypo/TrigHLTJetHypoUtils/ConditionsDefs.h" + +class TrigHLTJetHypo_JVT : public TrigHLTJetHypoBase { + + public: + + // Constructor + TrigHLTJetHypo_JVT(const std::string& name, ISvcLocator* pSvcLocator); + + HLT::ErrorCode hltInitialize(); + + // Destructor + ~TrigHLTJetHypo_JVT(); + + std::vector<std::shared_ptr<ICleaner>> getCleaners() const override; + Conditions getConditions() const override; + std::shared_ptr<IJetGrouper> getJetGrouper() const override; + bool checkVals() const override; + + private: + + int m_nJets; + double m_ETmin; + double m_workingPoint; + double m_scaleWP = 0.01; + +}; +#endif diff --git a/Trigger/TrigHypothesis/TrigHLTJetHypo/python/TrigHLTJetHypoConfig.py b/Trigger/TrigHypothesis/TrigHLTJetHypo/python/TrigHLTJetHypoConfig.py index 48189b1dce52e74f291f2edea7b3ad9319ab545b..5847c29b6982a2ffba315ade0924533507b0c2a8 100644 --- a/Trigger/TrigHypothesis/TrigHLTJetHypo/python/TrigHLTJetHypoConfig.py +++ b/Trigger/TrigHypothesis/TrigHLTJetHypo/python/TrigHLTJetHypoConfig.py @@ -180,3 +180,20 @@ class TrigHLTJetHypo_JetAttrs (TrigHLTJetHypoConf.TrigHLTJetHypo_JetAttrs): self.AthenaMonTools = [ time, validation, online, cosmic ] +# Jona Bossio, February 2019 +class TrigHLTJetHypo_JVT (TrigHLTJetHypoConf.TrigHLTJetHypo_JVT): + __slots__ = [] + def __init__(self, name, **kwargs): + super( TrigHLTJetHypo_JVT, self ).__init__( name, **kwargs ) + + if KeepMonitoring(self.chain_name, + JetChainsToKeepMonitoring, + strictComparison=True): + validation = TrigHLTJetHypo2ValidationMonitoring() + online = TrigHLTJetHypo2OnlineMonitoring() + cosmic = TrigHLTJetHypo2CosmicMonitoring() + + time = TrigTimeHistToolConfig("HLTJetHypo_JVT_Time") + + self.AthenaMonTools = [ time, validation, online, cosmic ] + diff --git a/Trigger/TrigHypothesis/TrigHLTJetHypo/src/TrigHLTJetHypoUtils/JVTCondition.cxx b/Trigger/TrigHypothesis/TrigHLTJetHypo/src/TrigHLTJetHypoUtils/JVTCondition.cxx new file mode 100644 index 0000000000000000000000000000000000000000..5299a64a07e4a12c2d8504589cc0484990a76471 --- /dev/null +++ b/Trigger/TrigHypothesis/TrigHLTJetHypo/src/TrigHLTJetHypoUtils/JVTCondition.cxx @@ -0,0 +1,86 @@ +/* + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +*/ + +#include "TrigHLTJetHypo/TrigHLTJetHypoUtils/JVTCondition.h" +#include "TrigHLTJetHypo/TrigHLTJetHypoUtils/NonexistantVariable.h" //error handling +#include <sstream> +#include <stdexcept> +#include <TLorentzVector.h> +#include <limits> +#include "GaudiKernel/SystemOfUnits.h" + + +// Constructor +JVTCondition::JVTCondition(double etThreshold, double workingPoint){ + m_etThreshold = etThreshold; + m_workingPoint = workingPoint; +} + + +// isSatisfied() +bool JVTCondition::isSatisfied(const HypoJetVector& ips) const{ + if(ips.size() != 1){ + std::stringstream ss; + ss << "JVT::isSatisfied must see exactly 1 jet, but received " + << ips.size() + << '\n'; + throw std::runtime_error(ss.str()); + } + return passCuts(ips[0]); +} + + +// passCuts() +bool JVTCondition::passCuts(pHypoJet jet) const { + // The conditions for each jet are: ET>etmin, 0<|eta|<320 and (JVT>JVTwp or |eta|>2.5 or pT>60) + static double invGeV = 1./Gaudi::Units::GeV; + auto et = jet->et() * invGeV; + auto pt = jet->pt() * invGeV; + auto absEta = std::abs(jet->eta()); + float detEta = 0; + if(!(jet->getAttribute("DetectorEta",detEta))){ + throw NonexistantVariable("JVT condition cannot retrieve variable 'DetectorEta', 'DetectorEta' does not exist"); + } + auto absdetEta = std::abs(detEta); + bool result = false; + bool jvtApplicable = (absdetEta<2.5 and pt<60) ? true : false; + bool passKinematics = (et>m_etThreshold and absEta<3.2) ? true : false; + if(!jvtApplicable){ // jvt not applicable + return passKinematics; + } else { // jvt applicable + if(!passKinematics) return passKinematics; // kinematic selection not passed + else { // kinematic selection passed + float jvt; + if(!(jet->getAttribute("Jvt",jvt))){ + throw NonexistantVariable("JVT condition cannot retrieve variable 'Jvt', 'Jvt' does not exist"); + } + bool passJVT = (jvt>m_workingPoint) ? true : false; + return passKinematics*passJVT; + } + } + + return result; +} + + +// toString() +std::string JVTCondition::toString() const noexcept { + std::stringstream ss; + ss << "JVTCondition: " + << "jet cuts: " + << "etThreshold " + << m_etThreshold + << " absEtaMin 0" + << " absEtaMax 320" + << " working point " + << m_workingPoint + <<'\n'; + return ss.str(); +} + + +// orderingParameter() +double JVTCondition::orderingParameter() const noexcept { + return m_etThreshold; +} diff --git a/Trigger/TrigHypothesis/TrigHLTJetHypo/src/TrigHLTJetHypoUtils/conditionsFactory2.cxx b/Trigger/TrigHypothesis/TrigHLTJetHypo/src/TrigHLTJetHypoUtils/conditionsFactory2.cxx index 6105fba5740821a22a14441571d87d89f0ac0a6b..5c0331c6f25e58afa641422ccf1ea99d4566d10a 100644 --- a/Trigger/TrigHypothesis/TrigHLTJetHypo/src/TrigHLTJetHypoUtils/conditionsFactory2.cxx +++ b/Trigger/TrigHypothesis/TrigHLTJetHypo/src/TrigHLTJetHypoUtils/conditionsFactory2.cxx @@ -24,6 +24,7 @@ #include "TrigHLTJetHypo/TrigHLTJetHypoUtils/JetAttrsCondition.h" #include "TrigHLTJetHypo/TrigHLTJetHypoUtils/JetAttrsWidthCondition.h" #include "TrigHLTJetHypo/TrigHLTJetHypoUtils/JetAttrsKtDRCondition.h" +#include "TrigHLTJetHypo/TrigHLTJetHypoUtils/JVTCondition.h" #include "TrigHLTJetHypo/TrigHLTJetHypoUtils/FalseCondition.h" #include "TrigHLTJetHypo/TrigHLTJetHypoUtils/conditionsFactory2.h" @@ -239,3 +240,13 @@ Conditions conditionsFactoryFalse(double limitMin, conditions.push_back(ConditionBridge(pCondition)); return conditions; } + +// Jona Bossio, February 2019 +Conditions conditionsFactoryJVT(const int& nJets, const double& etThreshold, const double& workingPoint){ + Conditions conditions; + for(int i = 0; i < nJets; ++i){ + std::shared_ptr<ICondition> pCondition(new JVTCondition(etThreshold, workingPoint)); + conditions.push_back(ConditionBridge(pCondition)); + } + return conditions; +} diff --git a/Trigger/TrigHypothesis/TrigHLTJetHypo/src/TrigHLTJetHypo_JVT.cxx b/Trigger/TrigHypothesis/TrigHLTJetHypo/src/TrigHLTJetHypo_JVT.cxx new file mode 100644 index 0000000000000000000000000000000000000000..dac0e8e2f3d7f77b2b8f171d68fb83f59039199a --- /dev/null +++ b/Trigger/TrigHypothesis/TrigHLTJetHypo/src/TrigHLTJetHypo_JVT.cxx @@ -0,0 +1,71 @@ +/* + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +*/ + +/////////////////////////////////////////////////////////////////////// +// +// NAME: TrigHLTJet_JVT.cxx +// PACKAGE: Trigger/TrigHypothesis/TrigHLTJetHypo +// +// AUTHOR: Jona Bossio +// +/////////////////////////////////////////////////////////////////////// + +#include "TrigHLTJetHypo/TrigHLTJetHypo_JVT.h" + +#include "TrigHLTJetHypo/TrigHLTJetHypoUtils/conditionsFactory2.h" +#include "TrigHLTJetHypo/TrigHLTJetHypoUtils/ConditionsSorter.h" +#include "TrigHLTJetHypo/TrigHLTJetHypoUtils/SingleJetGrouper.h" + +#include <limits> + + +// Constructor +TrigHLTJetHypo_JVT::TrigHLTJetHypo_JVT(const std::string& name, ISvcLocator* pSvcLocator): +TrigHLTJetHypoBase(name, pSvcLocator) { + declareProperty("etmin", m_ETmin); + declareProperty("wp", m_workingPoint); + declareProperty("njet", m_nJets); +} + + +// Destructor +TrigHLTJetHypo_JVT::~TrigHLTJetHypo_JVT(){} + + +// hltInitialize() +HLT::ErrorCode TrigHLTJetHypo_JVT::hltInitialize(){ + ATH_MSG_DEBUG("in initialize()"); + + // Scale working point + m_workingPoint *= m_scaleWP; + + return TrigHLTJetHypoBase::hltInitialize(); +} + + +// getConditions() +Conditions TrigHLTJetHypo_JVT::getConditions() const{ + auto conditions = conditionsFactoryJVT(m_nJets,m_ETmin,m_workingPoint); + std::sort(conditions.begin(), conditions.end(), ConditionsSorter()); + return conditions; +} + + +// getJetGrouper() +std::shared_ptr<IJetGrouper> TrigHLTJetHypo_JVT::getJetGrouper() const { + return std::make_shared<SingleJetGrouper>(); +} + + +// checkVals() +bool TrigHLTJetHypo_JVT::checkVals() const{ + return true; +} + + +// getCleaners() +std::vector<std::shared_ptr<ICleaner>> TrigHLTJetHypo_JVT::getCleaners() const { + std::vector<std::shared_ptr<ICleaner>> v; + return v; +} diff --git a/Trigger/TrigHypothesis/TrigHLTJetHypo/src/components/TrigHLTJetHypo_entries.cxx b/Trigger/TrigHypothesis/TrigHLTJetHypo/src/components/TrigHLTJetHypo_entries.cxx index 5331271a21923256458202eaf7467567295fd859..d2313b8462cdcffad5f882c10e26336c81c4f877 100755 --- a/Trigger/TrigHypothesis/TrigHLTJetHypo/src/components/TrigHLTJetHypo_entries.cxx +++ b/Trigger/TrigHypothesis/TrigHLTJetHypo/src/components/TrigHLTJetHypo_entries.cxx @@ -11,6 +11,7 @@ #include "TrigHLTJetHypo/TrigHLTJetHypo_TLA.h" #include "TrigHLTJetHypo/TrigHLTJetHypo_SMC.h" #include "TrigHLTJetHypo/TrigHLTJetHypo_JetAttrs.h" +#include "TrigHLTJetHypo/TrigHLTJetHypo_JVT.h" DECLARE_ALGORITHM_FACTORY(TrigHLTJetHypo2) @@ -24,6 +25,7 @@ DECLARE_ALGORITHM_FACTORY(TrigHLTJetHypo_SMC) DECLARE_ALGORITHM_FACTORY(TrigHLTJetHypo_HT) DECLARE_ALGORITHM_FACTORY(TrigHLTJetHypo_TLA) DECLARE_ALGORITHM_FACTORY(TrigHLTJetHypo_JetAttrs) +DECLARE_ALGORITHM_FACTORY(TrigHLTJetHypo_JVT) DECLARE_FACTORY_ENTRIES(TrigHLTJetHypo) { DECLARE_ALGORITHM(TrigHLTJetHypo2) @@ -38,5 +40,6 @@ DECLARE_FACTORY_ENTRIES(TrigHLTJetHypo) { DECLARE_ALGORITHM(TrigHLTJetHypo_HT) DECLARE_ALGORITHM(TrigHLTJetHypo_TLA) DECLARE_ALGORITHM(TrigHLTJetHypo_JetAttrs) + DECLARE_ALGORITHM(TrigHLTJetHypo_JVT) } diff --git a/Trigger/TrigHypothesis/TrigTauHypo/python/TrigTauHypoConfig2012.py b/Trigger/TrigHypothesis/TrigTauHypo/python/TrigTauHypoConfig2012.py index 9d78c1b4ce524660cc85345adda6de6882222e05..660db1a4d67ec2c9a883aa484e8114b0549e2793 100755 --- a/Trigger/TrigHypothesis/TrigTauHypo/python/TrigTauHypoConfig2012.py +++ b/Trigger/TrigHypothesis/TrigTauHypo/python/TrigTauHypoConfig2012.py @@ -91,6 +91,17 @@ class EFTauTopoHypo (EFTauTopoHypoBase): super(EFTauTopoHypo, self).__init__(name) setVarCut(self, var, val) +class EFTauTopoFexBase (EFTauTopoFex): + __slots__ = [] + def __init__(self, name): + super(EFTauTopoFexBase, self).__init__(name) + +class EFTauTopoFex (EFTauTopoFexBase): + __slots__ = [] + def __init__(self, name = "EFTauTopoFex", chain_type="ditau"): + super(EFTauTopoFex, self).__init__(name) + self.comb = chain_type + ## HLTVertexPreSelHypo class HLTVertexPreSelHypoBase (HLTVertexPreSelHypo): __slots__ = [] diff --git a/Trigger/TrigHypothesis/TrigTauHypo/src/EFTauTopoFex.cxx b/Trigger/TrigHypothesis/TrigTauHypo/src/EFTauTopoFex.cxx index 2f846f1bb1c0a7426afd472dc398b2a598101a21..754b5e31f172da94ca704465339f0169e775601d 100644 --- a/Trigger/TrigHypothesis/TrigTauHypo/src/EFTauTopoFex.cxx +++ b/Trigger/TrigHypothesis/TrigTauHypo/src/EFTauTopoFex.cxx @@ -30,9 +30,11 @@ EFTauTopoFex::~EFTauTopoFex(){ HLT::ErrorCode EFTauTopoFex::hltInitialize() { ATH_MSG_INFO("in initialize()"); - if (m_comb_type != "ditau" and m_comb_type != "eltau" and m_comb_type != "mutau") + if (m_comb_type != "ditau" && m_comb_type != "eltau" && m_comb_type != "mutau") return HLT::ERROR; + msg() << MSG::INFO << " REGTEST: EFTauTopoFex for "<< m_comb_type <<endmsg; + return HLT::OK; } @@ -119,7 +121,7 @@ HLT::ErrorCode EFTauTopoFex :: accept_tautau_Inputs(HLT::TEConstVec& inputTE, bo else { ATH_MSG_DEBUG("xAOD::TauJetContainer collections successfully retrieved"); } if (vectorTauContainers1.size() < 1 || vectorTauContainers2.size() < 1) { - ATH_MSG_DEBUG(" empty xAOD::TauJetContainer"); + ATH_MSG_WARNING(" empty containers in ditau mode. Container sizes TE1: "<<vectorTauContainers1.size()<<" TE2: "<<vectorTauContainers2.size()); return HLT::OK; } @@ -147,10 +149,10 @@ HLT::ErrorCode EFTauTopoFex :: accept_eltau_Inputs(HLT::TEConstVec& inputTE, boo ATH_MSG_WARNING("Failed to get xAOD::ElectronContainer and xAOD::TauJetContainer collections"); return HLT::MISSING_FEATURE; } - else { ATH_MSG_DEBUG("xAOD::TauJetContainer collections successfully retrieved"); } + else { ATH_MSG_DEBUG("xAOD::ElectronContainer and xAOD::TauJetContainer collections successfully retrieved"); } if (vectorElectronContainers.size() < 1 || vectorTauContainers.size() < 1) { - ATH_MSG_DEBUG(" empty xAOD::ElectronContainer or xAOD::TauJetContainer collections"); + ATH_MSG_WARNING(" empty containers in eltau mode. Container sizes el TE: "<<vectorElectronContainers.size()<<" tau TE: "<<vectorTauContainers.size()); return HLT::OK; } @@ -178,10 +180,10 @@ HLT::ErrorCode EFTauTopoFex :: accept_mutau_Inputs(HLT::TEConstVec& inputTE, boo ATH_MSG_WARNING("Failed to get xAOD::MuonContainer and xAOD::TauJetContainer collections"); return HLT::MISSING_FEATURE; } - else { ATH_MSG_DEBUG("xAOD::TauJetContainer collections successfully retrieved"); } + else { ATH_MSG_DEBUG("xAOD::MuonContainer and xAOD::TauJetContainer collections successfully retrieved"); } if (vectorMuonContainers.size() < 1 || vectorTauContainers.size() < 1) { - ATH_MSG_DEBUG(" empty xAOD::MuonContainer or xAOD::TauJetContainer collections"); + ATH_MSG_WARNING(" empty containers in mutau mode. Container sizes mu TE: "<<vectorMuonContainers.size()<<" tau TE: "<<vectorTauContainers.size()); return HLT::OK; } diff --git a/Trigger/TrigHypothesis/TrigTauHypo/src/EFTauTopoHypo.cxx b/Trigger/TrigHypothesis/TrigTauHypo/src/EFTauTopoHypo.cxx index 2af726ff72d7ccb898dc5e87a7027d3073637b00..fd5a0b52ddd2c2cdfffdba4dbb772550b17da80c 100644 --- a/Trigger/TrigHypothesis/TrigTauHypo/src/EFTauTopoHypo.cxx +++ b/Trigger/TrigHypothesis/TrigTauHypo/src/EFTauTopoHypo.cxx @@ -97,7 +97,7 @@ HLT::ErrorCode EFTauTopoHypo::hltExecute(const HLT::TriggerElement* inputTE, boo m_cutCounter++; m_monDRall = m_dR; if(m_dR<0.1){ - ATH_MSG_WARNING("EFTauTopoHypo: pair with dR "<<m_dR); + ATH_MSG_DEBUG("EFTauTopoHypo: pair with dR "<<m_dR); } if( m_dR>=m_dRmin && m_dR<m_dRmax ){ diff --git a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/CMakeLists.txt b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/CMakeLists.txt index 232b553383f100ee782ad6acf3cbe3dec1355e0e..7218f12cf2ec818665ee31d6501dcf6cf065390c 100644 --- a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/CMakeLists.txt +++ b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/CMakeLists.txt @@ -20,7 +20,8 @@ atlas_depends_on_subdirs( PUBLIC Event/xAOD/xAODTrigL1Calo Event/xAOD/xAODTruth LArCalorimeter/LArCabling - LArCalorimeter/LArRawEvent ) + LArCalorimeter/LArRawEvent + Event/xAOD/xAODTrigger ) # External dependencies: find_package( ROOT COMPONENTS Core Tree MathCore Hist RIO pthread ) @@ -32,14 +33,14 @@ atlas_add_library( TrigL1CaloUpgradeLib PRIVATE_INCLUDE_DIRS ${ROOT_INCLUDE_DIRS} PRIVATE_LINK_LIBRARIES ${ROOT_LIBRARIES} GaudiKernel CaloDetDescrLib CaloEvent CaloIdentifier AthenaBaseComps xAODEventInfo - xAODTracking xAODTrigCalo xAODTrigL1Calo xAODTruth LArCablingLib LArRawEvent) + xAODTracking xAODTrigCalo xAODTrigL1Calo xAODTruth LArCablingLib LArRawEvent xAODTrigger ) atlas_add_component( TrigL1CaloUpgrade src/components/*.cxx INCLUDE_DIRS ${ROOT_INCLUDE_DIRS} LINK_LIBRARIES ${ROOT_LIBRARIES} TrigL1CaloUpgradeLib CaloDetDescrLib CaloEvent CaloIdentifier AthenaBaseComps xAODEventInfo - xAODTracking xAODTrigCalo xAODTrigL1Calo xAODTruth LArCablingLib LArRawEvent) + xAODTracking xAODTrigCalo xAODTrigL1Calo xAODTruth LArCablingLib LArRawEvent xAODTrigger ) # Install files from the package: atlas_install_python_modules( python/*.py ) diff --git a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/python/runEFex.py b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/python/runEFex.py index 0c08f0d362497d4c8dac06559b2e338e6f5c22e5..2d116a47a099631fce1f1333db8ae235cb8955c1 100644 --- a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/python/runEFex.py +++ b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/python/runEFex.py @@ -1,16 +1,13 @@ # Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration - import ROOT -# later on we could define this in ROOT -TestFile="myAODTTv3.root" -OutputFile="test.output.root" +TestFile="" PoolAODInput=[TestFile] # set conditions -DetDescrVersion="ATLAS-R2-2015-03-01-00" -ConditionsTag="OFLCOND-RUN12-SDR-31" +DetDescrVersion="ATLAS-R2-2016-01-00-01" +ConditionsTag="OFLCOND-MC16-SDR-20" # set everything include ("RecExCond/RecExCommon_DetFlags.py") DetFlags.detdescr.all_setOff() @@ -26,11 +23,8 @@ svcMgr.EventSelector.InputCollections = [TestFile] # is attached to the sequence from AthenaCommon.AlgSequence import AlgSequence topSequence = AlgSequence() -#from TrigT1CaloEFex.TrigT1CaloEFexConf import TrigT1CaloEFex -#a=TrigT1CaloEFex() -#topSequence+=a -from TrigT1CaloEFex.EFexAlgo import EFexAlgo -topSequence+=EFexAlgo() + +topSequence += CfgMgr.TrigT1CaloEFex() # initialize athena theApp.initialize() diff --git a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/share/EnableEfexAlgorithms.py b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/share/EnableEfexAlgorithms.py index 932e4cca29ab7114b50d79ea38727ca1c6ad78cb..aba5d4065983dd3f0b7b5ceacc41e8823c491eb8 100755 --- a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/share/EnableEfexAlgorithms.py +++ b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/share/EnableEfexAlgorithms.py @@ -1,5 +1,5 @@ -def enableEfexAlgorithms(SuperCellContainer='SCell', useTDR=False, doLArFex=False, doEle=True, doTau=True): +def enableEfexAlgorithms(SuperCellContainer='SCell', useTDR=False, doLArFex=False, doEle=True, doTau=True, ApplySCQual=True, SCBitMask=0x40): from AthenaCommon.Logging import logging log = logging.getLogger( 'TrigT1CaloFexSim.L1Sim.eFEX' ) @@ -20,7 +20,8 @@ def enableEfexAlgorithms(SuperCellContainer='SCell', useTDR=False, doLArFex=Fals if(useTDR and doEle): log.debug("Adding TDR version of TrigT1CaloEFex/TrigT1CaloEFexCl to AthAlgSeq") algseq += CfgMgr.TrigT1CaloEFex( name="TrigT1CaloEFexCl", - CleanCellContainer=True, + CleanCellContainerSkim=ApplySCQual, + QualBitMask = SCBitMask, OutputClusterName="SClusterCl", SuperCellContainer=SuperCellContainer, EnergyWeightedCluster=True) @@ -28,15 +29,19 @@ def enableEfexAlgorithms(SuperCellContainer='SCell', useTDR=False, doLArFex=Fals elif doEle: log.debug("Adding new version of TrigT1CaloEFex/TrigT1CaloEFexCl to AthAlgSeq") algseq += CfgMgr.TrigT1CaloEFex( name="TrigT1CaloEFexCl", - CleanCellContainer=False, + CleanCellContainer=ApplySCQual, + QualBitMask=SCBitMask, OutputClusterName="SClusterCl", SuperCellContainer=SuperCellContainer, + ClusterEnergyThreshold=4.0, + ApplyBaseLineSelection=False, EnergyWeightedCluster=False) # Schedule the tau algorihtm if doTau: algseq += CfgMgr.TrigT1CaloRun3TauFex(name="TrigT1CaloEFexTau", - CleanCellContainer=False, + CleanCellContainer=False,#Not currently properly enabled for Tau's + #EnableMonitoring=True, SuperCellContainer=SuperCellContainer, OutputClusterName="SClusterTau" ) diff --git a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloBaseFex.cxx b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloBaseFex.cxx index 35eeda03066f886c4a681a9ba96a1c554e84039d..d00b92861316a57811819ed809ad9025a9d606f1 100644 --- a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloBaseFex.cxx +++ b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloBaseFex.cxx @@ -8,6 +8,7 @@ * PACKAGE : Trigger/L1CaloUpgrade/TrigT1CaloEFex * * AUTHOR : Denis Oliveira Damazio + * UPDATED : Philipp Ott * * * **/ @@ -21,12 +22,35 @@ #include "TH2F.h" TrigT1CaloBaseFex::TrigT1CaloBaseFex( const std::string& name, ISvcLocator* pSvcLocator ) : AthAlgorithm (name, pSvcLocator), m_deta(0.08), m_dphi(0.11), m_detaTT(0.125), m_dphiTT(0.15), m_inputCellsName("SCell") { - declareProperty("CleanCellContainer", m_useProvenance=false); + declareProperty("CleanCellContainerSkim", m_useProvenanceSkim=false); + declareProperty("CleanCellContainer", m_useProvenance=true); + declareProperty("QualBitMask", m_qualBitMask=0x40); declareProperty("SuperCellContainer", m_inputCellsName); + declareProperty("EtaClusterFormation", m_deta); + declareProperty("PhiClusterFormation", m_dphi); + declareProperty("NominalDigitizationValue", m_nominalDigitization = 25.); + declareProperty("NominalNoiseThreshold", m_nominalNoise_thresh = 100.); + declareProperty("PhiWidthTDRCluster", m_phiWidth_TDRCluster = 2); + declareProperty("EtaWidthTDRCluster", m_etaWidth_TDRCluster = 3); + declareProperty("ClusterEnergyThresholdLooseEFEX", m_clustET_looseAlg_thresh = 10.); + declareProperty("ClusterEnergyThreshold", m_clustET_thresh = 28.); + declareProperty("ApplyBaseLineSelection", m_apply_BaseLineCuts = true); + declareProperty("EtaWidthREtaIsolationNumerator", m_etaWidth_REtaIsolation_num = 3); + declareProperty("PhiWidthREtaIsolationNumerator", m_phiWidth_REtaIsolation_num = 2); + declareProperty("EtaWidthREtaIsolationDenominator", m_etaWidth_REtaIsolation_den = 7); + declareProperty("PhiWidthREtaIsolationDenominator", m_phiWidth_REtaIsolation_den = 3); + declareProperty("EtaWidthRHadIsolation", m_etaWidth_RHadIsolation = 3); + declareProperty("PhiWidthRHadIsolation", m_phiWidth_RHadIsolation = 3); + declareProperty("EtaWidthWStotIsolation", m_etaWidth_wstotIsolation = 5); + declareProperty("PhiWidthWStotIsolation", m_phiWidth_wstotIsolation = 3); + declareProperty("EnergyThresholdToApplyIsolation", m_clustET_NoIso_thresh = 60.); + declareProperty("REtaThreshold", m_REta_thresh = 0.12); + declareProperty("RHadThreshold", m_RHad_thresh = 0.16); + declareProperty("L1WidthThreshold", m_L1Width_thresh = 0.02); + declareProperty("EtaThresholdToApplyL1Width", m_eta_dropL1Width = 2.3); } StatusCode TrigT1CaloBaseFex::initialize(){ - MsgStream msg(msgSvc(), name()); msg << MSG::DEBUG << "initializing TrigT1CaloBaseFex" << endreq; m_cellsAboveThr.reserve(200); @@ -48,18 +72,18 @@ StatusCode TrigT1CaloBaseFex::getContainers(CaloCellContainer*& scells, const xA const CaloCellContainer* scells_from_sg; if ( evtStore()->retrieve(scells_from_sg,m_inputCellsName).isFailure() ){ msg << MSG::WARNING << "did not find cell container" << endreq; - return StatusCode::SUCCESS; + return StatusCode::FAILURE; } if ( evtStore()->retrieve(TTs,"xAODTriggerTowers").isFailure() ){ msg << MSG::WARNING << "did not find TT container" << endreq; - return StatusCode::SUCCESS; + return StatusCode::FAILURE; } - if ( m_useProvenance ) { + if ( m_useProvenanceSkim ) { if ( !scells ) scells = new CaloCellContainer(SG::VIEW_ELEMENTS); scells->reserve( scells_from_sg->size() ); // max possible size for(auto scell : *scells_from_sg) { - if ( scell->provenance() & 0x40 ) scells->push_back( scell ); + if ( scell->provenance() & m_qualBitMask ) scells->push_back( scell ); } } else { @@ -95,11 +119,11 @@ StatusCode TrigT1CaloBaseFex::getContainers(CaloCellContainer*& scells, const xA return StatusCode::SUCCESS; } - if ( m_useProvenance ) { + if ( m_useProvenanceSkim ) { if ( !scells ) scells = new CaloCellContainer(SG::VIEW_ELEMENTS); scells->reserve( scells_from_sg->size() ); // max possible size for(auto scell : *scells_from_sg) { - if ( scell->provenance() & 0x40 ) scells->push_back( scell ); + if ( scell->provenance() & m_qualBitMask ) scells->push_back( scell ); } } else { @@ -109,18 +133,16 @@ StatusCode TrigT1CaloBaseFex::getContainers(CaloCellContainer*& scells, const xA scells->push_back( scell ); } } - // TODO: add more quality cuts? ... - -#ifndef NDEBUG +//#ifndef NDEBUG for(auto scell : *scells) { - if ( scell->et() < etThresholdGeV*1e3 ) continue; - msg << MSG::DEBUG << "scell : " << scell->et() << " " << scell->eta() << " " << scell->phi() << endreq; + if ( scell->et() < etThresholdGeV*1e3 ) continue; + ATH_MSG_DEBUG( "scell : " << scell->et() << " " << scell->eta() << " " << scell->phi()); } for(auto TT : *TTs) { if ( TT->pt() < etThresholdGeV ) continue; - msg << MSG::DEBUG << "TT : " << TT->pt() << " " << TT->eta() << " " << TT->phi() << endreq; + ATH_MSG_DEBUG( "TT : " << TT->pt() << " " << TT->eta() << " " << TT->phi()); } -#endif +//#endif return StatusCode::SUCCESS; } @@ -135,6 +157,13 @@ StatusCode TrigT1CaloBaseFex::getContainers(const xAOD::TruthParticleContainer*& return StatusCode::SUCCESS; } +void TrigT1CaloBaseFex::createCellList(const CaloCellContainer* scells, std::vector<CaloCell*>& out) { + out.clear(); + for(auto scell : *scells) { + out.push_back(scell); + } + return; +} void TrigT1CaloBaseFex::findCellsAbove(const CaloCellContainer* scells, const float& Thr, std::vector<CaloCell*>& out) { out.clear(); @@ -145,6 +174,15 @@ void TrigT1CaloBaseFex::findCellsAbove(const CaloCellContainer* scells, const fl return; } +void TrigT1CaloBaseFex::findCellsAbove_EMB2_EMEC2(const CaloCellContainer* scells, const float& Thr, std::vector<CaloCell*>& out) { + out.clear(); + for(auto scell : *scells) { + if ( scell->et() < Thr ) continue; + if ( scell->caloDDE()->getSampling()==2 || scell->caloDDE()->getSampling()==6 ) out.push_back(scell); + } + return; +} + void TrigT1CaloBaseFex::findCellsAround(const CaloCellContainer* scells, const CaloCell* cell, std::vector<CaloCell*>& out, const float detaSize, const float dphiSize) const { out.clear(); if ( !cell ) return; @@ -174,6 +212,23 @@ void TrigT1CaloBaseFex::findCellsAround(const CaloCellContainer* scells, const f return; } +void TrigT1CaloBaseFex::findCellsAroundLayerMatched(const CaloCellContainer* scells, const CaloCell* cell, std::vector<CaloCell*>& out, const float detaSize, const float dphiSize) const { + out.clear(); + if ( !cell ) return; + float etacell = cell->eta(); + float phicell = cell->phi(); + for(auto scell : *scells) { + if (scell->caloDDE()->getSampling() != cell->caloDDE()->getSampling() ) continue; + if ( fabsf( scell->eta() - etacell) > detaSize ) continue; + float dphi = fabsf( scell->phi() - phicell); + dphi = fabsf( M_PI - dphi ); + dphi = fabsf( M_PI - dphi ); + if ( fabsf( dphi ) > dphiSize ) continue; + out.push_back(scell); + } + return; +} + void TrigT1CaloBaseFex::findTTsAround(const xAOD::TriggerTowerContainer* scells, const CaloCell* cell, std::vector<const xAOD::TriggerTower*>& out) const { out.clear(); if ( !cell ) return; @@ -236,7 +291,6 @@ float TrigT1CaloBaseFex::sumEmCells2nd(const std::vector<CaloCell*>& scells) con return totalSum; } - float TrigT1CaloBaseFex::sumHadCells(const std::vector<CaloCell*>& scells) const { float totalSum = 0.0; for(auto scell : scells){ @@ -363,3 +417,1258 @@ void TrigT1CaloBaseFex::NoiseThreshold(const CaloCellContainer* scells, const fl return; } +float TrigT1CaloBaseFex::eFEXTDRclus (const std::vector<float>& EM0allCell, const std::vector<float>& EM1allCell, const std::vector<float>& EM2allCell, const std::vector<float>& EM3allCell, const std::vector<float>& HADallCell, const float& seedPlace) const { + int EM2seedindex; + if (seedPlace==0.) EM2seedindex=16; + if (seedPlace==0.0125) EM2seedindex=17; + if (seedPlace==0.0375) EM2seedindex=18; + if (seedPlace==0.05) EM2seedindex=19; + + int SumUpOrDown = -1;//0:up,1:down + int EM2TTup = 0; + int EM2TTdown = 0; + for (int i=0;i<4;i++) { + EM2TTup += EM2allCell[i+28]; + EM2TTdown += EM2allCell[i+4]; + } + if (EM2TTup >= EM2TTdown) SumUpOrDown = 0;//up + if (EM2TTdown > EM2TTup) SumUpOrDown = 1;//down + + int SumRightOrLeft = -1;//0:left,1:right + if (EM2seedindex == 16 or EM2seedindex == 17) SumRightOrLeft = 0;//left + if (EM2seedindex == 18 or EM2seedindex == 19) SumRightOrLeft = 1;//right + + float EM0Sum = 0; + if (SumUpOrDown == 1) EM0Sum = EM0allCell[1] + EM0allCell[4];//down + if (SumUpOrDown == 0) EM0Sum = EM0allCell[4] + EM0allCell[7];//#up + + float EM1Sum = 0; + for (int i=0; i<3; i++) { + if (SumUpOrDown == 1) { //up + EM1Sum += EM1allCell[EM2seedindex-13+i]; + EM1Sum += EM1allCell[EM2seedindex-1+i]; + } + if (SumUpOrDown == 0) { //down + EM1Sum += EM1allCell[EM2seedindex-1+i]; + EM1Sum += EM1allCell[EM2seedindex+11+i]; + } + } + + float EM2Sum = 0; + for (int i=0; i<5; i++) { + if (SumUpOrDown == 1) { //up + EM2Sum += EM2allCell[EM2seedindex-14+i]; + EM2Sum += EM2allCell[EM2seedindex-2+i]; + } + if (SumUpOrDown == 0) { //down + EM2Sum += EM2allCell[EM2seedindex-2+i]; + EM2Sum += EM2allCell[EM2seedindex+10+i]; + } + + } + + float EM3Sum = 0.; + float HADSum = 0.; + if (SumUpOrDown == 1 and SumRightOrLeft == 0) {//down,left + EM3Sum=EM3allCell[0] + EM3allCell[1] + EM3allCell[3] + EM3allCell[4]; + HADSum=HADallCell[0] + HADallCell[1] + HADallCell[3] + HADallCell[4]; + } + if (SumUpOrDown == 1 and SumRightOrLeft == 1) {//down,right + EM3Sum=EM3allCell[1] + EM3allCell[2] + EM3allCell[4] + EM3allCell[5]; + HADSum=HADallCell[1] + HADallCell[2] + HADallCell[4] + HADallCell[5]; + } + if (SumUpOrDown == 0 and SumRightOrLeft == 0) {//up,left + EM3Sum=EM3allCell[3] + EM3allCell[4] + EM3allCell[6] + EM3allCell[7]; + HADSum=HADallCell[3] + HADallCell[4] + HADallCell[6] + HADallCell[7]; + } + if (SumUpOrDown == 0 and SumRightOrLeft == 1) {//up,right + EM3Sum=EM3allCell[4] + EM3allCell[5] + EM3allCell[7] + EM3allCell[8]; + HADSum=HADallCell[4] + HADallCell[5] + HADallCell[7] + HADallCell[8]; + } + float mySum = EM0Sum + EM1Sum + EM2Sum + EM3Sum + HADSum; + return mySum/1000.;//[GeV] +} + +float TrigT1CaloBaseFex::eFEXIsoTDR (const std::vector<float>& EM2allCell, const float& seedPlace) const { + int EM2seedindex; + if (seedPlace==0.) EM2seedindex=16; + if (seedPlace==0.0125) EM2seedindex=17; + if (seedPlace==0.0375) EM2seedindex=18; + if (seedPlace==0.05) EM2seedindex=19; + + int SumUpOrDown = -1;//0:up,1:down + int EM2TTup = 0; + int EM2TTdown = 0; + for (int i=0;i<4;i++) { + EM2TTup += EM2allCell[i+28]; + EM2TTdown += EM2allCell[i+4]; + } + if (EM2TTup >= EM2TTdown) SumUpOrDown = 0;//up + if (EM2TTdown > EM2TTup) SumUpOrDown = 1;//down + + float EM2SmallSum = 0; + if (SumUpOrDown == 0) {//up + for (int i=0;i<3;i++) { + EM2SmallSum += EM2allCell[EM2seedindex-1+i]; + EM2SmallSum += EM2allCell[EM2seedindex-13+i]; + } + } + if (SumUpOrDown == 1) {//down + for (int i=0;i<3;i++) { + EM2SmallSum += EM2allCell[EM2seedindex-1+i]; + EM2SmallSum += EM2allCell[EM2seedindex+11+i]; + } + } + + float EM2LargeSum = 0; + for (int i=0;i<9;i++) { + EM2LargeSum += EM2allCell[EM2seedindex-4+i]; + EM2LargeSum += EM2allCell[EM2seedindex-16+i]; + EM2LargeSum += EM2allCell[EM2seedindex+8+i]; + } + + if(EM2LargeSum > 0) + return EM2SmallSum/EM2LargeSum; + else + return 0; + +} + +bool TrigT1CaloBaseFex::IseFEXIsoTDR ( const std::vector<float>& EM2allCell, const float& seedPlace, const float& Isovalue) const { + bool Is_eFEXIsoTDR = false; + if (TrigT1CaloBaseFex::eFEXIsoTDR(EM2allCell,seedPlace) > Is_eFEXIsoTDR) Is_eFEXIsoTDR = true; + return Is_eFEXIsoTDR; +} + +StatusCode TrigT1CaloBaseFex::getIDHelper(const CaloCell_SuperCell_ID*& m_idHelper){ + const CaloIdManager* caloMgr(0); + if (detStore()->retrieve(caloMgr).isFailure()){ + return StatusCode::FAILURE; + } + m_idHelper = caloMgr->getCaloCell_SuperCell_ID(); + if (!m_idHelper) return StatusCode::FAILURE; + else return StatusCode::SUCCESS; +} + +float TrigT1CaloBaseFex::CaloCellET(CaloCell* const &inputCell, float digitScale, float digitThreshold){ + if (inputCell==NULL) return 0.; + // Check that timing is correct + if ( m_useProvenance ) { + bool correctProv = (inputCell->provenance() & m_qualBitMask); + if (!correctProv) return 0.; + } + // Calculates the ET (before digitization) + float inputCell_energy = inputCell->energy(); + float inputCell_eta = inputCell->eta(); + float inputCell_ET = inputCell_energy / cosh(inputCell_eta); + // Check to see if negative ET values are allowed + bool allowNegs = false; + if (digitScale < 0.){ + digitScale = fabs(digitScale); + allowNegs = true; + } + if (inputCell_ET==0) return 0.; + else if (digitScale==0) return inputCell_ET; + if (allowNegs || inputCell_ET>0.){ + // Split up ET into magnitude & whether it's positive or negative + float posOrNeg = inputCell_ET / fabs(inputCell_ET); + inputCell_ET = fabs(inputCell_ET); + // If no digitisation, return ET following noise cut + if (digitScale == 0){ + if (inputCell_ET>digitThreshold) return inputCell_ET*posOrNeg; + else return 0.; + } + // Apply digitization & then noise cut + else { + float divET = inputCell_ET / digitScale; + int roundET = divET; + float result = digitScale * roundET; + if (digitThreshold == 0) return result*posOrNeg; + else if (result >= digitThreshold) return result*posOrNeg; + else return 0; + } + } + else return 0.; +} + +CaloCell* TrigT1CaloBaseFex::returnCellFromCont(Identifier inputID, const CaloCellContainer* &cellContainer){ + for (auto iCell : *cellContainer){ + bool sameIndices = (iCell->ID() == inputID); + if (sameIndices) return iCell; + } + return NULL; +} + +CaloCell* TrigT1CaloBaseFex::NextEtaCell_Barrel(CaloCell* inputCell, bool upwards, const CaloCellContainer* &cellContainer, const CaloCell_SuperCell_ID* &idHelper){ + MsgStream msg(msgSvc(), name()); + const Identifier ithID = inputCell->ID(); + const int ithEta_index = idHelper->eta(ithID); + const int ithPhi_index = idHelper->phi(ithID); + const int ithSampling = idHelper->sampling(ithID); + const int ithSub_calo = idHelper->sub_calo(ithID); + const int ithPos_neg = idHelper->pos_neg(ithID); + const int ithRegion = idHelper->region(ithID); + + // Extreme indices of each region + int maxEta_index = 0; + int minEta_index = 0; + if (ithRegion==0){ + if (ithSampling == 0) maxEta_index = 14; + else if (ithSampling == 1 || ithSampling == 2) maxEta_index = 55; + else if (ithSampling == 3) maxEta_index = 13; + else msg << MSG::WARNING << "ERROR: " << __LINE__ << endreq; + } + else if (ithRegion==1){ + if (ithSampling == 1) maxEta_index =2; + else if (ithSampling == 2) maxEta_index=0; + else msg << MSG::WARNING << "ERROR: " << __LINE__ << endreq; + } + else msg << MSG::WARNING << "ERROR: " << __LINE__ << endreq; + + // Declare next values, default initialisation is the same as cell + int nextEta_index = ithEta_index; + // Phi shouldn't change! + // Sampling shouldn't change! + int nextSub_calo = ithSub_calo; + int nextPos_neg = ithPos_neg; + int nextRegion = ithRegion; + + // Calculate the increment for eta: it depends on whether we are moving 'up' & which side we are on + int incrementEta; + if (upwards) incrementEta = ithPos_neg; + else incrementEta = -1*ithPos_neg; + + int tracker = 0; + + // If first cell in region & moving more inwards + if (ithEta_index==minEta_index && incrementEta==-1){ + if (ithRegion == 0){ + nextEta_index = 0; + nextPos_neg = ithPos_neg * -1; + tracker = 1; + } + else if (ithRegion == 1){ + nextEta_index = 55; + nextRegion = 0; + tracker = 2; + } + else msg << MSG::WARNING << "ERROR: " << __LINE__ << endreq; + } + + // If last cell in region & moving outwards + else if ((ithEta_index == maxEta_index) && (incrementEta == 1)) { + // Reg 0, Layers 1 & 2 go to barrel region 1 + if ((ithRegion == 0)&&(ithSampling == 1 || ithSampling == 2)){ + nextRegion = 1; + nextEta_index = 0; + tracker = 3; + } + // Reg 0, Layer 0 & 3 go to OW region 0 + else if ((ithRegion == 0)&&(ithSampling == 0 || ithSampling == 3)){ + nextEta_index = 0; + nextRegion = 0; + nextPos_neg = 2*ithPos_neg; + tracker = 4; + } + // Reg 1, Layer 1 go to OW region 2 + else if ((ithRegion == 1)&&(ithSampling == 1)){ + nextEta_index=0; + nextRegion = 2; + nextPos_neg = 2 * ithPos_neg; + tracker = 5; + } + // Reg 1, Layers 1 & 2 go to OW region 1 + else if ((ithRegion == 1)&&(ithSampling == 2)){ + nextEta_index=0; + nextRegion = 1; + nextPos_neg = 2 * ithPos_neg; + tracker = 6; + } + else msg << MSG::WARNING << "ERROR: " << __LINE__ << endreq; + } + // Otherwise 'simply' next cell along + else { + nextEta_index = ithEta_index + incrementEta; + tracker = 7; + } + //msg << MSG::DEBUG << "B Tracker = " << tracker << endreq; + // Form identifier, find cell & return it + // sub_calo, left_pos_neg, 2, region, eta_index, down_phi_index + Identifier nextCellID = idHelper->CaloCell_SuperCell_ID::cell_id(nextSub_calo, nextPos_neg, ithSampling, nextRegion, nextEta_index, ithPhi_index); + CaloCell* nextCell = returnCellFromCont(nextCellID, cellContainer); + if (nextCell == NULL) { + msg << MSG::WARNING << "ERROR: " << __LINE__ << endreq; + msg << MSG::WARNING << "Barrel Tracker = " << tracker << endreq; + msg << MSG::WARNING << "from nextCellID: "<<idHelper->sub_calo(nextCellID)<<", "<<idHelper->pos_neg(nextCellID)<<", "<<idHelper->sampling(nextCellID)<<", "<<idHelper->region(nextCellID)<<", "<<idHelper->eta(nextCellID)<<", "<<idHelper->phi(nextCellID)<<", "<<idHelper->calo_cell_hash(nextCellID)<<", "<<nextCellID << endreq; + } + else { + Identifier newID = nextCell->ID(); + int IDsample = idHelper->sampling(nextCell->ID()); + if (IDsample!=ithSampling){ + msg << MSG::WARNING << "Layer has changed " << " tracker = " << tracker << endreq; + msg << MSG::WARNING << "from nextCellID: "<<idHelper->sub_calo(nextCellID)<<", "<<idHelper->pos_neg(nextCellID)<<", "<<idHelper->sampling(nextCellID)<<", "<<idHelper->region(nextCellID)<<", "<<idHelper->eta(nextCellID)<<", "<<idHelper->phi(nextCellID)<<", "<<idHelper->calo_cell_hash(nextCellID)<<", "<<nextCellID << endreq; + msg << MSG::WARNING << "from ID from new cell: "<<idHelper->sub_calo(newID)<<", "<<idHelper->pos_neg(newID)<<", "<<idHelper->sampling(newID)<<", "<<idHelper->region(newID)<<", "<<idHelper->eta(newID)<<", "<<idHelper->phi(newID)<<", "<<idHelper->calo_cell_hash(newID)<<", "<<newID << endreq; + msg << MSG::WARNING << "comp indices: "<< (nextCellID == newID) << endreq; + } + } + if (nextCell && (nextCell->ID() != nextCellID)) msg << MSG::WARNING << __LINE__ << " does not match" << endreq; + return nextCell; +} + +CaloCell* TrigT1CaloBaseFex::NextEtaCell_OW(CaloCell*inputCell, bool upwards, const CaloCellContainer* &cellContainer, const CaloCell_SuperCell_ID* &idHelper){ + MsgStream msg(msgSvc(), name()); + Identifier ithID = inputCell->ID(); + int ithEta_index = idHelper->eta(ithID); + const int ithPhi_index = idHelper->phi(ithID); + const int ithSampling = idHelper->sampling(ithID); + int ithSub_calo = idHelper->sub_calo(ithID); + int ithPos_neg = idHelper->pos_neg(ithID); + int ithRegion = idHelper->region(ithID); + + // Declare next values, default initialisation is the same as cell + int nextEta_index = ithEta_index; + int nextPhi_index = ithPhi_index; + // Sampling shouldn't change! + int nextSub_calo = ithSub_calo; + int nextPos_neg = ithPos_neg; + int nextRegion = ithRegion; + + // Maximum indices for barrel region 0: + int maxEta_index = 0; + int minEta_index = 0; + // Set max / min values based on ithRegion + if (ithSampling==0) maxEta_index = 2; + else if (ithSampling==2 && ithRegion==0) maxEta_index = 0; + else if (ithSampling==2 && ithRegion==1) maxEta_index = 42; + else if (ithSampling==3) maxEta_index=9; + else if (ithSampling==1){ + switch(ithRegion){ + case 0: + maxEta_index=0; + break; + case 1: + msg << MSG::WARNING << "ERROR " << __LINE__ << endreq; + break; + case 2: + maxEta_index=11; + break; + case 3: + maxEta_index=11;// Should this be 11? - it was 7 + break; + case 4: + maxEta_index=15; + break; + case 5: + maxEta_index=0; + break; + default: + msg << MSG::WARNING << "OW region is not covered: " << ithRegion << endreq; + } + } + else msg << MSG::WARNING << "ERROR: "<< __LINE__<< endreq; + // Calculate the increment for eta: it depends on whether we are moving 'up' & which side we are on + int incrementEta; + int ithSide = ithPos_neg / abs(ithPos_neg); + if (upwards) incrementEta = ithSide; + else incrementEta = ithSide * -1; + int tracker = 0; + // Lower end of OW, going inwards + if (ithEta_index==minEta_index && ithRegion==0 && incrementEta==-1){ + nextPos_neg = ithSide; + if (ithSampling==0){ + nextRegion = 0; + nextEta_index = 14; + tracker = 1; + } + else if (ithSampling==1){ + nextRegion = 1; + nextEta_index = 2; + tracker = 2; + } + else if (ithSampling==2){ + nextRegion = 1; + nextEta_index = 0; + tracker = 3; + } + else if (ithSampling==3){ + nextRegion = 0; + nextEta_index = 13; + tracker = 4; + } + } + // Higher end of OW, going outwards + else if (ithEta_index==maxEta_index && incrementEta==1){ + // Layers 0 & 3 aren't in IW + if (ithSampling==0 || ithSampling==3) return NULL; + else if (ithSampling==2 && ithRegion==0){ + nextRegion = 1; + nextEta_index = 0; + tracker = 5; + } + else if ((ithSampling==2 && ithRegion==1)||(ithSampling==1 && ithRegion==5)){ + // Reaches IW + nextEta_index=0; + nextRegion=0; + nextPhi_index=ithPhi_index/2; + nextPos_neg=3*ithSide; + tracker=11; + } + else if (ithSampling==1 && ithRegion==0){ + // Unsure what to do?? + nextRegion = 2; + nextEta_index = 0; + tracker = 6; + } + else if (ithSampling==1){ + nextRegion=ithRegion + 1; + nextEta_index=0; + tracker = 7; + } + } + // Lower end of region in OW, going inwards + else if (ithEta_index==minEta_index && incrementEta==-1){ + // Shouldn't apply to layers 0 & 3 + // Only case for layer 2 should be in region 1 + if (ithSampling==2){ + nextEta_index=0; + nextRegion=0; + tracker = 8; + } + else if (ithSampling==1){ + if (ithRegion==0){ + nextPos_neg = ithSide; + nextRegion = 1; + nextEta_index = 2; + tracker = 9; + } + else { + tracker = 10; + // Layer one has muliple regions + nextRegion = ithRegion-1; + if (nextRegion==0) { + nextEta_index=0; + msg << MSG::WARNING << "ERROR: "<< __LINE__<< endreq; + } + else if (nextRegion==1) { + nextRegion = 0; + nextEta_index= 0; + } + else if (nextRegion==2) nextEta_index=11; + else if (nextRegion==3) nextEta_index=7; + else if (nextRegion==4) nextEta_index=15; + } + } + } + // Middle of region in middle of endcap + else { + nextEta_index = ithEta_index+incrementEta; + tracker = 11; + } + Identifier nextCellID = idHelper->CaloCell_SuperCell_ID::cell_id(nextSub_calo, nextPos_neg, ithSampling, nextRegion, nextEta_index, nextPhi_index); + CaloCell* nextCell = returnCellFromCont(nextCellID, cellContainer); + if (nextCell == NULL) { + msg << MSG::WARNING << "ERROR: "<<__LINE__<< endreq; + msg << MSG::WARNING << "OW Tracker = "<<tracker<< endreq; + msg << MSG::WARNING << "from nextCellID: "<<idHelper->sub_calo(nextCellID)<<", "<<idHelper->pos_neg(nextCellID)<<", "<<idHelper->sampling(nextCellID)<<", "<<idHelper->region(nextCellID)<<", "<<idHelper->eta(nextCellID)<<", "<<idHelper->phi(nextCellID)<<", "<<idHelper->calo_cell_hash(nextCellID)<<", "<<nextCellID<< endreq; + msg << MSG::WARNING << "Increment eta = "<<incrementEta<<", max_eta = "<<maxEta_index<<", min_eta = "<<minEta_index<< endreq; + } + else { + Identifier newID = nextCell->ID(); + int IDsample = idHelper->sampling(nextCell->ID()); + if (IDsample!=ithSampling){ + msg << MSG::WARNING << "Layer has changed "<<" tracker = "<<tracker<< endreq; + msg << MSG::WARNING << "from nextCellID: "<<idHelper->sub_calo(nextCellID)<<", "<<idHelper->pos_neg(nextCellID)<<", "<<idHelper->sampling(nextCellID)<<", "<<idHelper->region(nextCellID)<<", "<<idHelper->eta(nextCellID)<<", "<<idHelper->phi(nextCellID)<<", "<<idHelper->calo_cell_hash(nextCellID)<<", "<<nextCellID<< endreq; + msg << MSG::WARNING << "from ID from new cell: "<<idHelper->sub_calo(newID)<<", "<<idHelper->pos_neg(newID)<<", "<<idHelper->sampling(newID)<<", "<<idHelper->region(newID)<<", "<<idHelper->eta(newID)<<", "<<idHelper->phi(newID)<<", "<<idHelper->calo_cell_hash(newID)<<", "<<newID<< endreq; + msg << MSG::WARNING << "comp indices: "<<(nextCellID == newID) << endreq; + } + } + if (nextCell && (nextCell->ID() != nextCellID)) msg << MSG::WARNING <<__LINE__<< " does not match" << endreq; + return nextCell; +} + +CaloCell* TrigT1CaloBaseFex::NextEtaCell_IW(CaloCell*inputCell, bool upwards, const CaloCellContainer* &cellContainer, const CaloCell_SuperCell_ID* &idHelper){ + MsgStream msg(msgSvc(), name()); + const Identifier ithID = inputCell->ID(); + const int ithEta_index = idHelper->eta(ithID); + const int ithPhi_index = idHelper->phi(ithID); + const int ithSampling = idHelper->sampling(ithID); + const int ithSub_calo = idHelper->sub_calo(ithID); + const int ithPos_neg = idHelper->pos_neg(ithID); + const int ithRegion = idHelper->region(ithID); + //int tracker =0; + // Declare next values, default initialisation is the same as cell + int nextEta_index = ithEta_index; + int nextPhi_index = ithPhi_index; + // Sampling shouldn't change! + int nextSub_calo = ithSub_calo; + int nextPos_neg = ithPos_neg; + int nextRegion = ithRegion; + + // Maximum indices for barrel region 0: + int maxEta_index = 0; + int minEta_index = 0; + + if (ithRegion==0){ + maxEta_index=2; + minEta_index=0; + } + else if (ithRegion!=1) msg << MSG::WARNING << "ERROR: " <<__LINE__<< endreq; + + // Calculate the increment for eta: it depends on whether we are moving 'up' & which side we are on + int incrementEta; + int ithSide = ithPos_neg / abs(ithPos_neg); + if (upwards) incrementEta = ithSide; + else incrementEta = ithSide * -1; + + // Lower end of region IW, going inwards + if (ithEta_index==minEta_index&& incrementEta==-1){ + // Goes to OW + if (ithRegion == 0){ + nextPos_neg = 2*ithSide; + nextPhi_index=2*ithPhi_index; + if (ithSampling==1){ + // tracker=1; + nextRegion=5; + nextEta_index=0; + } + else if (ithSampling==2){ + // tracker=2; + nextRegion=1; + nextEta_index=42; + } + else msg << MSG::WARNING << "ERROR: " <<__LINE__<< endreq; + } + // Goes to IW region 0 + else if (ithRegion == 1){ + // tracker=3; + nextRegion=0; + nextEta_index=2; + } + } + // Upper end of region in IW + else if (ithEta_index==maxEta_index && incrementEta==1){ + // Goes to region 1 + if (ithRegion==0){ + // tracker=4; + nextRegion=1; + nextEta_index=0; + } + // Reaches FCAL + else if (ithRegion==1) return NULL; + } + // Increment eta like normal + else { + // tracker=5; + nextEta_index=ithEta_index+incrementEta; + } + Identifier nextCellID = idHelper->CaloCell_SuperCell_ID::cell_id(nextSub_calo, nextPos_neg, ithSampling, nextRegion, nextEta_index, nextPhi_index); + CaloCell* nextCell = returnCellFromCont(nextCellID, cellContainer); + if (nextCell && (nextCell->ID() != nextCellID)) msg << MSG::WARNING <<__LINE__<<" does not match" << endreq; + return nextCell; +} + +CaloCell* TrigT1CaloBaseFex::NextEtaCell(CaloCell* inputCell, bool upwards, const CaloCellContainer* &cellContainer, const CaloCell_SuperCell_ID* &idHelper){ + MsgStream msg(msgSvc(), name()); + if (inputCell==NULL) return NULL; + Identifier ithID = inputCell->ID(); + int ithSub_calo = idHelper->sub_calo(ithID); + int ithPos_neg = idHelper->pos_neg(ithID); + CaloCell* tempCell = NULL; + // Only works for LArEM + if (ithSub_calo==0){ + // Barrel regions + if (abs(ithPos_neg)==1) tempCell = NextEtaCell_Barrel(inputCell, upwards, cellContainer, idHelper); + // EC OW + else if (abs(ithPos_neg)==2) tempCell = NextEtaCell_OW(inputCell, upwards, cellContainer, idHelper); + // EC IW + else if (abs(ithPos_neg)==3) tempCell = NextEtaCell_IW(inputCell, upwards, cellContainer, idHelper); + // Not barrel or end cap + else { + msg << MSG::WARNING << "Layer 2 cell not passed to specific method at" << inputCell->eta() << " , " << inputCell->phi() << endreq; + return NULL; + } + return tempCell; + } + // Is FCAL + else { + msg << MSG::WARNING << "Next eta cell called for non-EM SC!" << endreq; + return NULL; + } +} + +int TrigT1CaloBaseFex::restrictPhiIndex(int input_index, bool is64){ + if (is64&&input_index<0) return input_index+64; + else if (is64&&input_index>63) return input_index-64; + else if (!(is64)&&input_index<0) return input_index+32; + else if (!(is64)&&input_index>31) return input_index-32; + else return input_index; +} + +CaloCell* TrigT1CaloBaseFex::NextPhiCell(CaloCell*inputCell, bool upwards, const CaloCellContainer* &cellContainer, const CaloCell_SuperCell_ID* &idHelper){ + MsgStream msg(msgSvc(), name()); + if (inputCell==NULL) return NULL; + const Identifier ithID = inputCell->ID(); + const int ithEta_index = idHelper->eta(ithID); + const int ithPhi_index = idHelper->phi(ithID); + const int ithSampling = idHelper->sampling(ithID); + const int ithSub_calo = idHelper->sub_calo(ithID); + const int ithPos_neg = idHelper->pos_neg(ithID); + const int ithRegion = idHelper->region(ithID); + + bool is64; + if (abs(ithPos_neg)==3) is64 = false; + else is64 = true; + + int incrementPhi; + if (upwards==true) incrementPhi=1; + else incrementPhi=-1; + + const int nextPhi_index = restrictPhiIndex(ithPhi_index+incrementPhi, is64); + Identifier nextCellID = idHelper->CaloCell_SuperCell_ID::cell_id(ithSub_calo, ithPos_neg, ithSampling, ithRegion, ithEta_index, nextPhi_index); + CaloCell* nextCell = returnCellFromCont(nextCellID, cellContainer); + if (nextCell && (nextCell->ID() != nextCellID)) msg << MSG::WARNING << __LINE__ << " does not match" << endreq; + if (nextCell == NULL) msg << MSG::WARNING << "Next phi cell is NULL at " << __LINE__ << endreq; + return nextCell; +} + +bool TrigT1CaloBaseFex::localMax(const CaloCellContainer* &inputContainer, CaloCell* inputCell, const CaloCell_SuperCell_ID* &idHelper, float digitScale, float digitThreshold){ + return localMax(inputContainer, inputCell, 0, idHelper, digitScale, digitThreshold); +} + +bool TrigT1CaloBaseFex::localMax(const CaloCellContainer* &inputContainer, CaloCell* inputCell, int numOthers, const CaloCell_SuperCell_ID* &idHelper, float digitScale, float digitThreshold){ + MsgStream msg(msgSvc(), name()); + if (inputCell == NULL) return false; + // Get ID info + const Identifier inputID = inputCell->ID(); + const int sub_calo = idHelper->sub_calo(inputID); + const int pos_neg = idHelper->pos_neg(inputID); + if (!(sub_calo == 0 || sub_calo == 1) || !(abs(pos_neg) < 4)){ + msg << MSG::WARNING << "ERROR with local max logic" << endreq; + return false; + } + double seedCandidateEnergy = CaloCellET(inputCell, digitScale, digitThreshold); + int nCellsMoreEnergetic = 0; + CaloCell* leftCell = NextEtaCell(inputCell, true, inputContainer, idHelper); + if (leftCell != NULL){ + double leftEnergy = CaloCellET(leftCell, digitScale, 0.); + if (leftEnergy>=seedCandidateEnergy) nCellsMoreEnergetic++; + } + + CaloCell* rightCell = NextEtaCell(inputCell, false, inputContainer, idHelper); + if (rightCell != NULL){ + double rightEnergy = CaloCellET(rightCell, digitScale, 0.); + if (rightEnergy>seedCandidateEnergy) nCellsMoreEnergetic++; + } + + CaloCell* upCell = NextPhiCell(inputCell, true, inputContainer, idHelper); + if (upCell != NULL){ + double upEnergy = CaloCellET(upCell, digitScale, 0.); + if (upEnergy>seedCandidateEnergy) nCellsMoreEnergetic++; + } + + CaloCell* downCell = NextPhiCell(inputCell, false, inputContainer, idHelper); + if (downCell != NULL){ + double downEnergy = CaloCellET(downCell, digitScale, 0.); + if (downEnergy>=seedCandidateEnergy) nCellsMoreEnergetic++; + } + + if (upCell != NULL){ + CaloCell* upRightCell = NextEtaCell(upCell, false, inputContainer, idHelper); + if (upRightCell != NULL){ + double upRightEnergy = CaloCellET(upRightCell, digitScale, 0.); + if (upRightEnergy>seedCandidateEnergy) nCellsMoreEnergetic++; + } + + CaloCell* upLeftCell = NextEtaCell(upCell, true, inputContainer, idHelper); + if (upLeftCell != NULL){ + double upLeftEnergy = CaloCellET(upLeftCell, digitScale, 0.); + if (upLeftEnergy>seedCandidateEnergy) nCellsMoreEnergetic++; + } + } + + if (downCell != NULL){ + CaloCell* downRightCell = NextEtaCell(downCell, false, inputContainer, idHelper); + if (downRightCell != NULL){ + double downRightEnergy = CaloCellET(downRightCell, digitScale, 0.); + if (downRightEnergy>seedCandidateEnergy) nCellsMoreEnergetic++; + } + + CaloCell* downLeftCell = NextEtaCell(downCell, true, inputContainer, idHelper); + if (downLeftCell != NULL){ + double downLeftEnergy = CaloCellET(downLeftCell, digitScale, 0.); + if (downLeftEnergy>seedCandidateEnergy) nCellsMoreEnergetic++; + } + } + // If candidate is more energetic than all of neighbours, it is a local max + if (nCellsMoreEnergetic <= numOthers) return true; + else return false; +} + +void TrigT1CaloBaseFex::addOnce(CaloCell* inputCell, std::vector<CaloCell*> &outputVector){ + MsgStream msg(msgSvc(), name()); + if (inputCell==NULL) return; + bool alreadyThere = false; + for (auto oCell : outputVector){ + if (oCell==NULL) msg << MSG::WARNING << "NULL cell in vector" << endreq; + if (inputCell->ID() == oCell->ID()) alreadyThere=true; + } + if (!alreadyThere) outputVector.push_back(inputCell); +} + +std::vector<CaloCell*> TrigT1CaloBaseFex::L2cluster(CaloCell* centreCell, int etaWidth, int phiWidth, const CaloCellContainer* scells, const CaloCell_SuperCell_ID* idHelper, float digitScale, float digitThresh ){ + // Forms the central band of cells, spread in phi + MsgStream msg(msgSvc(), name()); + std::vector<CaloCell*> centCells; + centCells.push_back(centreCell); + CaloCell* upPhiCell = NextPhiCell(centreCell,true,scells,idHelper); + CaloCell* downPhiCell = NextPhiCell(centreCell,false,scells,idHelper); + CaloCell* energeticPhiCell; + // Finds the most energetic phi neighbour, defaulting to the 'down' side if they are equal + if (CaloCellET(upPhiCell, digitScale, digitThresh) > CaloCellET(downPhiCell, digitScale, digitThresh)) energeticPhiCell = upPhiCell; + else energeticPhiCell = downPhiCell; + if (phiWidth == 2) addOnce(energeticPhiCell, centCells); //centCells.push_back(energeticPhiCell); + else if (phiWidth == 3){ + addOnce(upPhiCell, centCells); //centCells.push_back(upPhiCell); + addOnce(downPhiCell, centCells); //centCells.push_back(downPhiCell); + } + else if (phiWidth > 3) msg << MSG::WARNING << "ERROR: phiWidth not 2 or 3!!!" << endreq; + // Forms the main cluster. Starts with each SC in the central band and spreads outward in eta + std::vector<CaloCell*> clusCells; + int halfEtaWidth = (etaWidth-1)/2; + int backToEta = (2*halfEtaWidth)+1; + if (backToEta != etaWidth) msg << MSG::WARNING << "Eta width doesn't match! " << backToEta << " -> " << halfEtaWidth << " -> " << etaWidth << " " << __LINE__ << endreq; + for (auto ithCentCell : centCells){ + addOnce(ithCentCell, clusCells); //clusCells.push_back(ithCentCell); + if (etaWidth > 1){ + CaloCell* tempRightCell = NextEtaCell(ithCentCell,true,scells,idHelper); + CaloCell* tempLeftCell = NextEtaCell(ithCentCell,false,scells,idHelper); + addOnce(tempRightCell, clusCells); //clusCells.push_back(tempRightCell); + addOnce(tempLeftCell, clusCells); //clusCells.push_back(tempLeftCell); + for (int i = 1; i < halfEtaWidth; i++){ + tempRightCell = NextEtaCell(tempRightCell,true,scells,idHelper); + tempLeftCell = NextEtaCell(tempLeftCell,false,scells,idHelper); + addOnce(tempRightCell, clusCells); //clusCells.push_back(tempRightCell); + addOnce(tempLeftCell, clusCells); //clusCells.push_back(tempLeftCell); + } + } + } + return clusCells; +} + +void TrigT1CaloBaseFex::fromLayer2toLayer1(const CaloCellContainer* &inputContainer, CaloCell* inputCell, std::vector<CaloCell*> &outputVector, const CaloCell_SuperCell_ID* &idHelper){ + MsgStream msg(msgSvc(), name()); + if (inputCell==NULL) return; + // Gets ID info + Identifier inputID = inputCell->ID(); + int sampling = idHelper->sampling(inputID); + const int sub_calo = idHelper->sub_calo(inputID); + const int pos_neg = idHelper->pos_neg(inputID); + int region = idHelper->region(inputID); + int eta_index = idHelper->eta(inputID); + const int phi_index = idHelper->phi(inputID); + int tracker = 0; + if (sampling != 2) return; + // Default values are same as input + int outputRegion = region; + int outputEta = eta_index; + bool oneCell = false; // True if layer 2 SC only matches to a single layer 1 SC + // Barrel reg 0 + if ((abs(pos_neg) == 1)&&(region == 0)){ + oneCell = true; + tracker = 1; + } + // Barrel reg 1: 3 layer 1 SCs for 1 layer 2 SC + else if ((abs(pos_neg) == 1)&&(region == 1)){ + tracker = 2; + for (unsigned int i = 0; i < 3; i++){ + Identifier resultID = idHelper->CaloCell_SuperCell_ID::cell_id(sub_calo, pos_neg, 1, region, i, phi_index); + CaloCell* resultCell = returnCellFromCont(resultID, inputContainer); + addOnce(resultCell,outputVector); + } + } + else if (abs(pos_neg)==2&&((region==0)||(region==1 && eta_index <= 2))){ + // OW region 0: 1 layer 1 SC for 4 layer 2 SCs + tracker = 3; + outputRegion = 0; + outputEta = 0; + oneCell = true; + } + else if (abs(pos_neg)==2&®ion==1 && eta_index <= 14){ + // OW region 1 (on doc): 1:1 match + tracker = 4; + outputRegion = 2; + outputEta = eta_index - 3; + oneCell = true; + } + else if (abs(pos_neg) == 2 && region == 1 && eta_index <= 22){ + // OW Reg 2 (on doc): 6:4 split!! + outputRegion = 3; + // Middle 2 layer cells match central 2 layer 1 cells + if (eta_index%4 == 0 || eta_index%4 ==1){ + tracker = 5; + oneCell = true; + if (eta_index < 20) outputEta = eta_index -14; + else outputEta = eta_index - 12; + } + // Edges have a 2:1 ratio. 2 L1s for each L2 + else { + tracker = 6; + int offset = 0; + if (eta_index == 15) offset = 15; + else if (eta_index == 18) offset = 14; + else if (eta_index == 19) offset = 13; + else if (eta_index == 22) offset = 12; + else { + msg << MSG::WARNING << "ERROR: " << __LINE__ << endreq; + } + for (unsigned int i = 0; i < 2; i++){ + outputEta = i+eta_index - offset; + Identifier resultID = idHelper->CaloCell_SuperCell_ID::cell_id(sub_calo, pos_neg, 1, outputRegion, outputEta, phi_index); + CaloCell* resultCell = returnCellFromCont(resultID, inputContainer); + addOnce(resultCell,outputVector); + } + } + } + else if (abs(pos_neg)==2 && region == 1 && eta_index <= 38){ + // OW Reg 3 (on doc): 1:1 match + tracker = 7; + oneCell = true; + outputRegion = 4; + outputEta = eta_index - 23; + } + else if (abs(pos_neg)==2 && region == 1 && eta_index <= 42){ + // OW Reg 4 (on doc): 1 L1 for all 4 L2s + tracker = 8; + oneCell = true; + outputEta = 0; + outputRegion = 5; + } + if (oneCell){ + Identifier resultID = idHelper->CaloCell_SuperCell_ID::cell_id(sub_calo, pos_neg, 1, outputRegion, outputEta, phi_index); + CaloCell* resultCell = returnCellFromCont(resultID, inputContainer); + addOnce(resultCell,outputVector); + } + //msg << MSG::DEBUG << "L2->L1 tracker = " << tracker << endreq; +} + +CaloCell* TrigT1CaloBaseFex::fromLayer2toPS(const CaloCellContainer* &inputContainer, CaloCell* inputCell, const CaloCell_SuperCell_ID* &idHelper){ + // Gets ID info + MsgStream msg(msgSvc(), name()); + if (inputCell==NULL) return NULL; + CaloCell* resultCell = NULL; + Identifier inputID = inputCell->ID(); + int sampling = idHelper->sampling(inputID); + const int sub_calo = idHelper->sub_calo(inputID); + const int pos_neg = idHelper->pos_neg(inputID); + int region = idHelper->region(inputID); + int eta_index = idHelper->eta(inputID); + const int phi_index = idHelper->phi(inputID); + int tracker = 0; + if (sampling != 2) return NULL; + if (abs(pos_neg)==2 && (eta_index<3 || eta_index>14)) return NULL; + if (abs(pos_neg)==3) return NULL; + // Default values are same as input + int outputRegion = region; + int outputEta = eta_index; + // Is barrel Reg 0 + if (abs(pos_neg)==1 && region ==0){ + int outputEta = eta_index/4; + Identifier resultID = idHelper->CaloCell_SuperCell_ID::cell_id(sub_calo, pos_neg, 0, outputRegion, outputEta, phi_index); + resultCell = returnCellFromCont(resultID, inputContainer); + tracker = 1; + } + else if (abs(pos_neg)==1 && region ==1){ + Identifier resultID = idHelper->CaloCell_SuperCell_ID::cell_id(sub_calo, pos_neg, 0, 0, 14, phi_index); + resultCell = returnCellFromCont(resultID, inputContainer); + tracker = 2; + } + else if (abs(pos_neg)==2 && region ==1){ + outputEta = (eta_index - 3)/4; + outputRegion = 0; + Identifier resultID = idHelper->CaloCell_SuperCell_ID::cell_id(sub_calo, pos_neg, 0, outputRegion, outputEta, phi_index); + resultCell = returnCellFromCont(resultID, inputContainer); + tracker = 3; + } + //msg << MSG::DEBUG << "L2->PS tracker = " << tracker << endreq; + return resultCell; +} + +CaloCell* TrigT1CaloBaseFex::fromLayer2toLayer3(const CaloCellContainer* &inputContainer, CaloCell* inputCell, const CaloCell_SuperCell_ID* &idHelper){ + // Gets ID info + MsgStream msg(msgSvc(), name()); + if (inputCell==NULL) return NULL;; + CaloCell* resultCell = NULL; + Identifier inputID = inputCell->ID(); + int sampling = idHelper->sampling(inputID); + const int sub_calo = idHelper->sub_calo(inputID); + const int pos_neg = idHelper->pos_neg(inputID); + int region = idHelper->region(inputID); + int eta_index = idHelper->eta(inputID); + const int phi_index = idHelper->phi(inputID); + int tracker = 0; + if (sampling != 2) return NULL; + else if (abs(pos_neg)==1 && ((region==0 && eta_index>53)||region==1)) return NULL; + else if ((abs(pos_neg)==2) && (region == 0 || (region == 1 && eta_index < 3))) return NULL; + else if (abs(pos_neg)==3) return NULL; + // Default values are same as input + int outputRegion = region; + int outputEta = eta_index; + // Is barrel Reg 0 + if (abs(pos_neg)==1 && region ==0){ + int outputEta = eta_index/4; + Identifier resultID = idHelper->CaloCell_SuperCell_ID::cell_id(sub_calo, pos_neg, 3, outputRegion, outputEta, phi_index); + resultCell = returnCellFromCont(resultID, inputContainer); + tracker = 1; + } + else if (abs(pos_neg)==2 && region ==1){ + outputEta = (eta_index - 3)/4; + outputRegion = 0; + Identifier resultID = idHelper->CaloCell_SuperCell_ID::cell_id(sub_calo, pos_neg, 3, outputRegion, outputEta, phi_index); + resultCell = returnCellFromCont(resultID, inputContainer); + tracker = 2; + } + //msg << MSG::DEBUG << "L2->L3 tracker = " << tracker << endreq; + return resultCell; +} + +std::vector<CaloCell*> TrigT1CaloBaseFex::TDR_Clus(CaloCell* centreCell, int etaWidth, int phiWidth, const CaloCellContainer* scells,const CaloCell_SuperCell_ID* idHelper, float digitScale, float digitThresh){ + // Find the L2 cells + MsgStream msg(msgSvc(), name()); + std::vector<CaloCell*> L2cells = L2cluster(centreCell, etaWidth, phiWidth, scells, idHelper, digitScale, digitThresh); + // Forms a vector of the centre L2 cells (to be used to find L0/3 SCs) + std::vector<CaloCell*> centCells; + centCells.push_back(centreCell); + CaloCell* upPhiCell = NextPhiCell(centreCell,true,scells,idHelper); + CaloCell* downPhiCell = NextPhiCell(centreCell,false,scells,idHelper); + CaloCell* energeticPhiCell; + // If the phi width is 2, the most energetic neighbour is chosen (defaulting to the 'down' side) + // If the phi width is 3, both neighbours are added + if (phiWidth > 1){ + if (CaloCellET(upPhiCell, digitScale, digitThresh) > CaloCellET(downPhiCell, digitScale, digitThresh)) energeticPhiCell = upPhiCell; + else energeticPhiCell = downPhiCell; + if (phiWidth == 2) addOnce(energeticPhiCell, centCells); //centCells.push_back(energeticPhiCell); + else if (phiWidth == 3){ + addOnce(upPhiCell, centCells); //centCells.push_back(upPhiCell); + addOnce(downPhiCell, centCells); //centCells.push_back(downPhiCell); + } + else if (phiWidth > 3) msg << MSG::WARNING << "ERROR: phiWidth not 2 or 3!!!" << endreq; + } + // The actual cluster is initialised + std::vector<CaloCell*> fullClus; + // The L1&2 SCs are added that match the full width + for (auto ithL2Cell : L2cells){ + fullClus.push_back(ithL2Cell); + fromLayer2toLayer1(scells, ithL2Cell, fullClus, idHelper); + } + // The L0&3 SCs are added that match the central L2 cells + for (auto ithL2CentCell : centCells){ + addOnce(fromLayer2toPS(scells, ithL2CentCell, idHelper),fullClus); + addOnce(fromLayer2toLayer3(scells, ithL2CentCell, idHelper),fullClus); + } + return fullClus; +} + +double TrigT1CaloBaseFex::sumVectorET(const std::vector<CaloCell*> &inputVector, float digitScale, float digitThreshold){ + double TotalET=0.0; + for (auto ithCell : inputVector){ + if (ithCell!=NULL) TotalET += CaloCellET(ithCell, digitScale, digitThreshold); + } + return TotalET; +} + +bool TrigT1CaloBaseFex::checkDig(float EM_ET, float digitScale, float digitThresh){ + MsgStream msg(msgSvc(), name()); + if (EM_ET == 0 || digitScale == 0) return true; + else { + int div = EM_ET / digitScale; + if (div * digitScale == EM_ET) return true; + else { + msg << MSG::WARNING << "ET = " << EM_ET << ", digitThresh = " << digitThresh << " digitScale = " << digitScale << " div = " << div << " " << " -> div * digitScale" << endreq; + return false; + } + } +} + +double TrigT1CaloBaseFex::EMClusET(CaloCell* centreCell, int etaWidth, int phiWidth, const CaloCellContainer* scells, const CaloCell_SuperCell_ID* idHelper, float digitScale, float digitThresh){ + MsgStream msg(msgSvc(), name()); + // Sums the ET of the vector + std::vector<CaloCell*> fullClus = TDR_Clus(centreCell, etaWidth, phiWidth, scells, idHelper, digitScale,digitThresh); + double EMcomp = sumVectorET(fullClus, digitScale, digitThresh); + bool EMcheck = checkDig(EMcomp, digitScale, digitThresh); + if (!EMcheck) msg << MSG::WARNING << "EMcomp not digitised " << EMcomp << " " << digitScale << " " << digitThresh << endreq; + double total = EMcomp; + return total; +} + +bool TrigT1CaloBaseFex::SameTT(CaloCell* inputCell1, CaloCell* inputCell2, const CaloCell_SuperCell_ID* &idHelper){ + const Identifier ID1 = inputCell1->ID(); + int phi1 = idHelper->phi(ID1); + const Identifier ID2 = inputCell2->ID(); + int phi2 = idHelper->phi(ID2); + if (phi1 != phi2) return false; + int pn1 = idHelper->pos_neg(ID1); + int pn2 = idHelper->pos_neg(ID2); + if (pn1 != pn2) return false; + // Is barrel + if (abs(pn1)==1){ + int reg1 = idHelper->region(ID1); + int reg2 = idHelper->region(ID2); + if (reg1 != reg2) return false; + int etaDiv1 = idHelper->eta(ID1)/4; + int etaDiv2 = idHelper->eta(ID2)/4; + if (etaDiv1 == etaDiv2) return true; + else return false; + } + // OW + else if (abs(pn1)==2){ + int reg1 = idHelper->region(ID1); + int reg2 = idHelper->region(ID2); + int eta1 = idHelper->eta(ID1); + int eta2 = idHelper->eta(ID2); + if ((reg1 == 0 && reg2 == 1 && eta2 < 3 ) || (reg2 == 0 && reg1 == 1 && eta1 < 3 )) return true; + else { + if (reg1 != reg2) return false; + int etaDiv1 = (idHelper->eta(ID1) - 3)/4; + int etaDiv2 = (idHelper->eta(ID2) - 3)/4; + if (etaDiv1 == etaDiv2) return true; + else return false; + } + } + else return false; +} + +double TrigT1CaloBaseFex::L2clusET(CaloCell* centreCell, int etaWidth, int phiWidth, const CaloCellContainer* scells, const CaloCell_SuperCell_ID* idHelper, float digitScale, float digitThresh){ + return sumVectorET(L2cluster(centreCell, etaWidth, phiWidth, scells, idHelper, digitScale, digitThresh), digitScale, digitThresh); +} + +double TrigT1CaloBaseFex::REta(CaloCell* centreCell, int etaWidth1, int phiWidth1, int etaWidth2, int phiWidth2, const CaloCellContainer* scells, const CaloCell_SuperCell_ID* idHelper, float digitScale, float digitThresh){ + MsgStream msg(msgSvc(), name()); + // Check windows sizes are right way round + if (etaWidth1 > etaWidth2) msg << MSG::WARNING << "REta ERROR: eta1 = " << etaWidth1 << ", eta2 = " << etaWidth2 << endreq; + if (phiWidth1 > phiWidth2) msg << MSG::WARNING << "Rphi ERROR: phi1 = " << phiWidth1 << ", phi2 = " << phiWidth2 << endreq; + // Finds ET of windows + double inner_ET = L2clusET(centreCell, etaWidth1, phiWidth1, scells, idHelper, digitScale, digitThresh); + double outer_ET = L2clusET(centreCell, etaWidth2, phiWidth2, scells, idHelper, digitScale, digitThresh); + // Find normal value of REta & changes it to my version + double normal_REta; + if (inner_ET != 0. && outer_ET==0.) normal_REta = 0.; + else if (inner_ET==0.) normal_REta = 0.; + else normal_REta = inner_ET / outer_ET; + if (normal_REta < 0) normal_REta = 0.; + double my_REta = 1-normal_REta; + return my_REta; +} + +double TrigT1CaloBaseFex::TT_phi(const xAOD::TriggerTower* &inputTower){ + MsgStream msg(msgSvc(), name()); + if (inputTower == NULL){ + msg << MSG::WARNING << "Tower is NULL in phi transformation!" << endreq; + return 0.; + } + else { + double phi = inputTower->phi(); + if (phi > M_PI) phi = phi - 2*M_PI; + return phi; + } +} + +double TrigT1CaloBaseFex::dR(double eta1, double phi1, double eta2, double phi2){ + double etaDif = eta1 - eta2; + double phiDif = fabs(phi1 - phi2); + if (phiDif > M_PI) phiDif = phiDif - (2*M_PI); + double result = sqrt(pow(etaDif,2)+pow(phiDif,2)); + return result; +} + +const xAOD::TriggerTower* TrigT1CaloBaseFex::matchingHCAL_TT(CaloCell* &inputCell, const xAOD::TriggerTowerContainer* &TTContainer){ + MsgStream msg(msgSvc(), name()); + std::vector<const xAOD::TriggerTower*> matchingTTs; + if (TTContainer==NULL) return NULL; + if (TTContainer->size()==0) return NULL; + if (inputCell==NULL) return NULL; + for (auto ithTT : *TTContainer){ + if (ithTT->sampling()==1){ + float ithTT_eta = ithTT->eta(); + float ithTT_phi = TT_phi(ithTT); + float ithdR = dR(ithTT_eta, ithTT_phi, inputCell->eta(), inputCell->phi()); + if (ithdR < 0.05) matchingTTs.push_back(ithTT); + } + } + if (matchingTTs.size()==1) return matchingTTs[0]; + else if (matchingTTs.size()!=0){ + msg << MSG::WARNING << "ERROR: More than one matching HCAL TT!!! (Returned Null)" << endreq; + } + return NULL; +} + +CaloCell* TrigT1CaloBaseFex::matchingHCAL_LAr(CaloCell* &inputCell, const CaloCellContainer* &SCContainer, const CaloCell_SuperCell_ID* &idHelper){ + MsgStream msg(msgSvc(), name()); + std::vector<CaloCell*> matchingCells; + if (inputCell==NULL) return NULL; + for (auto ithSC : *SCContainer){ + Identifier ithID = ithSC->ID(); + int ithSub_calo = idHelper->sub_calo(ithID); + if (ithSub_calo == 1){ + double ithdR = dR(inputCell->eta(), inputCell->phi(), ithSC->eta(), ithSC->phi()); + if (ithdR < 0.05) matchingCells.push_back(ithSC); + } + } + if (matchingCells.size()==1) return matchingCells[0]; + else if (matchingCells.size()==0){ + msg << MSG::WARNING << "ERROR: No match betweem LAr ECAL SC and LAr HCAL SC!!! Input coords: " << inputCell->eta() << ", " << inputCell->phi() << endreq; + } + else if (matchingCells.size()!=0) { + msg << MSG::WARNING << "ERROR: More than one matching LAr HCAL SC!!! (Returned Null)" << endreq; + msg << MSG::WARNING << "Input cell coords: " << inputCell->eta() << " x " << inputCell->phi() << endreq; + for (auto ithMatch : matchingCells){ + msg << MSG::WARNING << " " << ithMatch->eta() << " x " << ithMatch->phi() << ", dR = " << dR(inputCell->eta(), inputCell->phi(), ithMatch->eta(), ithMatch->phi()) << endreq; + } + } + return NULL; +} + +double TrigT1CaloBaseFex::TT_ET(const xAOD::TriggerTower* &inputTower){ + MsgStream msg(msgSvc(), name()); + if (inputTower == NULL){ + msg << MSG::WARNING << "Tower is NULL!" << endreq; + return 0.; + } + else if (inputTower->cpET() < 0.) return 0; + else { + return 500*inputTower->cpET(); + } +} + +double TrigT1CaloBaseFex::HadronicET(std::vector<CaloCell*> inputVector, const CaloCellContainer* scells, const xAOD::TriggerTowerContainer* &TTContainer, const CaloCell_SuperCell_ID* idHelper,float digitScale, float digitThresh){ + // Finds the HCAL SCs & TTs matching the input cluster + std::vector<CaloCell*> HCAL_LAr_vector; + std::vector<const xAOD::TriggerTower*> HCAL_TT_vector; + for (auto ithCell : inputVector){ + if (fabs(ithCell->eta())<1.5){ + const xAOD::TriggerTower* tempTT = matchingHCAL_TT(ithCell, TTContainer); + if (tempTT != NULL) HCAL_TT_vector.push_back(tempTT); + } + else if (fabs(ithCell->eta())<2.5){ + CaloCell* tempLArHad = matchingHCAL_LAr(ithCell, scells, idHelper); + if (tempLArHad != NULL) HCAL_LAr_vector.push_back(tempLArHad); + } + } + // Sums the ET in the HCAL + double HadET = 0.; + for (auto ithTT : HCAL_TT_vector) {HadET += TT_ET(ithTT);} + for (auto ithSC : HCAL_LAr_vector) {HadET += CaloCellET(ithSC, digitScale, digitThresh);} + return HadET; +} + +double TrigT1CaloBaseFex::RHad(CaloCell* centreCell, int etaWidth, int phiWidth, const CaloCellContainer* scells, const xAOD::TriggerTowerContainer* &TTContainer, const CaloCell_SuperCell_ID* idHelper, float digitScale, float digitThresh, float &HadET){ + MsgStream msg(msgSvc(), name()); + std::vector<CaloCell*> fullClus = TDR_Clus(centreCell, etaWidth, phiWidth, scells, idHelper, digitScale, digitThresh); + double EMcomp = sumVectorET(fullClus, digitScale, digitThresh); + double HCALcomp = HadronicET(L2cluster(centreCell, etaWidth, phiWidth, scells, idHelper, digitScale, digitThresh), scells, TTContainer, idHelper, digitScale, digitThresh); + HadET = HCALcomp/1e3; + double result = HCALcomp/(EMcomp+HCALcomp); + if (result < 0. || result > 1.){ + msg << MSG::WARNING << "RHAD ERROR -> " << etaWidth << " * " << phiWidth << endreq; + msg << MSG::WARNING << "fullClus count = " << fullClus.size() << ", EMcomp = " << EMcomp << ", HCALcomp = " << HCALcomp << endreq; + } + return result; +} + +double TrigT1CaloBaseFex::L1Width(CaloCell* centreCell, int etaWidth, int phiWidth, const CaloCellContainer* scells, const CaloCell_SuperCell_ID* idHelper, float digitScale, float digitThresh){ + // Finds a L2 cluster and the corresponding L1 cells + std::vector<CaloCell*> L2cells = L2cluster(centreCell, etaWidth, phiWidth, scells, idHelper,digitScale, digitThresh); + std::vector<CaloCell*> frontLayerCells; + for (auto ithL2Cell : L2cells){ + fromLayer2toLayer1(scells, ithL2Cell,frontLayerCells, idHelper); + } + float frontCentreEta; + // Finds the most energetic L1 cell + float largET=-1; + CaloCell* largCell = NULL; + for (auto ithL1Cell : frontLayerCells){ + if (CaloCellET(ithL1Cell, digitScale, digitThresh) > largET){ + largET = CaloCellET(ithL1Cell, digitScale, digitThresh); + largCell = ithL1Cell; + } + } + if (!(largET > 0.)) return 1.; + frontCentreEta = largCell->eta(); + // Finds the 'width' for the cluster, applying defaults + float sumET = 0, sumET_Eta2=0; + for (auto ithCell : frontLayerCells){ + float ithET = CaloCellET(ithCell, digitScale, digitThresh); + float ithEta = ithCell->eta(); + sumET_Eta2 += ithET*pow(ithEta-frontCentreEta,2); + sumET += ithET; + } + float result; + if (sumET > 0.) result = sqrt(sumET_Eta2/sumET); + else return 1.; + return result; +} + +std::vector<std::vector<float>> TrigT1CaloBaseFex::looseAlg(const CaloCellContainer* SCs, const xAOD::TriggerTowerContainer* TTs, const CaloCell_SuperCell_ID* idHelper){ + MsgStream msg(msgSvc(), name()); + std::vector< std::vector<float>> result; + // Loops through and find L2 SCs that are local maxes and adds to list of local maxes if cluster ET is at least 10GeV + std::vector<CaloCell*> potentialCentres; + for (auto ithCell : *SCs){ + Identifier ithID = ithCell->ID(); + int ithLayer = idHelper->sampling(ithID); + if (ithLayer != 2) continue; + int ithSub_calo = idHelper->sub_calo(ithID); + if (ithSub_calo != 0) continue; + int ithPos_neg = idHelper->pos_neg(ithID); + bool inEfexCoverage = false; + if (abs(ithPos_neg) < 3) inEfexCoverage = true; + if (!inEfexCoverage) continue; + bool passedLocalMax = localMax(SCs, ithCell, idHelper, m_nominalDigitization, m_nominalNoise_thresh); + if (!passedLocalMax) continue; + float clustET = EMClusET(ithCell, m_etaWidth_TDRCluster, m_phiWidth_TDRCluster, SCs, idHelper, m_nominalDigitization, m_nominalNoise_thresh)/1000.; + if (clustET < m_clustET_looseAlg_thresh) continue; + potentialCentres.push_back(ithCell); + } + // Looops through the local maxes and skips the less energetic ones that belong to the same TT + for (auto ithCell : potentialCentres){ + bool useSC = true; + for (auto jthCell : potentialCentres){ + if (jthCell == ithCell) continue; + if (!SameTT(ithCell, jthCell, idHelper)) continue; + float ithEt = CaloCellET(ithCell, m_nominalDigitization, m_nominalNoise_thresh); + float jthEt = CaloCellET(jthCell, m_nominalDigitization, m_nominalNoise_thresh); + if (ithEt > jthEt) continue; + if (ithEt == jthEt && ithCell->eta() < jthCell->eta()) continue; + useSC = false; + } + if (useSC){ + float HadET = -999; + float ithEta = ithCell->eta(); + float ithPhi = ithCell->phi(); + float clustET = EMClusET(ithCell, m_etaWidth_TDRCluster, m_phiWidth_TDRCluster, SCs, idHelper, m_nominalDigitization, m_nominalNoise_thresh)/1000.; + float ithREta = REta(ithCell, m_etaWidth_REtaIsolation_num, m_phiWidth_REtaIsolation_num, m_etaWidth_REtaIsolation_den, m_phiWidth_REtaIsolation_den, SCs, idHelper, m_nominalDigitization, m_nominalNoise_thresh); + float ithRHad = RHad(ithCell, m_etaWidth_RHadIsolation, m_phiWidth_RHadIsolation, SCs, TTs, idHelper, m_nominalDigitization, m_nominalNoise_thresh, HadET); + float ithL1Width = L1Width(ithCell, m_etaWidth_wstotIsolation, m_phiWidth_wstotIsolation, SCs, idHelper, m_nominalDigitization, m_nominalNoise_thresh); + float L2ClusterET33 = L2clusET(ithCell, 3, 3, SCs, idHelper, m_nominalDigitization, m_nominalNoise_thresh)/1e3; + float L2ClusterET37 = L2clusET(ithCell, 7, 3, SCs, idHelper, m_nominalDigitization, m_nominalNoise_thresh)/1e3; + std::vector<float> ithResult = {ithEta, ithPhi, clustET, ithREta, ithRHad, ithL1Width, HadET, L2ClusterET33, L2ClusterET37}; + result.push_back(ithResult); + } + } + return result; +} + +std::vector<std::vector<float>> TrigT1CaloBaseFex::baselineAlg(const CaloCellContainer* scells, const xAOD::TriggerTowerContainer* TTs, const CaloCell_SuperCell_ID* idHelper){ + MsgStream msg(msgSvc(), name()); + std::vector<std::vector<float>> looseClusters = looseAlg(scells, TTs, idHelper); + if (! m_apply_BaseLineCuts) return looseClusters; + else { + std::vector<std::vector<float>> baselineClusters; + for (auto ithCluster : looseClusters){ + if (ithCluster[2] < m_clustET_thresh) continue; + else if (ithCluster[2] > m_clustET_NoIso_thresh) baselineClusters.push_back(ithCluster); + if (ithCluster[3] > m_REta_thresh || ithCluster[4] > m_RHad_thresh) continue; + if (fabs(ithCluster[0]) > m_eta_dropL1Width || ithCluster[5] < m_L1Width_thresh) baselineClusters.push_back(ithCluster); + } + return baselineClusters; + } +} diff --git a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloBaseFex.h b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloBaseFex.h index 612432a1754b90a5519b78c43135a1cc25235760..a4c51f749632a13d7f598521696eb64e8352c568 100644 --- a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloBaseFex.h +++ b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloBaseFex.h @@ -32,6 +32,8 @@ class TH2F; #include "xAODTruth/TruthParticle.h" #include "xAODTruth/TruthVertex.h" #include "xAODTruth/TruthVertexContainer.h" +#include "CaloIdentifier/CaloIdManager.h" +#include "CaloIdentifier/CaloCell_SuperCell_ID.h" class TrigT1CaloBaseFex : public AthAlgorithm { @@ -39,7 +41,7 @@ public : // Usual athena stuff TrigT1CaloBaseFex( const std::string& name, ISvcLocator* pSvcLocator ); - virtual ~TrigT1CaloBaseFex() { } + virtual ~TrigT1CaloBaseFex() { }; StatusCode initialize(); StatusCode finalize(); StatusCode execute() = 0; @@ -49,11 +51,17 @@ protected : StatusCode getContainers(CaloCellContainer*& scells, const xAOD::TriggerTowerContainer*& TTs); StatusCode getContainers(CaloCellContainer*& scells, const xAOD::TriggerTowerContainer*& TTs, float etThresholdGeV); StatusCode getContainers(const xAOD::TruthParticleContainer*& truthContainer); + /** create all supercells list**/ + void createCellList(const CaloCellContainer*, std::vector<CaloCell*>& out); /** find the cells above a given threshold in an event to be used as seeds to build electron candidates */ void findCellsAbove(const CaloCellContainer*, const float& thr, std::vector<CaloCell*>& out) ; + /** find the cells at EMB2 and EMEC2 above a given threshold in an event to be used as seeds to build electron/tau candidates */ + void findCellsAbove_EMB2_EMEC2(const CaloCellContainer*, const float& thr, std::vector<CaloCell*>& out) ; /** finds cells around a seed cell. These cells will be part of the cluster */ void findCellsAround(const CaloCellContainer*, const CaloCell* cell, std::vector<CaloCell*>& out, const float deta, const float dphi) const; void findCellsAround(const CaloCellContainer*, const float eta, const float phi, std::vector<CaloCell*>& out, const float deta, const float dphi) const ; + /** finds cells around a seed cell whose layer matches the seed. These cells will be part of the cluster */ + void findCellsAroundLayerMatched(const CaloCellContainer*, const CaloCell* cell, std::vector<CaloCell*>& out, const float deta, const float dphi) const; /** finds TTs around a seed cell. These TTs will be part of the cluster. This helps to cover the part related to TileCall */ void findTTsAround(const xAOD::TriggerTowerContainer*, const CaloCell* cell, std::vector<const xAOD::TriggerTower*>& out) const ; void findTTsAround(const xAOD::TriggerTowerContainer*, const float eta, const float phi, std::vector<const xAOD::TriggerTower*>& out) const ; @@ -72,13 +80,88 @@ protected : void findClusterFor(const std::vector<CaloCell*>& scells, float &etaCluster, float &phiCluster, float &radiusCluster) const; /** find cells above E/sigm threshold */ void NoiseThreshold(const CaloCellContainer*, const float& significance, std::vector<CaloCell*>& out); - + /** clustering option : eFEX TDR proposal **/ + float eFEXTDRclus(const std::vector<float>& EM0allCell, const std::vector<float>& EM1allCell, const std::vector<float>& EM2allCell, const std::vector<float>& EM3allCell, const std::vector<float>& HADallCell, const float& seedPlace) const ; + /** isolation option**/ + float eFEXIsoTDR (const std::vector<float>& EM2allCell, const float& seedPlace) const ; + /** boolian for TDR isolation**/ + bool IseFEXIsoTDR (const std::vector<float>& EM2allCell, const float& seedPlace, const float& Isovalue) const ; + /** retrieve the cell ID helper */ + StatusCode getIDHelper(const CaloCell_SuperCell_ID*& m_idHelper); + /** calculate the ET of an input cell */ + float CaloCellET(CaloCell* const &inputCell, float digitScale, float digitThreshold); + /** SC from container is returned according to its ID */ + CaloCell* returnCellFromCont(Identifier inputID, const CaloCellContainer* &cellContainer); + /** returns the SC left/right to the input cell for the barrel */ + CaloCell* NextEtaCell_Barrel(CaloCell* inputCell, bool upwards, const CaloCellContainer* &cellContainer, const CaloCell_SuperCell_ID* &idHelper); + /** returns the SC left/right to the input cell for the OW */ + CaloCell* NextEtaCell_OW(CaloCell* inputCell, bool upwards, const CaloCellContainer* &cellContainer, const CaloCell_SuperCell_ID* &idHelper); + /** returns the SC left/right to the input cell for the IW */ + CaloCell* NextEtaCell_IW(CaloCell* inputCell, bool upwards, const CaloCellContainer* &cellContainer, const CaloCell_SuperCell_ID* &idHelper); + /** helper function calling NextEtaCell_Barrel(), NextEtaCell_OW(), NextEtaCell_IW() according to position of input cell */ + CaloCell* NextEtaCell(CaloCell* inputCell, bool upwards, const CaloCellContainer* &cellContainer, const CaloCell_SuperCell_ID* &idHelper); + /** manager function for the phi index */ + int restrictPhiIndex(int input_index, bool is64); + /** returns the SC above/below the input cell */ + CaloCell* NextPhiCell(CaloCell* inputCell, bool upwards, const CaloCellContainer* &cellContainer, const CaloCell_SuperCell_ID* &idHelper); + /** helper function calling localMax() */ + bool localMax(const CaloCellContainer* &inputContainer, CaloCell* inputCell, const CaloCell_SuperCell_ID* &idHelper, float digitScale, float digitThreshold); + /** tests if the input cell has a local energy maximum with respect to neighbors */ + bool localMax(const CaloCellContainer* &inputContainer, CaloCell* inputCell, int numOthers, const CaloCell_SuperCell_ID* &idHelper, float digitScale, float digitThreshold); + /** adds SC to vector if the SC is not part of this vector yet */ + void addOnce(CaloCell* inputCell, std::vector<CaloCell*> &outputVector); + /** form the cluster from cells of the second layer L2 */ + std::vector<CaloCell*> L2cluster(CaloCell* centreCell, int etaWidth, int phiWidth, const CaloCellContainer* scells, const CaloCell_SuperCell_ID* idHelper, float digitScale , float digitThresh ); + /** match SCs from the cluster in L2 to L1 */ + void fromLayer2toLayer1(const CaloCellContainer* &inputContainer, CaloCell* inputCell, std::vector<CaloCell*> &outputVector, const CaloCell_SuperCell_ID* &idHelper); + /** match SCs from the cluster in L2 to one cell of PS */ + CaloCell* fromLayer2toPS(const CaloCellContainer* &inputContainer, CaloCell* inputCell, const CaloCell_SuperCell_ID* &idHelper); + /** match SCs from the cluster in L2 to one cell of L3 */ + CaloCell* fromLayer2toLayer3(const CaloCellContainer* &inputContainer, CaloCell* inputCell, const CaloCell_SuperCell_ID* &idHelper); + /** form the cluster around the central SC */ + std::vector<CaloCell*> TDR_Clus(CaloCell* centreCell, int etaWidth, int phiWidth, const CaloCellContainer* scells, const CaloCell_SuperCell_ID* idHelper, float digitScale, float digitThresh); + /** calculate cluster energy from all SCs in PS, L1, L2, L3 */ + double sumVectorET (const std::vector<CaloCell*> &inputVector, float digitScale = 0.,float digitThreshold = 0.); + /** check if conversion from ET to energy after digitization was performed successfully */ + bool checkDig(float EM_ET, float digitScale,float digitThresh); + /** calculate cluster energy */ + double EMClusET(CaloCell* centreCell, int etaWidth, int phiWidth, const CaloCellContainer* scells, const CaloCell_SuperCell_ID* idHelper, float digitScale, float digitThresh); + /** check if both input cells belong to the same TT */ + bool SameTT(CaloCell* inputCell1, CaloCell* inputCell2, const CaloCell_SuperCell_ID* &idHelper); + /** calculate cluster energy of cells in L2 around the central cell in a given eta/phi width */ + double L2clusET(CaloCell* centreCell, int etaWidth, int phiWidth, const CaloCellContainer* scells, const CaloCell_SuperCell_ID* idHelper, float digitScale , float digitThresh); + /** calculate the energy isolation of the central cell along eta */ + double REta(CaloCell* centreCell, int etaWidth1, int phiWidth1, int etaWidth2, int phiWidth2, const CaloCellContainer* scells, const CaloCell_SuperCell_ID* idHelper, float digitScale, float digitThresh); + /** convert the TT phi to match the definition of SC phi */ + double TT_phi(const xAOD::TriggerTower* &inputTower); + /** calculate deltaR between two points in eta/phi space */ + double dR(double eta1, double phi1, double eta2, double phi2); + /** Match each SC from L2 to one corresponding TT */ + const xAOD::TriggerTower* matchingHCAL_TT(CaloCell* &inputCell, const xAOD::TriggerTowerContainer* &TTContainer); + /** Match each SC from L2 to one corresponding HCAL SC */ + CaloCell* matchingHCAL_LAr(CaloCell* &inputCell, const CaloCellContainer* &SCContainer, const CaloCell_SuperCell_ID* &idHelper); + /** calculate the energy of an input TT */ + double TT_ET(const xAOD::TriggerTower* &inputTower); + /** calculate the energy in the HCAL (LAr + Tile) for SC/TT that match the EM cluster cells of L2 */ + double HadronicET(std::vector<CaloCell*> inputVector, const CaloCellContainer* scells, const xAOD::TriggerTowerContainer* &TTContainer, const CaloCell_SuperCell_ID* idHelper, float digitScale, float digitThresh); + /** calculate the hadronic isolation of the central cell */ + double RHad(CaloCell* centreCell, int etaWidth, int phiWidth, const CaloCellContainer* scells, const xAOD::TriggerTowerContainer* &TTContainer, const CaloCell_SuperCell_ID* idHelper, float digitScale , float digitThresh, float &HadronicET); + /** calculate the lateral isolation aorund the central cell */ + double L1Width(CaloCell* centreCell, int etaWidth, int phiWidth, const CaloCellContainer* scells, const CaloCell_SuperCell_ID* idHelper, float digitScale , float digitThresh ); + /** find cluster and associated variables using a "loose" algorithm */ + std::vector<std::vector<float>> looseAlg(const CaloCellContainer* SCs, const xAOD::TriggerTowerContainer* TTs, const CaloCell_SuperCell_ID* idHelper); + /** find cluster and associated variables using a user defined selection */ + std::vector<std::vector<float>> baselineAlg(const CaloCellContainer* scells, const xAOD::TriggerTowerContainer* TTs, const CaloCell_SuperCell_ID* idHelper); + /** list of all supercells */ + std::vector<CaloCell*> allSuperCells; /** list of seeds */ std::vector<CaloCell*> m_cellsAboveThr; /** list of cells around a cell (seed) */ std::vector<CaloCell*> m_cellsAround; /** list of cells around a cell (seed again) */ std::vector<CaloCell*> m_cellsAround2; + /** list of cells around a cell (seed) in the window*/ + std::vector<CaloCell*> m_cellsInWindow; /** list of TTs around a cell (seed) */ std::vector<const xAOD::TriggerTower*> m_TTsAround; /** deta for the cluster definition */ @@ -89,11 +172,54 @@ protected : float m_detaTT; /** dphi for the cluster to TT definition */ float m_dphiTT; - /** clear up container from bad BC */ + /** clear up container from bad BC by making a new container (Denis, old way) */ + bool m_useProvenanceSkim; + /** clear up container from bad BC by skipping scells*/ bool m_useProvenance; + /** Configurable quality bitmask */ + int m_qualBitMask; /** name of the input SCell container */ std::string m_inputCellsName; - + /** value of nominal digitisation */ + float m_nominalDigitization; + /** noise threshold */ + float m_nominalNoise_thresh; + /** phi width of the TDR cluster formation given in number of SCs (including the central cell), should be 2 or 3 */ + int m_phiWidth_TDRCluster; + /** eta width of the TDR cluster formation given in number of SCs (including the central cell), should be >= 1 */ + int m_etaWidth_TDRCluster; + // eta width for REta isolation given in number of SCs (numerator of fraction) + int m_etaWidth_REtaIsolation_num; + // phi width for REta isolation given in number of SCs (numerator of fraction) + int m_phiWidth_REtaIsolation_num; + // eta width for REta isolation given in number of SCs (denominator of fraction) + int m_etaWidth_REtaIsolation_den; + // phi width for REta isolation given in number of SCs (denominator of fraction) + int m_phiWidth_REtaIsolation_den; + // eta width for RHad isolation given in number of SCs + int m_etaWidth_RHadIsolation; + // phi width for RHad isolation given in number of SCs + int m_phiWidth_RHadIsolation; + // eta width for wstot isolation given in number of SCs + int m_etaWidth_wstotIsolation; + // phi width for wstot isolation given in number of SCs + int m_phiWidth_wstotIsolation; + /** threshold for minimum cluster energy for the loose eFEX algorithm */ + float m_clustET_looseAlg_thresh; + /** threshold for minimum cluster energy for the baseline eFEX algorithm */ + float m_clustET_thresh; + /** boolean for applying the baseline cuts */ + bool m_apply_BaseLineCuts; + /** threshold for applying cluster isolation cuts */ + float m_clustET_NoIso_thresh; + /** threshold for isolation REta*/ + float m_REta_thresh; + /** threshold for isolation RHad */ + float m_RHad_thresh; + /** threshold for isolation L1Width (wstot) */ + float m_L1Width_thresh; + /** max eta for applying cut on L1Width */ + float m_eta_dropL1Width; }; #endif diff --git a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloEFex.cxx b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloEFex.cxx index 68726707e49863c39443e8c09dcd7d0361efd5ce..2131aee463602f9bd0d643ac93883a1dac0fa7cb 100644 --- a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloEFex.cxx +++ b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloEFex.cxx @@ -8,6 +8,7 @@ * PACKAGE : Trigger/L1CaloUpgrade/TrigT1CaloEFex * * AUTHOR : Denis Oliveira Damazio + * UPDATED : Philipp Ott * * * **/ @@ -23,28 +24,46 @@ #include "xAODTrigCalo/TrigEMClusterContainer.h" #include "xAODTrigCalo/TrigEMClusterAuxContainer.h" -TrigT1CaloEFex::TrigT1CaloEFex( const std::string& name, ISvcLocator* pSvcLocator ) : TrigT1CaloBaseFex (name, pSvcLocator) { - declareProperty("EnableMonitoring", m_enableMon=false); - declareProperty("OutputClusterName", m_outputClusterName = "SCluster" ); - declareProperty("TimeThreshold", m_timeThr = 200 ); -} +TrigT1CaloEFex::TrigT1CaloEFex( const std::string& name, ISvcLocator* pSvcLocator ) : + TrigT1CaloBaseFex (name, pSvcLocator) +{ + declareProperty("EnableMonitoring", m_enableMon = false); + declareProperty("OutputClusterName", m_outputClusterName = "SCluster_TrigT1CaloEFex"); + declareProperty("TimeThreshold", m_timeThr = 200); + declareProperty("SeedEnergyThreshold", m_seedE = 100); + declareProperty("EnergyWeightedCluster", m_energyWeightedCluster = false); + declareProperty("EtaCellFormation", m_deta_cellFormation = 0.08); + declareProperty("PhiCellFormation", m_dphi_cellFormation = 0.21); + declareProperty("EtaClusterFormation2", m_deta_clusterFormation_2 = 0.21); + declareProperty("PhiClusterFormation2", m_dphi_clusterFormation_2 = 0.21); + declareProperty("MinimumClusterEnergy", m_clusterE_EMB2_EMEC2 = 100); + declareProperty("LimitClusterEta", m_eta_limit = 2.47); +} TrigT1CaloEFex::~TrigT1CaloEFex(){ - // finish base class + // finish base class } StatusCode TrigT1CaloEFex::initialize(){ - + + // Initialize accessors + Run3eFEXIsolation_REta = new SG::AuxElement::Accessor<float>("Run3REta"); + Run3eFEXIsolation_RHad = new SG::AuxElement::Accessor<float>("Run3RHad"); + pass_Run3eFEXIsolation_REta = new SG::AuxElement::Accessor<int>("PassRun3REta"); + pass_Run3eFEXIsolation_RHad = new SG::AuxElement::Accessor<int>("PassRun3RHad"); + pass_Run3eFEXIsolation_wstot = new SG::AuxElement::Accessor<int>("PassRun3wstot"); + pass_Run3eFEX_clusterEnergy = new SG::AuxElement::Accessor<int>("PassRun3ClusterEnergy"); + + if ( TrigT1CaloBaseFex::initialize().isFailure() ) return StatusCode::FAILURE; MsgStream msg(msgSvc(), name()); - msg << MSG::DEBUG << "initializing TrigT1CaloEFex" << endreq; if ( m_enableMon ){ std::string histoName(name()); histoName+="Algo.root"; m_histFile = new TFile(histoName.c_str(),"RECREATE"); m_EtSElectron = new TH1F("EtSElectron","Et of Super Cell based Electron",60,0,60); m_HadEtSElectron = new TH1F("HadEtSElectron","HadEt of Super Cell based Electron",60,0,6); - m_EtaSElectron = new TH1F("EtaSElectron","Eta of Super Cell based Electron",50,-5.0,5.0); + m_EtaSElectron = new TH1F("EtaSElectron","Eta of Super Cell based Electron",50,-2.5,2.5); m_PhiSElectron = new TH1F("PhiSElectron","Phi of Super Cell based Electron",64,-3.2,3.2); m_EtSElectronEta = new TH2F("EtSElectronEta","Et of Super Cell based Electron versus Eta",50,-5.0,5.0,60,0,60); m_HadEtSElectronEta = new TH2F("HadEtSElectronEta","HadEt of Super Cell based Electron versus Eta",50,-5.0,5.0,60,0,60); @@ -64,120 +83,173 @@ StatusCode TrigT1CaloEFex::finalize(){ } StatusCode TrigT1CaloEFex::execute(){ - MsgStream msg(msgSvc(), name()); -#ifndef NDEBUG - msg << MSG::DEBUG << "execute TrigT1CaloEFex" << endreq; -#endif - CaloCellContainer* scells(0); const xAOD::TriggerTowerContainer* TTs(0); if ( getContainers(scells, TTs).isFailure() || (TTs==0) ) { - msg << MSG::WARNING << " Could not get containers" << endreq; - return StatusCode::SUCCESS; + msg << MSG::WARNING << "Could not get containers" << endreq; + return StatusCode::FAILURE; } - - // Simply check cells which are above a given threshold (3GeV) - findCellsAbove(scells,3e3,m_cellsAboveThr); - // Prepare output containers (with all xAOD annoying features) + // Prepare output containers xAOD::TrigEMClusterContainer* clusters = new xAOD::TrigEMClusterContainer(); xAOD::TrigEMClusterAuxContainer* auxclusters = new xAOD::TrigEMClusterAuxContainer(); clusters->setStore(auxclusters); clusters->reserve(100); std::string clusterName(m_outputClusterName); - if ( evtStore()->record(clusters,clusterName).isFailure() ){ + if ( evtStore()->record(clusters, clusterName).isFailure() ) { msg << MSG::ERROR << "recording was not possible" << endreq; return StatusCode::FAILURE; } - if ( evtStore()->record(auxclusters,clusterName+"Aux.").isFailure() ){ + if ( evtStore()->record(auxclusters, clusterName+"Aux.").isFailure() ) { msg << MSG::ERROR << "recording Aux was not possible" << endreq; return StatusCode::FAILURE; } - // Loop over seed cells, this should give us - for( auto cellAbove : m_cellsAboveThr ) { - // builds a vector with all the cells around the seed cell - // with the size (deta,dphi)=(0.08,0.21) - findCellsAround(scells, cellAbove, m_cellsAround,0.08,0.21); // large window - float etaCluster, phiCluster; // Cluster baricenter - // Find cluster center (eta/phiCluster) based on the - // energy weighted scell position - findCluster(m_cellsAround, etaCluster, phiCluster); - // smaller cluster (closer to egamma standard) - findCellsAround(scells, etaCluster, phiCluster, m_cellsAround,m_deta,m_dphi); - float clusterTime=0; - float clusterTimeWeight=0; - for( auto cellAround : m_cellsAround ) { - if ( cellAround->et() < m_timeThr ) continue; - clusterTime+=cellAround->time()*cellAround->et(); - clusterTimeWeight+=cellAround->et(); + // Set m_energyWeightedCluster to true if an energy weighted cluster formation should be performed (default:false) + if ( !m_energyWeightedCluster ) { + const CaloCell_SuperCell_ID* m_idHelper = nullptr; + if ( getIDHelper( m_idHelper ).isFailure() ) { + msg << MSG::WARNING << "Could not get ID manager " << endreq; + return StatusCode::FAILURE; } - if ( fabsf(clusterTimeWeight) > 0.1 ) - clusterTime /=clusterTimeWeight; - else clusterTime = -999.99; -#ifndef NDEBUG - msg << MSG::DEBUG << "CELL versus CLUSTER : " << cellAbove->eta() << " " << cellAbove->phi() << " " << etaCluster << " " << phiCluster << - " " << cellAbove->eta()-etaCluster << " " << cellAbove->phi()-phiCluster << endreq; -#endif - // if find the cluster position fails, etaCluster=999.0 - if ( etaCluster > 998.0 ) continue; - // other cluster sizes for some of the shower shapes - findCellsAround(scells, (const float)etaCluster, (const float)phiCluster, m_cellsAround2,0.21,0.21); - // include TT (for Tile region only) - findTTsAround(TTs, etaCluster, phiCluster, m_TTsAround); - // check if seed cell is a local maximum (maybe could - // do this check before) - if ( ! isCellEmMaximum ( m_cellsAround, cellAbove ) ) continue; - float et = sumEmCells( m_cellsAround )/TMath::CosH(cellAbove->eta()); - float clusterEmEnergy32 = sumEmCells2nd( m_cellsAround2 ); - float clusterEmEnergy72 = sumEmCells2nd( m_cellsAround ); - float clusterHadEnergy = sumHadCells( m_cellsAround ); - clusterHadEnergy += sumHadTTs( m_TTsAround ); - if ( clusterEmEnergy32 < 10 ) continue; - // some histograms (we could only check the ones - // in the EFex part) - if ( m_enableMon ){ - m_EtSElectron->Fill(et/1e3); - m_EtaSElectron->Fill( etaCluster ); - m_PhiSElectron->Fill( phiCluster ); - m_HadEtSElectron->Fill( clusterHadEnergy/1e3 ); - m_EtSElectronEta->Fill( cellAbove->eta(), et/1e3); - m_HadEtSElectronEta->Fill( cellAbove->eta(), clusterHadEnergy/1e3); + std::vector<std::vector<float>> clustering = baselineAlg(scells, TTs, m_idHelper); + for (auto ithCluster : clustering){ + if ( m_enableMon ) { + m_EtaSElectron->Fill( ithCluster[0] ); + m_PhiSElectron->Fill( ithCluster[1] ); + m_EtSElectron->Fill( ithCluster[2] ); + m_EtSElectronEta->Fill( ithCluster[0], ithCluster[2] ); + if (ithCluster[6] > -999) { + m_HadEtSElectron->Fill( ithCluster[6] ); + m_HadEtSElectronEta->Fill( ithCluster[0], ithCluster[6] ); + } + } + xAOD::TrigEMCluster* cl = new xAOD::TrigEMCluster(); + clusters->push_back( cl ); + + cl->setEta( ithCluster[0] ); + cl->setPhi( ithCluster[1] ); + cl->setEt( ithCluster[2] ); + (*Run3eFEXIsolation_REta)(*cl) = ithCluster[3]; + (*Run3eFEXIsolation_RHad)(*cl) = ithCluster[4]; + cl->setWstot( ithCluster[5] ); + if (ithCluster[6] > -999) cl->setEhad1( ithCluster[6] ); + cl->setE233( ithCluster[7] ); + cl->setE237( ithCluster[8] ); + // check if cluster fulfills all selection criteria, trivial if m_apply_BaseLineCuts = true + if ( m_apply_BaseLineCuts ){ + (*pass_Run3eFEXIsolation_REta)(*cl) = 1; + (*pass_Run3eFEXIsolation_RHad)(*cl) = 1; + (*pass_Run3eFEXIsolation_wstot)(*cl) = 1; + (*pass_Run3eFEX_clusterEnergy)(*cl) = 1; + } + else { + (*pass_Run3eFEXIsolation_REta)(*cl) = 0; + (*pass_Run3eFEXIsolation_RHad)(*cl) = 0; + (*pass_Run3eFEXIsolation_wstot)(*cl) = 0; + (*pass_Run3eFEX_clusterEnergy)(*cl) = 0; + if ( ithCluster[2] >= m_clustET_thresh && ithCluster[2] <= m_clustET_NoIso_thresh ) (*pass_Run3eFEX_clusterEnergy)(*cl) = 1; + else if ( ithCluster[2] > m_clustET_NoIso_thresh ){ + (*pass_Run3eFEXIsolation_REta)(*cl) = 1; + (*pass_Run3eFEXIsolation_RHad)(*cl) = 1; + (*pass_Run3eFEXIsolation_wstot)(*cl) = 1; + (*pass_Run3eFEX_clusterEnergy)(*cl) = 1; + continue; + } + if ( ithCluster[3] <= m_REta_thresh ) (*pass_Run3eFEXIsolation_REta)(*cl) = 1; + if ( ithCluster[4] <= m_RHad_thresh ) (*pass_Run3eFEXIsolation_RHad)(*cl) = 1; + if ( fabs(ithCluster[0]) > m_eta_dropL1Width ) (*pass_Run3eFEXIsolation_wstot)(*cl) = 1; + else { + if ( ithCluster[5] < m_L1Width_thresh ) (*pass_Run3eFEXIsolation_wstot)(*cl) = 1; + } + } } - // Builds cluster - xAOD::TrigEMCluster* cl = new xAOD::TrigEMCluster(); - clusters->push_back( cl ); - for(unsigned int i=0;i<(unsigned int)CaloSampling::CaloSample::Unknown;i++) - cl->setEnergy((CaloSampling::CaloSample)i,0.0); - // Set cluster features - cl->setEnergy(et * TMath::CosH(cellAbove->eta()) ); - cl->setEt(et); - cl->setEta( cellAbove->eta() ); - cl->setPhi( cellAbove->phi() ); - cl->setE237 ( clusterEmEnergy32 ); - cl->setE277 ( clusterEmEnergy72 ); - cl->setEhad1 ( clusterHadEnergy ); - cl->setE233( clusterTime ); - // energy in each layer - float wstot=0.; - float wstot_nor=0.; - for( auto cellAround : m_cellsAround ) { - unsigned int layer = cellAround->caloDDE()->getSampling(); - cl->setEnergy( (CaloSampling::CaloSample)layer, cl->energy( (CaloSampling::CaloSample)layer )+cellAround->energy() ); - if ( (layer==1) || (layer==5) ) { - if ( cellAround->et() < 10 ) continue; - wstot+=(cellAround->et()*fabsf(cellAround->eta()-etaCluster)); - wstot_nor+=(cellAround->et()); - } - }// Loop over cells - if ( fabsf(wstot_nor)> 0.01 ) wstot/=wstot_nor; - cl->setWstot( wstot ); - } - // avoid memory leak + else { + ///////////////////////////////////////////////////////////////// + // Note that there are several additional differences + // on top of the different cluster formation: + // -- The energy of the cluster is not given as multiples + // of the digitization scale (25 MeV) + // -- The cluster sizes differ per default (but can be adjusted) + // -- The definition of the lateral isolation wstot differs + // -- The isolation variables REta, RHad are not defined + ///////////////////////////////////////////////////////////////// + + // Check cells which are above a user defined threshold (default: 100MeV) in EMB2 or EMEC2 + findCellsAbove_EMB2_EMEC2(scells, m_seedE, m_cellsAboveThr); + // Loop over possible seed cells + for ( auto cellAbove : m_cellsAboveThr ) { + float etaCluster, phiCluster; + // Builds a vector with all the cells around the seed cell with the default size (deta,dphi)=(0.08,0.21) + findCellsAround(scells, cellAbove, m_cellsAround, m_deta_cellFormation, m_dphi_cellFormation); + // Find cluster center (eta/phiCluster) based on the energy weighted scell position + findCluster(m_cellsAround, etaCluster, phiCluster); + if ( fabsf(etaCluster) > 998.0 ) continue; + // Smaller cluster (closer to egamma standard) + findCellsAround(scells, etaCluster, phiCluster, m_cellsAround, m_deta, m_dphi); + // SElectron eta should be within the kinematic acceptance, default: Run 2 recommendations + if ( fabsf(etaCluster) >= m_eta_limit ) continue; + if ( ! isCellEmMaximum ( m_cellsAround, cellAbove ) ) continue; + float clusterTime=0; + float clusterTimeWeight=0; + for( auto cellAround : m_cellsAround ) { + if ( cellAround->et() < m_timeThr ) continue; + clusterTime+=cellAround->time()*cellAround->et(); + clusterTimeWeight+=cellAround->et(); + } + if ( fabsf(clusterTimeWeight) > 0.1 ) clusterTime /= clusterTimeWeight; + else clusterTime = -999.99; + msg << MSG::DEBUG << "CELL versus CLUSTER : " << cellAbove->eta() << " " << cellAbove->phi() << " " << etaCluster << " " << phiCluster << " " << cellAbove->eta()-etaCluster << " " << cellAbove->phi()-phiCluster << endreq; + // Other cluster sizes for some of the shower shapes + findCellsAround(scells, (const float)etaCluster, (const float)phiCluster, m_cellsAround2, m_deta_clusterFormation_2, m_dphi_clusterFormation_2); + // Include TT (for Tile region only) + findTTsAround(TTs, etaCluster, phiCluster, m_TTsAround); + float et = sumEmCells( m_cellsAround )/TMath::CosH(cellAbove->eta()); + float clusterEmEnergy32 = sumEmCells2nd( m_cellsAround2 ); + float clusterEmEnergy72 = sumEmCells2nd( m_cellsAround ); + float clusterHadEnergy = sumHadCells( m_cellsAround ); + clusterHadEnergy += sumHadTTs( m_TTsAround ); + if ( clusterEmEnergy32 < m_clusterE_EMB2_EMEC2 ) continue; + if ( m_enableMon ) { + m_EtSElectron->Fill( et/1e3 ); + m_EtaSElectron->Fill( etaCluster ); + m_PhiSElectron->Fill( phiCluster ); + m_HadEtSElectron->Fill( clusterHadEnergy/1e3 ); + m_EtSElectronEta->Fill( cellAbove->eta(), et/1e3 ); + m_HadEtSElectronEta->Fill( cellAbove->eta(), clusterHadEnergy/1e3 ); + } + xAOD::TrigEMCluster* cl = new xAOD::TrigEMCluster(); + clusters->push_back( cl ); + for ( unsigned int i=0; i<(unsigned int)CaloSampling::CaloSample::Unknown; i++ ) { + cl->setEnergy((CaloSampling::CaloSample)i,0.0); + } + cl->setEnergy( et * TMath::CosH(cellAbove->eta()) ); + cl->setEt( et ); + cl->setEta( cellAbove->eta() ); + cl->setPhi( cellAbove->phi() ); + cl->setE237 ( clusterEmEnergy32 ); + cl->setE277 ( clusterEmEnergy72 ); + cl->setEhad1 ( clusterHadEnergy ); + cl->setE233( clusterTime ); + float wstot=0.; + float wstot_nor=0.; + for( auto cellAround : m_cellsAround ) { + unsigned int layer = cellAround->caloDDE()->getSampling(); + cl->setEnergy( (CaloSampling::CaloSample)layer, cl->energy( (CaloSampling::CaloSample)layer )+cellAround->energy() ); + if ( (layer==1) || (layer==5) ) { + if ( cellAround->et() < 10 ) continue; + wstot+=(cellAround->et()*pow(cellAround->eta()-etaCluster, 2)); + wstot_nor+=(cellAround->et()); + } + } + if ( fabsf(wstot_nor) > 0.01 ) wstot = sqrt(wstot/wstot_nor); + cl->setWstot( wstot ); + } + m_cellsAround.clear(); + m_cellsAround2.clear(); + m_TTsAround.clear(); + } if ( scells ) {scells->clear(); delete scells;} - m_cellsAround.clear(); - m_cellsAround2.clear(); - m_TTsAround.clear(); return StatusCode::SUCCESS; } diff --git a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloEFex.h b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloEFex.h index 3cc421d2db9215ebda7e5e0985af5d6507520ccc..bfe0ab0dfb5d9a0d13275747da930352285fb36d 100644 --- a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloEFex.h +++ b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloEFex.h @@ -21,8 +21,6 @@ class TrigT1CaloEFex : public TrigT1CaloBaseFex { public : - - // Usual athena stuff TrigT1CaloEFex( const std::string& name, ISvcLocator* pSvcLocator ); virtual ~TrigT1CaloEFex(); StatusCode initialize(); @@ -30,7 +28,6 @@ public : StatusCode execute(); private : - /** do I want to monitor things */ bool m_enableMon; /** TFile for monitoring */ @@ -46,6 +43,34 @@ private : std::string m_outputClusterName; /** cut for time measurement */ float m_timeThr; + /** cut for seed energy in MeV */ + float m_seedE; + /** boolean to choose cluster formation */ + bool m_energyWeightedCluster; + /** deta for the cluster definition */ + float m_deta_cellFormation; + /** dphi for the cluster definition */ + float m_dphi_cellFormation; + /** deta for the cluster definition closer to egamma standard */ + float m_deta_clusterFormation; + /** dphi for the cluster definition closer to egamma standard */ + float m_dphi_clusterFormation; + /** different deta for some of the shower shapes */ + float m_deta_clusterFormation_2; + /** different dphi for some of the shower shapes */ + float m_dphi_clusterFormation_2; + /** minimum cluster energy of SCs in EMB2 or EMEC2 */ + float m_clusterE_EMB2_EMEC2; + /** limit for eta of cluster */ + float m_eta_limit; + + // Acessors for dynamic decorations + SG::AuxElement::Accessor<float>* Run3eFEXIsolation_REta; + SG::AuxElement::Accessor<float>* Run3eFEXIsolation_RHad; + SG::AuxElement::Accessor<int>* pass_Run3eFEXIsolation_REta; + SG::AuxElement::Accessor<int>* pass_Run3eFEXIsolation_RHad; + SG::AuxElement::Accessor<int>* pass_Run3eFEXIsolation_wstot; + SG::AuxElement::Accessor<int>* pass_Run3eFEX_clusterEnergy; }; diff --git a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloRun3TauFex.cxx b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloRun3TauFex.cxx new file mode 100644 index 0000000000000000000000000000000000000000..df03bc23b4b43feb8f8bda78554d4e946528be1f --- /dev/null +++ b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloRun3TauFex.cxx @@ -0,0 +1,299 @@ +/* + Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration +*/ + + +/** + * NAME : TrigT1CaloRun3TauFex.cxx + * PACKAGE : Trigger/L1CaloUpgrade/TrigT1CaloRun3TauFex + * + * AUTHOR : Denis Oliveira Damazio + * + * + * **/ + +#include "TrigT1CaloBaseFex.h" +#include "TrigT1CaloRun3TauFex.h" +#include "CaloEvent/CaloCellContainer.h" +#include <math.h> +#include <string> +#include "TFile.h" +#include "TH1F.h" +#include "TH2F.h" +#include "TVector2.h" +#include "xAODTrigger/EmTauRoIContainer.h" +#include "xAODTrigger/EmTauRoIAuxContainer.h" +#include "xAODTrigger/EmTauRoI.h" + +TrigT1CaloRun3TauFex::TrigT1CaloRun3TauFex( const std::string& name, ISvcLocator* pSvcLocator ) : + TrigT1CaloBaseFex (name, pSvcLocator), + acc_score(0), + acc_newScore(0) +{ + declareProperty("EnableMonitoring", m_enableMon=false); + declareProperty("OutputClusterName", m_outputClusterName = "SCluster" ); + declareProperty("TimeThreshold", m_timeThr = 200 ); +} + +/* +TrigT1CaloRun3TauFex::TrigT1CaloRun3TauFex( const std::string& name, ISvcLocator* pSvcLocator ) : TrigT1CaloBaseFex (name, pSvcLocator) { + declareProperty("EnableMonitoring", m_enableMon=false); + declareProperty("OutputClusterName", m_outputClusterName = "SCluster" ); + declareProperty("TimeThreshold", m_timeThr = 200 ); +} +*/ +TrigT1CaloRun3TauFex::~TrigT1CaloRun3TauFex(){ + // finish base class + delete acc_clusterET; + delete acc_clusterIso; +} + +StatusCode TrigT1CaloRun3TauFex::initialize(){ + + if ( TrigT1CaloBaseFex::initialize().isFailure() ) return StatusCode::FAILURE; + MsgStream msg(msgSvc(), name()); + msg << MSG::DEBUG << "initializing TrigT1CaloRun3TauFex" << endreq; + std::string histoName(name()); + histoName+="Algo.root"; + m_histFile = new TFile(histoName.c_str(),"RECREATE"); + if ( m_enableMon ){ + m_EtSElectron = new TH1F("EtSElectron","Et of Super Cell based Electron",60,0,60); + m_HadEtSElectron = new TH1F("HadEtSElectron","HadEt of Super Cell based Electron",60,0,6); + m_EtaSElectron = new TH1F("EtaSElectron","Eta of Super Cell based Electron",50,-5.0,5.0); + m_PhiSElectron = new TH1F("PhiSElectron","Phi of Super Cell based Electron",64,-3.2,3.2); + m_EtSElectronEta = new TH2F("EtSElectronEta","Et of Super Cell based Electron versus Eta",50,-5.0,5.0,60,0,60); + m_HadEtSElectronEta = new TH2F("HadEtSElectronEta","HadEt of Super Cell based Electron versus Eta",50,-5.0,5.0,60,0,60); + } + m_SupercellMapEM0 = new TH2F("SupercellMapEM0","Supercell map of EM0",98,-4.9,4.9,64,0,2*M_PI); + m_SupercellMapEM1 = new TH2F("SupercellMapEM1","Supercell map of EM1",392,-4.9,4.9,64,0,2*M_PI); + m_SupercellMapEM2 = new TH2F("SupercellMapEM2","Supercell map of EM2",392,-4.9,4.9,64,0,2*M_PI); + m_SupercellMapEM3 = new TH2F("SupercellMapEM3","Supercell map of EM3",98,-4.9,4.9,64,0,2*M_PI); + m_SupercellMapHAD = new TH2F("SupercellMapHAD","Supercell map of HAD",98,-4.9,4.9,64,0,2*M_PI); + + // Hard-code variable names - we don't want them to be configurable for now + // Feel free to change the names + // Also, note that you should not use the 'ConstAccessor' as this one can't write to the object + acc_clusterET = new SG::AuxElement::Accessor<float>("R3ClusterET"); + acc_clusterIso = new SG::AuxElement::Accessor<float>("R3ClusterIso"); + return StatusCode::SUCCESS; +} + +StatusCode TrigT1CaloRun3TauFex::finalize(){ + if ( TrigT1CaloBaseFex::finalize().isFailure() ) return StatusCode::FAILURE; + MsgStream msg(msgSvc(), name()); + msg << MSG::DEBUG << "finalizing TrigT1CaloRun3TauFex" << endreq; + if ( m_enableMon ) { + m_histFile->Write(); + m_histFile->Close(); + } + return StatusCode::SUCCESS; +} + +StatusCode TrigT1CaloRun3TauFex::execute(){ + + MsgStream msg(msgSvc(), name()); +#ifndef NDEBUG + msg << MSG::DEBUG << "execute TrigT1CaloRun3TauFex" << endreq; +#endif + + CaloCellContainer* scells(0); + const xAOD::TriggerTowerContainer* TTs(0); + if ( getContainers(scells, TTs).isFailure() || (TTs==0) ) { + msg << MSG::WARNING << " Could not get containers" << endreq; + return StatusCode::SUCCESS; + } + + // Simply check cells which are above a given threshold (1GeV) + findCellsAbove_EMB2_EMEC2(scells,1e3,m_cellsAboveThr); + + // Prepare output containers (with all xAOD annoying features) + xAOD::EmTauRoIContainer* clustersForTau = new xAOD::EmTauRoIContainer(); + xAOD::EmTauRoIAuxContainer* auxclustersForTau = new xAOD::EmTauRoIAuxContainer(); + clustersForTau->setStore(auxclustersForTau); + clustersForTau->reserve(100); + std::string clusterName(m_outputClusterName); + if ( evtStore()->record(clustersForTau,clusterName).isFailure() ){ + msg << MSG::ERROR << "recording was not possible" << endreq; + return StatusCode::FAILURE; + } + if ( evtStore()->record(auxclustersForTau,clusterName+"Aux.").isFailure() ){ + msg << MSG::ERROR << "recording Aux was not possible" << endreq; + return StatusCode::FAILURE; + } + + // prepare all supercells vector in whole ATLAS detector + createCellList(scells,allSuperCells); + + // clear all TH2 histograms for supercell map + m_SupercellMapEM0->Reset(); + m_SupercellMapEM1->Reset(); + m_SupercellMapEM2->Reset(); + m_SupercellMapEM3->Reset(); + m_SupercellMapHAD->Reset(); + + // fill energy in all TH2 histograms for supercell map + for(auto scell : allSuperCells) { + //if (scell->caloDDE()->getSampling()==0||scell->caloDDE()->getSampling()==4) {m_SupercellMapEM0->Fill(scell->eta(),scell->phi(),scell->et());} + //if (scell->caloDDE()->getSampling()==1||scell->caloDDE()->getSampling()==5) {m_SupercellMapEM1->Fill(scell->eta(),scell->phi(),scell->et());} + //if (scell->caloDDE()->getSampling()==2||scell->caloDDE()->getSampling()==6) {m_SupercellMapEM2->Fill(scell->eta(),scell->phi(),scell->et());} + //if (scell->caloDDE()->getSampling()==3||scell->caloDDE()->getSampling()==7) {m_SupercellMapEM3->Fill(scell->eta(),scell->phi(),scell->et());} + //if (scell->caloDDE()->getSampling()==0||scell->caloDDE()->getSampling()==4) {m_SupercellMapEM0->Fill(scell->eta(),scell->phi(),scell->energy());} + //if (scell->caloDDE()->getSampling()==1||scell->caloDDE()->getSampling()==5) {m_SupercellMapEM1->Fill(scell->eta(),scell->phi(),scell->energy());} + //if (scell->caloDDE()->getSampling()==2||scell->caloDDE()->getSampling()==6) {m_SupercellMapEM2->Fill(scell->eta(),scell->phi(),scell->energy());} + //if (scell->caloDDE()->getSampling()==3||scell->caloDDE()->getSampling()==7) {m_SupercellMapEM3->Fill(scell->eta(),scell->phi(),scell->energy());} + //else {m_SupercellMapHAD->Fill(scell->eta(),scell->phi(),scell->energy());} + if (scell->caloDDE()->getSampling()==0||scell->caloDDE()->getSampling()==4) {m_SupercellMapEM0->Fill(scell->eta(),TVector2::Phi_0_2pi(scell->phi()),scell->energy()/TMath::CosH(scell->eta()));} + if (scell->caloDDE()->getSampling()==1||scell->caloDDE()->getSampling()==5) {m_SupercellMapEM1->Fill(scell->eta(),TVector2::Phi_0_2pi(scell->phi()),scell->energy()/TMath::CosH(scell->eta()));} + if (scell->caloDDE()->getSampling()==2||scell->caloDDE()->getSampling()==6) {m_SupercellMapEM2->Fill(scell->eta(),TVector2::Phi_0_2pi(scell->phi()),scell->energy()/TMath::CosH(scell->eta()));} + if (scell->caloDDE()->getSampling()==3||scell->caloDDE()->getSampling()==7) {m_SupercellMapEM3->Fill(scell->eta(),TVector2::Phi_0_2pi(scell->phi()),scell->energy()/TMath::CosH(scell->eta()));} + else {m_SupercellMapHAD->Fill(scell->eta(),TVector2::Phi_0_2pi(scell->phi()),scell->energy()/TMath::CosH(scell->eta()));} + } + + // Loop over seed cells, this should give us + // + for( auto cellAbove : m_cellsAboveThr ) { + // builds a vector with all the cells around the seed cell + // with the size (deta,dphi)=(0.08,0.21) + findCellsAround(scells, cellAbove, m_cellsAround,0.13,0.15); // large window + // check if seed cell is a local maximum in 3*3 window + if ( ! isCellEmMaximum ( m_cellsAround, cellAbove ) ) continue; + + float seedCenterEtaCourse = m_SupercellMapEM0->GetXaxis()->GetBinCenter( m_SupercellMapEM0->GetXaxis()->FindBin(cellAbove->eta()) ); + float seedCenterPhiCourse = m_SupercellMapEM0->GetYaxis()->GetBinCenter( m_SupercellMapEM0->GetYaxis()->FindBin(TVector2::Phi_0_2pi(cellAbove->phi())) ); + float seedCenterEtaFine = m_SupercellMapEM2->GetXaxis()->GetBinCenter( m_SupercellMapEM2->GetXaxis()->FindBin(cellAbove->eta()) ); + float seedCenterPhiFine = m_SupercellMapEM2->GetYaxis()->GetBinCenter( m_SupercellMapEM2->GetYaxis()->FindBin(TVector2::Phi_0_2pi(cellAbove->phi())) ); + float seedPlace=0; + if (seedCenterEtaCourse-seedCenterEtaFine>0.0124&&seedCenterEtaCourse-seedCenterEtaFine<0.0126) seedPlace=0.0125; // |*|| + if (seedCenterEtaCourse-seedCenterEtaFine>-0.0126&&seedCenterEtaCourse-seedCenterEtaFine<-0.0124) seedPlace=0.0375; // ||*| + if (seedCenterEtaCourse-seedCenterEtaFine>0.0374&&seedCenterEtaCourse-seedCenterEtaFine<0.0376) seedPlace=0.; // *||| + if (seedCenterEtaCourse-seedCenterEtaFine>-0.0376&&seedCenterEtaCourse-seedCenterEtaFine<-0.0374) seedPlace=0.05; // |||* + + msg << MSG::DEBUG <<"Esumi_ seed center etadiff = "<<seedCenterEtaCourse-seedCenterEtaFine<<" , phidiff = "<<seedCenterPhiCourse-seedCenterPhiFine<<endreq; + std::vector<float> EM0Supercells55; + std::vector<float> EM1Supercells55; + std::vector<float> EM2Supercells55; + std::vector<float> EM3Supercells55; + std::vector<float> HADSupercells55; + std::vector<float> EM0Supercells33; + std::vector<float> EM1Supercells33; + std::vector<float> EM2Supercells33; + std::vector<float> EM3Supercells33; + std::vector<float> HADSupercells33; + for (int iPhi=0;iPhi<5;iPhi++) { + for (int iEta=0;iEta<5;iEta++) { + if ( fabs(seedCenterEtaCourse-0.2+0.1*iEta)<4.9 ) { + if ((seedCenterPhiCourse-0.2+0.1*iPhi)>0 && (seedCenterPhiCourse-0.2+0.1*iPhi)<2*M_PI) { + EM0Supercells55.push_back(m_SupercellMapEM0->GetBinContent( m_SupercellMapEM0->GetBin(m_SupercellMapEM0->GetXaxis()->FindBin(seedCenterEtaCourse-0.2+0.1*iEta),m_SupercellMapEM0->GetYaxis()->FindBin(seedCenterPhiCourse-0.2+0.1*iPhi)))); + EM3Supercells55.push_back(m_SupercellMapEM3->GetBinContent( m_SupercellMapEM3->GetBin(m_SupercellMapEM3->GetXaxis()->FindBin(seedCenterEtaCourse-0.2+0.1*iEta),m_SupercellMapEM3->GetYaxis()->FindBin(seedCenterPhiCourse-0.2+0.1*iPhi)))); + HADSupercells55.push_back(m_SupercellMapHAD->GetBinContent( m_SupercellMapHAD->GetBin(m_SupercellMapHAD->GetXaxis()->FindBin(seedCenterEtaCourse-0.2+0.1*iEta),m_SupercellMapHAD->GetYaxis()->FindBin(seedCenterPhiCourse-0.2+0.1*iPhi)))); + if (iEta>0 && iEta<4 && iPhi>0 && iPhi<4) { + EM0Supercells33.push_back(m_SupercellMapEM0->GetBinContent( m_SupercellMapEM0->GetBin(m_SupercellMapEM0->GetXaxis()->FindBin(seedCenterEtaCourse-0.2+0.1*iEta),m_SupercellMapEM0->GetYaxis()->FindBin(seedCenterPhiCourse-0.2+0.1*iPhi)))); + EM3Supercells33.push_back(m_SupercellMapEM3->GetBinContent( m_SupercellMapEM3->GetBin(m_SupercellMapEM3->GetXaxis()->FindBin(seedCenterEtaCourse-0.2+0.1*iEta),m_SupercellMapEM3->GetYaxis()->FindBin(seedCenterPhiCourse-0.2+0.1*iPhi)))); + HADSupercells33.push_back(m_SupercellMapHAD->GetBinContent( m_SupercellMapHAD->GetBin(m_SupercellMapHAD->GetXaxis()->FindBin(seedCenterEtaCourse-0.2+0.1*iEta),m_SupercellMapHAD->GetYaxis()->FindBin(seedCenterPhiCourse-0.2+0.1*iPhi)))); + } + } + if ((seedCenterPhiCourse-0.2+0.1*iPhi)<=0) { + EM0Supercells55.push_back(m_SupercellMapEM0->GetBinContent( m_SupercellMapEM0->GetBin(m_SupercellMapEM0->GetXaxis()->FindBin(seedCenterEtaCourse-0.2+0.1*iEta),m_SupercellMapEM0->GetYaxis()->FindBin(seedCenterPhiCourse-0.2+0.1*iPhi+2.*M_PI)))); + EM3Supercells55.push_back(m_SupercellMapEM3->GetBinContent( m_SupercellMapEM3->GetBin(m_SupercellMapEM3->GetXaxis()->FindBin(seedCenterEtaCourse-0.2+0.1*iEta),m_SupercellMapEM3->GetYaxis()->FindBin(seedCenterPhiCourse-0.2+0.1*iPhi+2.*M_PI)))); + HADSupercells55.push_back(m_SupercellMapHAD->GetBinContent( m_SupercellMapHAD->GetBin(m_SupercellMapHAD->GetXaxis()->FindBin(seedCenterEtaCourse-0.2+0.1*iEta),m_SupercellMapHAD->GetYaxis()->FindBin(seedCenterPhiCourse-0.2+0.1*iPhi+2.*M_PI)))); + if (iEta>0 && iEta<4 && iPhi>0 && iPhi<4) { + EM0Supercells33.push_back(m_SupercellMapEM0->GetBinContent( m_SupercellMapEM0->GetBin(m_SupercellMapEM0->GetXaxis()->FindBin(seedCenterEtaCourse-0.2+0.1*iEta),m_SupercellMapEM0->GetYaxis()->FindBin(seedCenterPhiCourse-0.2+0.1*iPhi+2.*M_PI)))); + EM3Supercells33.push_back(m_SupercellMapEM3->GetBinContent( m_SupercellMapEM3->GetBin(m_SupercellMapEM3->GetXaxis()->FindBin(seedCenterEtaCourse-0.2+0.1*iEta),m_SupercellMapEM3->GetYaxis()->FindBin(seedCenterPhiCourse-0.2+0.1*iPhi+2.*M_PI)))); + HADSupercells33.push_back(m_SupercellMapHAD->GetBinContent( m_SupercellMapHAD->GetBin(m_SupercellMapHAD->GetXaxis()->FindBin(seedCenterEtaCourse-0.2+0.1*iEta),m_SupercellMapHAD->GetYaxis()->FindBin(seedCenterPhiCourse-0.2+0.1*iPhi+2.*M_PI)))); + } + } + if ((seedCenterPhiCourse-0.2+0.1*iPhi)>=2*M_PI) { + EM0Supercells55.push_back(m_SupercellMapEM0->GetBinContent( m_SupercellMapEM0->GetBin(m_SupercellMapEM0->GetXaxis()->FindBin(seedCenterEtaCourse-0.2+0.1*iEta),m_SupercellMapEM0->GetYaxis()->FindBin(seedCenterPhiCourse-0.2+0.1*iPhi-2.*M_PI)))); + EM3Supercells55.push_back(m_SupercellMapEM3->GetBinContent( m_SupercellMapEM3->GetBin(m_SupercellMapEM3->GetXaxis()->FindBin(seedCenterEtaCourse-0.2+0.1*iEta),m_SupercellMapEM3->GetYaxis()->FindBin(seedCenterPhiCourse-0.2+0.1*iPhi-2.*M_PI)))); + HADSupercells55.push_back(m_SupercellMapHAD->GetBinContent( m_SupercellMapHAD->GetBin(m_SupercellMapHAD->GetXaxis()->FindBin(seedCenterEtaCourse-0.2+0.1*iEta),m_SupercellMapHAD->GetYaxis()->FindBin(seedCenterPhiCourse-0.2+0.1*iPhi-2.*M_PI)))); + if (iEta>0 && iEta<4 && iPhi>0 && iPhi<4) { + EM0Supercells33.push_back(m_SupercellMapEM0->GetBinContent( m_SupercellMapEM0->GetBin(m_SupercellMapEM0->GetXaxis()->FindBin(seedCenterEtaCourse-0.2+0.1*iEta),m_SupercellMapEM0->GetYaxis()->FindBin(seedCenterPhiCourse-0.2+0.1*iPhi-2.*M_PI)))); + EM3Supercells33.push_back(m_SupercellMapEM3->GetBinContent( m_SupercellMapEM3->GetBin(m_SupercellMapEM3->GetXaxis()->FindBin(seedCenterEtaCourse-0.2+0.1*iEta),m_SupercellMapEM3->GetYaxis()->FindBin(seedCenterPhiCourse-0.2+0.1*iPhi-2.*M_PI)))); + HADSupercells33.push_back(m_SupercellMapHAD->GetBinContent( m_SupercellMapHAD->GetBin(m_SupercellMapHAD->GetXaxis()->FindBin(seedCenterEtaCourse-0.2+0.1*iEta),m_SupercellMapHAD->GetYaxis()->FindBin(seedCenterPhiCourse-0.2+0.1*iPhi-2.*M_PI)))); + } + } + } + if ( fabs(seedCenterEtaCourse-0.2+0.1*iEta)>=4.9 ) { + EM0Supercells55.push_back(0.); + EM3Supercells55.push_back(0.); + HADSupercells55.push_back(0.); + if (iEta>0 && iEta<4 && iPhi>0 && iPhi<4) { + EM0Supercells33.push_back(0.); + EM3Supercells33.push_back(0.); + HADSupercells33.push_back(0.); + } + } + } + } + + for (int iPhi=0;iPhi<5;iPhi++) { + for (int iEta=0;iEta<20;iEta++) { + if ( fabs(seedCenterEtaFine-0.2+0.1*iEta+seedPlace)<4.9 ) { + if ((seedCenterPhiFine-0.2+0.1*iPhi)>0 && (seedCenterPhiFine-0.2+0.1*iPhi)<2*M_PI) { + EM1Supercells55.push_back(m_SupercellMapEM1->GetBinContent( m_SupercellMapEM1->GetBin(m_SupercellMapEM1->GetXaxis()->FindBin(seedCenterEtaFine-0.2+0.1*iEta+seedPlace),m_SupercellMapEM1->GetYaxis()->FindBin(seedCenterPhiFine-0.2+0.1*iPhi)))); + EM2Supercells55.push_back(m_SupercellMapEM2->GetBinContent( m_SupercellMapEM2->GetBin(m_SupercellMapEM2->GetXaxis()->FindBin(seedCenterEtaFine-0.2+0.1*iEta+seedPlace),m_SupercellMapEM2->GetYaxis()->FindBin(seedCenterPhiFine-0.2+0.1*iPhi)))); + if (iEta>3 && iEta<16 && iPhi>0 && iPhi<4) { + EM1Supercells33.push_back(m_SupercellMapEM1->GetBinContent( m_SupercellMapEM1->GetBin(m_SupercellMapEM1->GetXaxis()->FindBin(seedCenterEtaFine-0.2+0.1*iEta+seedPlace),m_SupercellMapEM1->GetYaxis()->FindBin(seedCenterPhiFine-0.2+0.1*iPhi)))); + EM2Supercells33.push_back(m_SupercellMapEM2->GetBinContent( m_SupercellMapEM2->GetBin(m_SupercellMapEM2->GetXaxis()->FindBin(seedCenterEtaFine-0.2+0.1*iEta+seedPlace),m_SupercellMapEM2->GetYaxis()->FindBin(seedCenterPhiFine-0.2+0.1*iPhi)))); + } + } + if ((seedCenterPhiFine-0.2+0.1*iPhi)<=0) { + EM1Supercells55.push_back(m_SupercellMapEM1->GetBinContent( m_SupercellMapEM1->GetBin(m_SupercellMapEM1->GetXaxis()->FindBin(seedCenterEtaFine-0.2+0.1*iEta+seedPlace),m_SupercellMapEM1->GetYaxis()->FindBin(seedCenterPhiFine-0.2+0.1*iPhi+2.*M_PI)))); + EM2Supercells55.push_back(m_SupercellMapEM2->GetBinContent( m_SupercellMapEM2->GetBin(m_SupercellMapEM2->GetXaxis()->FindBin(seedCenterEtaFine-0.2+0.1*iEta+seedPlace),m_SupercellMapEM2->GetYaxis()->FindBin(seedCenterPhiFine-0.2+0.1*iPhi+2.*M_PI)))); + if (iEta>3 && iEta<16 && iPhi>0 && iPhi<4) { + EM1Supercells33.push_back(m_SupercellMapEM1->GetBinContent( m_SupercellMapEM1->GetBin(m_SupercellMapEM1->GetXaxis()->FindBin(seedCenterEtaFine-0.2+0.1*iEta+seedPlace),m_SupercellMapEM1->GetYaxis()->FindBin(seedCenterPhiFine-0.2+0.1*iPhi+2.*M_PI)))); + EM2Supercells33.push_back(m_SupercellMapEM2->GetBinContent( m_SupercellMapEM2->GetBin(m_SupercellMapEM2->GetXaxis()->FindBin(seedCenterEtaFine-0.2+0.1*iEta+seedPlace),m_SupercellMapEM2->GetYaxis()->FindBin(seedCenterPhiFine-0.2+0.1*iPhi+2.*M_PI)))); + } + } + if ((seedCenterPhiFine-0.2+0.1*iPhi)>=2*M_PI) { + EM1Supercells55.push_back(m_SupercellMapEM1->GetBinContent( m_SupercellMapEM1->GetBin(m_SupercellMapEM1->GetXaxis()->FindBin(seedCenterEtaFine-0.2+0.1*iEta+seedPlace),m_SupercellMapEM1->GetYaxis()->FindBin(seedCenterPhiFine-0.2+0.1*iPhi-2.*M_PI)))); + EM2Supercells55.push_back(m_SupercellMapEM2->GetBinContent( m_SupercellMapEM2->GetBin(m_SupercellMapEM2->GetXaxis()->FindBin(seedCenterEtaFine-0.2+0.1*iEta+seedPlace),m_SupercellMapEM2->GetYaxis()->FindBin(seedCenterPhiFine-0.2+0.1*iPhi-2.*M_PI)))); + if (iEta>3 && iEta<16 && iPhi>0 && iPhi<4) { + EM1Supercells33.push_back(m_SupercellMapEM1->GetBinContent( m_SupercellMapEM1->GetBin(m_SupercellMapEM1->GetXaxis()->FindBin(seedCenterEtaFine-0.2+0.1*iEta+seedPlace),m_SupercellMapEM1->GetYaxis()->FindBin(seedCenterPhiFine-0.2+0.1*iPhi-2.*M_PI)))); + EM2Supercells33.push_back(m_SupercellMapEM2->GetBinContent( m_SupercellMapEM2->GetBin(m_SupercellMapEM2->GetXaxis()->FindBin(seedCenterEtaFine-0.2+0.1*iEta+seedPlace),m_SupercellMapEM2->GetYaxis()->FindBin(seedCenterPhiFine-0.2+0.1*iPhi-2.*M_PI)))); + } + } + } + if ( fabs(seedCenterEtaFine-0.2+0.1*iEta+seedPlace)>=4.9 ) { + EM1Supercells55.push_back(0.); + EM2Supercells55.push_back(0.); + if ((seedCenterPhiFine-0.2+0.1*iPhi)>=2*M_PI) { + EM1Supercells55.push_back(0.); + EM2Supercells55.push_back(0.); + } + } + } + } + + float eFEXTDRcluser = eFEXTDRclus(EM0Supercells33, EM1Supercells33, EM2Supercells33, EM3Supercells33, HADSupercells33, seedPlace); + float eFEXTDRIso = eFEXIsoTDR(EM2Supercells33,seedPlace); + //bool iseFEXTDRIso = TrigT1CaloBaseFex::IseFEXIsoTDR (EM2Supercells33,seedPlace,0.6) ; + + + // build cluster for tau + //xAOD::EmTauRoI_v2* clForTau = new xAOD::EmTauRoI_v2(); + xAOD::EmTauRoI* clForTau = new xAOD::EmTauRoI(); + clustersForTau->push_back( clForTau ); + clForTau->setEta( cellAbove->eta() ); + clForTau->setPhi( cellAbove->phi() ); + + (*acc_clusterET)(*clForTau) = eFEXTDRcluser; + (*acc_clusterIso)(*clForTau) = eFEXTDRIso; + + // Retrieve tau properties + //double score = (*acc_score)(clForTau); + //msg << MSG::INFO << "Esumi score = "<<score<< endreq; + +/* + clForTau->setClusEnergyTDR( eFEXTDRcluser ); + clForTau->seteFEXIsoTDR( eFEXTDRIso ); + clForTau->setIseFEXTDRIso( iseFEXTDRIso ); +*/ + } + // avoid memory leak + if ( scells ) {scells->clear(); delete scells;} + m_cellsAround.clear(); + m_cellsAround2.clear(); + m_TTsAround.clear(); + return StatusCode::SUCCESS; +} diff --git a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloRun3TauFex.h b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloRun3TauFex.h new file mode 100644 index 0000000000000000000000000000000000000000..05aa5d74903012be2606107e60218fcb0b67f46b --- /dev/null +++ b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/TrigT1CaloRun3TauFex.h @@ -0,0 +1,68 @@ +/* + Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration +*/ + + +/** + * Name : TrigT1CaloRun3TauFex.h + * PACKAGE : Trigger/L1CaloUpgrade/TrigT1CaloRun3TauFex + * + * AUTHOR : Denis Oliveira Damazio + * + * PURPOSE : Emulate the eFex system, for phase 1, L1Calo upgrade + * + * **/ + +//#ifndef TRIGT1CALOEFEX_TRIGT1CALOEFEX +//#define TRIGT1CALOEFEX_TRIGT1CALOEFEX +#ifndef TRIGT1CALOEFEX_TRIGT1CALORUN3TAUFEX +#define TRIGT1CALOEFEX_TRIGT1CALORUN3TAUFEX + +#include "../src/TrigT1CaloBaseFex.h" + +class TrigT1CaloRun3TauFex : public TrigT1CaloBaseFex +{ +public : + + // Usual athena stuff + TrigT1CaloRun3TauFex( const std::string& name, ISvcLocator* pSvcLocator ); + virtual ~TrigT1CaloRun3TauFex(); + StatusCode initialize(); + StatusCode finalize(); + StatusCode execute(); + +private : + + /** do I want to monitor things */ + bool m_enableMon; + /** TFile for monitoring */ + TFile * m_histFile; + /** Histograms with monitoring activity */ + TH1F* m_EtSElectron; + TH1F* m_HadEtSElectron; + TH1F* m_EtaSElectron; + TH1F* m_PhiSElectron; + TH2F* m_EtSElectronEta; + TH2F* m_HadEtSElectronEta; + TH2F* m_SupercellMapEM0; + TH2F* m_SupercellMapEM1; + TH2F* m_SupercellMapEM2; + TH2F* m_SupercellMapEM3; + TH2F* m_SupercellMapHAD; + + std::string m_scoreName; + std::string m_newScoreName; + SG::AuxElement::ConstAccessor<float>* acc_score; + SG::AuxElement::Accessor<float>* acc_newScore; + + SG::AuxElement::Accessor<float>* acc_clusterET; + SG::AuxElement::Accessor<float>* acc_clusterIso; + + /** output name */ + std::string m_outputClusterName; + /** cut for time measurement */ + float m_timeThr; + +}; + +#endif diff --git a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/components/TrigL1CaloUpgrade_entries.cxx b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/components/TrigL1CaloUpgrade_entries.cxx index d8f390468e6aadc08a0cbf35d0b071ad1bced928..34c58d5473c487b1ec69c038e20efeb8aa4ab448 100644 --- a/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/components/TrigL1CaloUpgrade_entries.cxx +++ b/Trigger/TrigL1Upgrade/TrigL1CaloUpgrade/src/components/TrigL1CaloUpgrade_entries.cxx @@ -5,6 +5,7 @@ #include "src/SimpleLArDigitsChecks.h" #include "src/LArFex.h" #include "src/SuperCellBCIDAlg.h" +#include "src/TrigT1CaloRun3TauFex.h" #include "GaudiKernel/DeclareFactoryEntries.h" DECLARE_ALGORITHM_FACTORY( TrigT1CaloEFex ) @@ -14,6 +15,7 @@ DECLARE_ALGORITHM_FACTORY( SimpleSuperCellChecks ) DECLARE_ALGORITHM_FACTORY( SimpleLArDigitsChecks ) DECLARE_ALGORITHM_FACTORY( LArFex ) DECLARE_ALGORITHM_FACTORY( SuperCellBCIDAlg ) +DECLARE_ALGORITHM_FACTORY( TrigT1CaloRun3TauFex ) DECLARE_FACTORY_ENTRIES(TrigL1CaloUpgrade) { DECLARE_ALGORITHM( TrigT1CaloEFex ); DECLARE_ALGORITHM( TrigT1CaloforwEFex ); @@ -22,4 +24,5 @@ DECLARE_FACTORY_ENTRIES(TrigL1CaloUpgrade) { DECLARE_ALGORITHM( TrigT1CaloTauFex ); DECLARE_ALGORITHM( LArFex ); DECLARE_ALGORITHM( SuperCellBCIDAlg ); + DECLARE_ALGORITHM( TrigT1CaloRun3TauFex ); } diff --git a/Trigger/TrigMonitoring/TrigJetMonitoring/python/TrigJetMonitCategory.py b/Trigger/TrigMonitoring/TrigJetMonitoring/python/TrigJetMonitCategory.py index 675acd9f91b88eb01d205c8562e0ec2c98469f44..e91a89ecb5a76b30a0c623304eeef7748fa3b44a 100644 --- a/Trigger/TrigMonitoring/TrigJetMonitoring/python/TrigJetMonitCategory.py +++ b/Trigger/TrigMonitoring/TrigJetMonitoring/python/TrigJetMonitCategory.py @@ -38,7 +38,11 @@ monitoring_jet = ['j35', '4j45', '6j45', '6j45_0eta240', - '10j40_L14J20'] + '10j40_L14J20', + 'j0_ftk_jvt015et15', + 'j0_ftk_jvt015et45', + 'j0_ftk_4jvt015et15', + 'j0_ftk_4jvt015et45'] primary_l1jet = ['L1_J10', 'L1_TE50', @@ -75,7 +79,11 @@ primary_jet = ['j35', '4j45', '6j45', '6j45_0eta240', - '10j40_L14J20'] + '10j40_L14J20', + 'j0_ftk_jvt015et15', + 'j0_ftk_jvt015et45', + 'j0_ftk_4jvt015et15', + 'j0_ftk_4jvt015et45'] ########################## pp Config ############################################### @@ -115,7 +123,11 @@ monitoring_jet_pp = ['j35', '4j45', '6j45', '6j45_0eta240', - '10j40_L14J20'] + '10j40_L14J20', + 'j0_ftk_jvt015et15', + 'j0_ftk_jvt015et45', + 'j0_ftk_4jvt015et15', + 'j0_ftk_4jvt015et45'] primary_l1jet_pp = ['L1_J10', 'L1_TE50', @@ -152,7 +164,12 @@ primary_jet_pp = ['j35', '4j45', '6j45', '6j45_0eta240', - '10j40_L14J20'] + '10j40_L14J20', + 'j0_ftk_jvt015et15', + 'j0_ftk_jvt015et45', + 'j0_ftk_4jvt015et15', + 'j0_ftk_4jvt015et45'] + ########################## validation Config ############################################### @@ -193,7 +210,12 @@ monitoring_jet_validation = ['j35', '4j45', '6j45', '6j45_0eta240', - '10j40_L14J20'] + '10j40_L14J20', + 'j0_ftk_jvt015et15', + 'j0_ftk_jvt015et45', + 'j0_ftk_4jvt015et15', + 'j0_ftk_4jvt015et45'] + primary_l1jet_validation = ['L1_J10', 'L1_TE50', @@ -231,7 +253,11 @@ primary_jet_validation = ['j35', '4j45', '6j45', '6j45_0eta240', - '10j40_L14J20'] + '10j40_L14J20', + 'j0_ftk_jvt015et15', + 'j0_ftk_jvt015et45', + 'j0_ftk_4jvt015et15', + 'j0_ftk_4jvt015et45'] ######################## Cosmics Config ############################################ diff --git a/Trigger/TrigMonitoring/TrigJetMonitoring/python/TrigJetMonitoringConfig.py b/Trigger/TrigMonitoring/TrigJetMonitoring/python/TrigJetMonitoringConfig.py index 46bb6fc93dfe5f58512c04dfa289623cec794d7b..dcca7840b7417b00fc2a1edac6e308f0553464af 100644 --- a/Trigger/TrigMonitoring/TrigJetMonitoring/python/TrigJetMonitoringConfig.py +++ b/Trigger/TrigMonitoring/TrigJetMonitoring/python/TrigJetMonitoringConfig.py @@ -198,7 +198,11 @@ if (pp) or (mc): '4j45':20., '6j45':20., '6j45_0eta240':20., - '10j40_L14J20':0.} + '10j40_L14J20':0., + 'j0_ftk_jvt015et15':0., + 'j0_ftk_jvt015et45':20., + 'j0_ftk_4jvt015et15':0., + 'j0_ftk_4jvt015et45':20.} hlt_hltEtaHighThresholds = { 'j0_perf_L1RD0FILLED': 2.5, 'j0_perf_ftk_L1RD0FILLED': 2.5, @@ -232,7 +236,12 @@ if (pp) or (mc): '4j45':3.2, '6j45':3.2, '6j45_0eta240':2.4, - '10j40_L14J20':3.2} + '10j40_L14J20':3.2, + 'j0_ftk_jvt015et15':3.2, + 'j0_ftk_jvt015et45':3.2, + 'j0_ftk_4jvt015et15':3.2, + 'j0_ftk_4jvt015et45':3.2} + hlt_hltEtaLowThresholds = { 'j0_perf_L1RD0FILLED': 0., 'j0_perf_ftk_L1RD0FILLED': 0., @@ -266,7 +275,11 @@ if (pp) or (mc): '4j45':0.0, '6j45':0.0, '6j45_0eta240':0.0, - '10j40_L14J20':0.0} + '10j40_L14J20':0.0, + 'j0_ftk_jvt015et15':0., + 'j0_ftk_jvt015et45':0., + 'j0_ftk_4jvt015et15':0., + 'j0_ftk_4jvt015et45':0.} hlt_hltJetn = { 'j0_perf_L1RD0FILLED': 1, @@ -301,8 +314,12 @@ if (pp) or (mc): '4j45':4, '6j45':6, '6j45_0eta240':6, - '10j40_L14J20':10} - + '10j40_L14J20':10, + 'j0_ftk_jvt015et15':1, + 'j0_ftk_jvt015et45':1, + 'j0_ftk_4jvt015et15':4, + 'j0_ftk_4jvt015et45':4} + hlt_hltContainers = { 'j0_perf_L1RD0FILLED':'a4tcemsubjesISFS', 'j0_perf_ftk_L1RD0FILLED':'a4tcemsubjesISFSftk', @@ -337,8 +354,11 @@ if (pp) or (mc): '4j45':'a4tcemsubjesISFS', '6j45':'a4tcemsubjesISFS', '6j45_0eta240':'a4tcemsubjesISFS', - '10j40_L14J20':'a4tcemsubjesISFS' - } + '10j40_L14J20':'a4tcemsubjesISFS', + 'j0_ftk_jvt015et15':'a4tcemsubjesISFSftk', + 'j0_ftk_jvt015et45':'a4tcemsubjesISFSftk', + 'j0_ftk_4jvt015et15':'a4tcemsubjesISFSftk', + 'j0_ftk_4jvt015et45':'a4tcemsubjesISFSftk'} # Offline hlt_offlineEtThresholds = { 'j0_perf_L1RD0FILLED': 0., @@ -374,7 +394,12 @@ if (pp) or (mc): '4j45':20., '6j45':20., '6j45_0eta240':20., - '10j40_L14J20':0.} + '10j40_L14J20':0., + 'j0_ftk_jvt015et15':0., + 'j0_ftk_jvt015et45':20., + 'j0_ftk_4jvt015et15':0., + 'j0_ftk_4jvt015et45':20.} + ############################################# HI Config ######################################################### diff --git a/Trigger/TrigMonitoring/TrigJetMonitoring/src/HLTJetMonTool.cxx b/Trigger/TrigMonitoring/TrigJetMonitoring/src/HLTJetMonTool.cxx index 52b555a678cb5fc02013a09944b61955dd0b384f..961dca24a4fa7609f112ea9046fd8c43002d974e 100755 --- a/Trigger/TrigMonitoring/TrigJetMonitoring/src/HLTJetMonTool.cxx +++ b/Trigger/TrigMonitoring/TrigJetMonitoring/src/HLTJetMonTool.cxx @@ -1798,6 +1798,13 @@ void HLTJetMonTool::fillBasicHLTforChain( const std::string& theChain, double th hecfrac = j->getAttribute<float>(xAOD::JetAttribute::HECFrac); } + double jvt = -0.1; + double sumpttrk500 = 0; + if (j->isAvailable<float>("Jvt")){ + sumpttrk500 = j->getAttribute<std::vector<float> >("SumPtTrkPt500")[0]/CLHEP::GeV; + jvt = j->getAttribute<float>("Jvt"); + } + v_thisjet.SetPtEtaPhiE(j->pt()/CLHEP::GeV,j->eta(), j->phi(),j->e()/CLHEP::GeV); m_v_HLTjet.push_back(v_thisjet); m_n_index++; @@ -1808,6 +1815,8 @@ void HLTJetMonTool::fillBasicHLTforChain( const std::string& theChain, double th if((h = hist("HLTJet_phi"))) h->Fill(phi, m_lumi_weight); if((h = hist("HLTJet_emfrac"))) h->Fill(emfrac, m_lumi_weight); if((h = hist("HLTJet_hecfrac"))) h->Fill(hecfrac, m_lumi_weight); + if((h = hist("HLTJet_JVT"))) h->Fill(jvt, m_lumi_weight); + if((h = hist("HLTJet_SumPtTrk500"))) h->Fill(sumpttrk500,m_lumi_weight); if (count==0){ if((h = hist("HLTJet_Leading_Et"))) h->Fill(et, m_lumi_weight); diff --git a/Trigger/TrigT1/TrigT1CTP/CMakeLists.txt b/Trigger/TrigT1/TrigT1CTP/CMakeLists.txt index b200b9b674c7488ce3da6cc3bac3cbdd80459ca7..0e0c9478f7eeed4da81cd4aaec78bb84e1e76672 100644 --- a/Trigger/TrigT1/TrigT1CTP/CMakeLists.txt +++ b/Trigger/TrigT1/TrigT1CTP/CMakeLists.txt @@ -18,11 +18,13 @@ atlas_depends_on_subdirs( PUBLIC Control/AthenaMonitoring Database/AthenaPOOL/AthenaPoolUtilities Event/EventInfo + Event/xAOD/xAODTrigCalo Tools/PathResolver Trigger/TrigConfiguration/TrigConfStorage Trigger/TrigT1/L1Topo/L1TopoConfig Trigger/TrigT1/TrigT1Interfaces - Trigger/TrigT1/TrigT1Result ) + Trigger/TrigT1/TrigT1Result + Trigger/TrigSteer/TrigSteering ) # External dependencies: find_package( Boost COMPONENTS filesystem thread system ) diff --git a/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/BunchGroupTrigger.h b/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/BunchGroupTrigger.h old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/CTPConstants.h b/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/CTPConstants.h old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/CTPDataDumper.h b/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/CTPDataDumper.h old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/CTPSimulation.h b/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/CTPSimulation.h old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/CTPTriggerItem.h b/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/CTPTriggerItem.h old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/CTPTriggerItemNode.h b/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/CTPTriggerItemNode.h old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/CTPTriggerThreshold.h b/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/CTPTriggerThreshold.h old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/CTPUtil.h b/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/CTPUtil.h old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/EventInfo.h b/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/EventInfo.h old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/ISpecialTrigger.h b/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/ISpecialTrigger.h old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/ItemMap.h b/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/ItemMap.h old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/MsgLogger.h b/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/MsgLogger.h old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/MsgWriter.h b/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/MsgWriter.h old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/PrescaledClockTrigger.h b/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/PrescaledClockTrigger.h old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/RandomTrigger.h b/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/RandomTrigger.h old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/ResultBuilder.h b/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/ResultBuilder.h old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/SpecialTrigger.h b/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/SpecialTrigger.h old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/ThresholdMap.h b/Trigger/TrigT1/TrigT1CTP/TrigT1CTP/ThresholdMap.h old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/share/ReadCTP_RDO.config.py b/Trigger/TrigT1/TrigT1CTP/share/ReadCTP_RDO.config.py old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/share/TrigT1CTP_EnableCTPEmulation.py b/Trigger/TrigT1/TrigT1CTP/share/TrigT1CTP_EnableCTPEmulation.py new file mode 100644 index 0000000000000000000000000000000000000000..c6f00f41094f11e3c75f3c420b9768eac5ce0055 --- /dev/null +++ b/Trigger/TrigT1/TrigT1CTP/share/TrigT1CTP_EnableCTPEmulation.py @@ -0,0 +1,34 @@ + +def enableCTPEmulation(): + + from RecExConfig.RecFlags import rec + from AthenaCommon.AppMgr import ServiceMgr as svcMgr + from TrigT1CaloFexSim.L1SimulationControlFlags import L1Phase1SimFlags as simflags + + from AthenaCommon.GlobalFlags import globalflags + isData = (globalflags.DataSource == 'data') + + algseq = CfgMgr.AthSequencer("AthAlgSeq") + + # if running on bytestream data -- will not use for the time being + #algseq += CfgMgr.TrigT1CTMonitoring__DeriveSimulationInputs( + # ) + + algseq += CfgMgr.LVL1CTP__CTPEmulation ( + RDOOutputLocation = "CTP_RDO_L1Run3", + IsData = isData + ) + + if not hasattr(svcMgr,"THistSvc"): + svcMgr += CfgMgr.THistSvc() + svcMgr.THistSvc.Output += ["L1Sim DATAFILE='l1simulation.root' OPT='RECREATE'"]; + print svcMgr.THistSvc + + if rec.doWriteAOD(): + StreamAOD.ItemList += [ "CTP_RDO#CTP_RDO", + "CTP_RDO#CTP_RDO_L1Run3" + ] + if rec.doWriteESD(): + StreamESD.ItemList += [ "CTP_RDO#CTP_RDO", + "CTP_RDO#CTP_RDO_L1Run3" + ] diff --git a/Trigger/TrigT1/TrigT1CTP/share/TrigT1CTP_jobOptions.py b/Trigger/TrigT1/TrigT1CTP/share/TrigT1CTP_jobOptions.py old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/share/TrigT1CTP_standalone_db_job.py b/Trigger/TrigT1/TrigT1CTP/share/TrigT1CTP_standalone_db_job.py old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/share/TrigT1CTP_standalone_xml_job.py b/Trigger/TrigT1/TrigT1CTP/share/TrigT1CTP_standalone_xml_job.py old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/share/jobOptions.ReadCTP_RDO.py b/Trigger/TrigT1/TrigT1CTP/share/jobOptions.ReadCTP_RDO.py old mode 100755 new mode 100644 diff --git a/Trigger/TrigT1/TrigT1CTP/src/CTPEmulation.cxx b/Trigger/TrigT1/TrigT1CTP/src/CTPEmulation.cxx new file mode 100644 index 0000000000000000000000000000000000000000..42b6e552a97df38420510e13188f5aa12f439094 --- /dev/null +++ b/Trigger/TrigT1/TrigT1CTP/src/CTPEmulation.cxx @@ -0,0 +1,1090 @@ +#include "./CTPEmulation.h" + +#include "TrigConfL1Data/CTPConfig.h" +#include "TrigConfL1Data/L1DataDef.h" +#include "TrigConfL1Data/ClusterThresholdValue.h" +#include "TrigT1Interfaces/TrigT1StoreGateKeys.h" + +#include "TrigT1CTP/CTPTriggerThreshold.h" +#include "TrigT1CTP/CTPTriggerItem.h" +#include "TrigT1CTP/BunchGroupTrigger.h" + +#include "TrigT1Result/CTP_RDO.h" +#include "TrigT1Interfaces/CTPSLink.h" +#include "TrigSteering/Lvl1ResultAccessTool.h" +#include "TrigT1Result/RoIBResult.h" +#include "TrigT1Result/JetEnergyRoI.h" + +#include "TrigT1Interfaces/CPRoIDecoder.h" +#include "TrigT1Interfaces/JEPRoIDecoder.h" +#include "TrigT1Interfaces/TrigT1CaloDefs.h" + +#include "TH2.h" + +#include <iomanip> +#include <algorithm> +#include <cmath> + +using namespace TrigConf; + +LVL1CTP::CTPEmulation::CTPEmulation( const std::string& name, ISvcLocator* pSvcLocator ) : + AthAlgorithm ( name, pSvcLocator ), + m_histSvc ("THistSvc", name), + m_configSvc ("TrigConf::TrigConfigSvc/TrigConfigSvc", name), + m_lvl1Tool("HLT::Lvl1ResultAccessTool/Lvl1ResultAccessTool",this), + m_useCTPInput (false), + m_gFEXMETPufitLoc ("gXEPUFIT_MET"), + m_gFEXMETRhoLoc ("gXERHO_MET"), + m_gFEXMETJwoJLoc ("gXEJWOJ_MET"), + m_gJetLoc ("gL1Jets"), + m_jJetLoc ("jRoundJets"), + m_jLJetLoc ("jRoundLargeRJets"), + m_eFEXClusterLoc ( "SClusterCl"), + m_eFEXTauLoc ( "SClusterTau"), + m_muonRoILoc ( "LVL1MuonRoIs" ), + m_lgJetRoILoc ( "LVL1JetRoIs" ), + m_muonCTPLoc ( LVL1MUCTPI::DEFAULT_MuonCTPLocation ), + m_isData ( false ), + m_roiOutputLoc ( LVL1CTP::DEFAULT_CTPSLinkLocation ), + m_roiOutputLoc_Rerun ( LVL1CTP::DEFAULT_CTPSLinkLocation_Rerun ), + m_rdoOutputLoc ( LVL1CTP::DEFAULT_RDOOutputLocation ), + m_rdoOutputLoc_Rerun ( LVL1CTP::DEFAULT_RDOOutputLocation_Rerun ), + m_histStream("EXPERT"), + m_itemCountsSumTBP(512,0), + m_itemCountsSumTAP(512,0), + m_itemCountsSumTAV(512,0) +{ + declareProperty( "HistogramSvc", m_histSvc, "Histogram Service"); + declareProperty( "HistogramStream", m_histStream, "Histogram stream name, bound to file by THistSvc"); + declareProperty( "TrigConfigSvc", m_configSvc, "Trigger configuration service"); + + declareProperty( "UseCTPInputFromData", m_useCTPInput, "Trigger configuration service"); + + // input data + declareProperty( "gFEXMETPufitInput", m_gFEXMETPufitLoc, "StoreGate location of gFEX PUfit MET input" ); + declareProperty( "gFEXMETRhoInput", m_gFEXMETRhoLoc, "StoreGate location of gFEX rho MET input" ); + declareProperty( "gFEXMETJwoJInput", m_gFEXMETJwoJLoc, "StoreGate location of gFEX JwoJ MET input" ); + declareProperty( "jJetInput", m_jJetLoc, "StoreGate location of jFEX Jet inputs" ); + declareProperty( "jLJetInput", m_jLJetLoc, "StoreGate location of jFEX large-R Jet inputs" ); + declareProperty( "gJetInput", m_gJetLoc, "StoreGate location of gFEX Jet inputs" ); + declareProperty( "eFEXClusterInput", m_eFEXClusterLoc, "StoreGate location of eFEX Cluster inputs" ); + + // input data from ROI + declareProperty( "MuonRoIInput", m_muonRoILoc, "StoreGate location of muon RoI inputs" ); + declareProperty( "LGJetRoIInput", m_lgJetRoILoc, "StoreGate location of muon RoI inputs" ); + + // muon threshold counts from CTP input recorded in data + declareProperty( "MuonCTPInput", m_muonCTPLoc, "StoreGate location of Muon inputs" ); + + // output locations and control + declareProperty( "IsData", m_isData, "emulate CTP as part of MC or rerun on data" ); + declareProperty( "RoIOutputLocation", m_roiOutputLoc, "StoreGate location of CTP RoI (sim)"); + declareProperty( "RoIOutputLocation_Rerun", m_roiOutputLoc_Rerun, "StoreGate location of rerun CTP RoI (data)"); + declareProperty( "RDOOutputLocation", m_rdoOutputLoc, "StoreGate location of CTP RDO (sim)" ); + declareProperty( "RDOOutputRerunLocation", m_rdoOutputLoc_Rerun, "StoreGate location of rerun CTP RDO (data)" ); + + m_decoder = new LVL1::CPRoIDecoder(); + m_jetDecoder = new LVL1::JEPRoIDecoder(); +} + + +LVL1CTP::CTPEmulation::~CTPEmulation() +{} + + +StatusCode +LVL1CTP::CTPEmulation::initialize() { + + CHECK(m_configSvc.retrieve()); + + CHECK(m_lvl1Tool.retrieve()); + + CHECK(m_histSvc.retrieve()); + + m_thrMap = new ThresholdMap( m_configSvc->ctpConfig()->menu().thresholdVector()); + + m_itemMap = new ItemMap( m_configSvc->ctpConfig()->menu().itemVector(), + m_configSvc->ctpConfig()->prescaleSet(), + nullptr ); + + CHECK( createInternalTriggerMap() ); + + // print out configuration + // printConfiguration().ignore(); + + return StatusCode::SUCCESS; +} + + +StatusCode +LVL1CTP::CTPEmulation::createInternalTriggerMap() { + + unsigned int ctpVersion ( 4 ); + + m_internalTrigger = new InternalTriggerMap(); + + // declare bunch group internal triggers + const std::vector<TrigConf::BunchGroup> & bunchGroups(m_configSvc->ctpConfig()->bunchGroupSet().bunchGroups()); + ATH_MSG_DEBUG("Defining bunch group internal trigger"); + for (size_t i(0); i < bunchGroups.size(); ++i) { + InternalTriggerMap::key_type trigtype = std::make_pair(TrigConf::L1DataDef::BGRP,i); + (*m_internalTrigger)[trigtype] = new LVL1CTP::BunchGroupTrigger(i, bunchGroups[i].bunches(),ctpVersion); + } + + return StatusCode::SUCCESS; +} + + +StatusCode +LVL1CTP::CTPEmulation::printConfiguration() const { + ATH_MSG_DEBUG("Mapped decision threshold objects to configuration ones"); + ATH_MSG_DEBUG(" |--------------------------------------------------------|"); + ATH_MSG_DEBUG(" | TIP layout for the thresholds |"); + ATH_MSG_DEBUG(" |--------------------------------------------------------|"); + ATH_MSG_DEBUG(" | Name | startbit | endbit |"); + ATH_MSG_DEBUG(" |--------------------------------------------------------|"); + for( TrigConf::TriggerThreshold * threshold : m_configSvc->ctpConfig()->menu().thresholdVector() ) { + ATH_MSG_DEBUG( "REGTEST - | " << std::setw( 20 ) << threshold->name() << " | " + << std::setw( 8 ) << m_thrMap->decision( threshold )->startBit() << " | " + << std::setw( 8 ) << m_thrMap->decision( threshold )->endBit() << " |"); + } + ATH_MSG_DEBUG(" |--------------------------------------------------------|"); + for (InternalTriggerMap::value_type internalThr : *m_internalTrigger) { + ATH_MSG_DEBUG("REGTEST - | " << std::setw( 20 ) << L1DataDef::typeAsString(internalThr.first.first) << internalThr.first.second << " | " + << std::setw( 8 ) << internalThr.second->pit() << " | " << std::setw( 8 ) << internalThr.second->pit() << " |"); + } + ATH_MSG_DEBUG(" |--------------------------------------------------------|"); + + ATH_MSG_DEBUG("Mapped decision trigger item objects to configuration ones"); + ATH_MSG_DEBUG(" |---------------------------------------------------------------------------------|"); + ATH_MSG_DEBUG(" | Layout of trigger items in result |"); + ATH_MSG_DEBUG(" |---------------------------------------------------------------------------------|"); + ATH_MSG_DEBUG(" | Name | Position | Prescale | TriggerType |"); + ATH_MSG_DEBUG(" |---------------------------------------------------------------------------------|"); + + for( TrigConf::TriggerItem* item : m_configSvc->ctpConfig()->menu().item_by_name()) { + ATH_MSG_DEBUG("REGTEST - | " << std::setw( 40 ) << item->name() + << " | " << std::setw( 7 ) << m_itemMap->getItem( item )->itemPos() + << " | " << std::setw( 7 ) << m_itemMap->getItem( item )->prescale() + << " | 0x" << std::hex << std::setfill('0') << std::setw( 2 ) << item->triggerType() << std::dec << std::setfill(' ') + << " |"); + } + ATH_MSG_DEBUG(" |---------------------------------------------------------------------------------|"); + + return StatusCode::SUCCESS; +} + + + +StatusCode +LVL1CTP::CTPEmulation::beginRun() { + + CHECK( bookHists() ); + + CHECK( m_lvl1Tool->updateConfig() ); + + return StatusCode::SUCCESS; +} + + +StatusCode +LVL1CTP::CTPEmulation::start() { + return StatusCode::SUCCESS; +} + + +StatusCode +LVL1CTP::CTPEmulation::execute() { + + retrieveCollections().ignore(); + + fillInputHistograms().ignore(); + + extractMultiplicities().ignore(); + + simulateItems().ignore(); + + return StatusCode::SUCCESS; +} + + + +StatusCode +LVL1CTP::CTPEmulation::createMultiplicityHist(const std::string & type, TrigConf::L1DataDef::TriggerType tt, unsigned int maxMult ) { + + const auto & thrV = m_configSvc->ctpConfig()->menu().thresholdConfig().getThresholdVector(tt); + + TH2 * hist = new TH2I(Form("%sMult", type.c_str()), Form("%s threshold multiplicity", type.c_str()), thrV.size(), 0, thrV.size(), maxMult, 0, maxMult); + + for(const TrigConf::TriggerThreshold * thr: thrV) { + hist->GetXaxis()->SetBinLabel(thr->mapping()+1, thr->name().c_str() ); + } + + StatusCode sc = m_histSvc->regHist( histBasePath() + "/multi/" + type, hist); + + return sc; +} + + +StatusCode +LVL1CTP::CTPEmulation::bookHists() { + + //Check that we didn't already do this, and just return if yes ... + std::string histpath {""}; + + // jets + histpath = histBasePath() + "/input/jets/"; + CHECK ( m_histSvc->regHist( histpath + "jJetPt", new TH1I("jJetPt","Jet p_{T} - jJ", 40, 0, 80) )); + CHECK ( m_histSvc->regHist( histpath + "jJetEta", new TH1I("jJetEta","Jet #eta - jJ", 64, -3.2, 3.2) )); + CHECK ( m_histSvc->regHist( histpath + "jJetPhi", new TH1I("jJetPhi","Jet #phi - jJ", 64, -3.2, 3.2) )); + + CHECK ( m_histSvc->regHist( histpath + "jLJetPt", new TH1I("jLJetPt","Jet p_{T} - jLJ", 40, 0, 80) )); + CHECK ( m_histSvc->regHist( histpath + "jLJetEta", new TH1I("jLJetEta","Jet #eta - jLJ", 64, -3.2, 3.2) )); + CHECK ( m_histSvc->regHist( histpath + "jLJetPhi", new TH1I("jLJetPhi","Jet #phi - jLJ", 64, -3.2, 3.2) )); + + CHECK ( m_histSvc->regHist( histpath + "gJetPt", new TH1I("gJetPt","Jet p_{T} - gJ", 40, 0, 80) )); + CHECK ( m_histSvc->regHist( histpath + "gJetEta", new TH1I("gJetEta","Jet #eta - gJ", 64, -3.2, 3.2) )); + CHECK ( m_histSvc->regHist( histpath + "gJetPhi", new TH1I("gJetPhi","Jet #phi - gJ", 64, -3.2, 3.2) )); + + // MET + histpath = histBasePath() + "/input/MET/"; + CHECK ( m_histSvc->regHist( histpath + "Pufit", new TH1I("MET_Pufit","Missing ET from algorithm pufit", 40, 0, 30)) ); + CHECK ( m_histSvc->regHist( histpath + "PufitPhi", new TH1I("MET_PufitPhi","Missing ET PUfit phi", 64, -3.2, 3.2)) ); + CHECK ( m_histSvc->regHist( histpath + "Rho", new TH1I("MET_Rho","Missing ET from algorithm rhosub", 40, 0, 30)) ); + CHECK ( m_histSvc->regHist( histpath + "RhoPhi", new TH1I("MET_RhoPhi","Missing ET rhosub phi", 64, -3.2, 3.2)) ); + CHECK ( m_histSvc->regHist( histpath + "JwoJ", new TH1I("MET_JwoJ","Missing ET from algorithm jet without jets", 40, 0, 30)) ); + CHECK ( m_histSvc->regHist( histpath + "JwoJPhi", new TH1I("MET_JwoJPhi","Missing ET jet without jet phi", 64, -3.2, 3.2)) ); + + // cluster + histpath = histBasePath() + "/input/em/"; + CHECK ( m_histSvc->regHist( histpath + "et", new TH1I("et","Cluster et", 40, 0, 40)) ); + CHECK ( m_histSvc->regHist( histpath + "eta", new TH1I("eta","Cluster eta ", 64, -3.2, 3.2)) ); + CHECK ( m_histSvc->regHist( histpath + "phi", new TH1I("phi","Cluster phi", 64, -3.2, 3.2)) ); + + // tau + histpath = histBasePath() + "/input/tau/"; + CHECK ( m_histSvc->regHist( histpath + "et", new TH1I("et","Tau et", 40, 0, 40)) ); + CHECK ( m_histSvc->regHist( histpath + "eta", new TH1I("eta","Tau eta ", 64, -3.2, 3.2)) ); + CHECK ( m_histSvc->regHist( histpath + "phi", new TH1I("phi","Tau phi", 64, -3.2, 3.2)) ); + CHECK ( m_histSvc->regHist( histpath + "emIso", new TH1I("emIso","Tau em isolation", 40, 0, 1)) ); + CHECK ( m_histSvc->regHist( histpath + "hadIso", new TH1I("hadIso","Tau hadronic isolation", 40, 0, 1)) ); + CHECK ( m_histSvc->regHist( histpath + "R3ClusterET", new TH1I("R3ET","Tau eT", 40, 0, 40)) ); + CHECK ( m_histSvc->regHist( histpath + "R3ClusterIso", new TH1I("R3Iso","Tau isolation", 40, 0, 1)) ); + + // ROI + // jet ROI + histpath = histBasePath() + "/input/roi/jet/"; + CHECK ( m_histSvc->regHist( histpath + "eta", new TH1I("eta","Jet ROI eta", 64, -32, 32)) ); + CHECK ( m_histSvc->regHist( histpath + "phi", new TH1I("phi","Jet ROI phi", 64, 0, 64)) ); + CHECK ( m_histSvc->regHist( histpath + "etLarge", new TH1I("etLarge","Jet ROI ET Large", 40, 0, 40)) ); + CHECK ( m_histSvc->regHist( histpath + "etSmall", new TH1I("etSmall","Jet ROI ET Small", 40, 0, 40)) ); + + // MET ROI + histpath = histBasePath() + "/input/roi/met/"; + CHECK ( m_histSvc->regHist( histpath + "xe", new TH1I("xe","XE", 40, 0, 80)) ); + CHECK ( m_histSvc->regHist( histpath + "xephi", new TH1I("xephi","XE phi", 64, -3.2, 3.2)) ); + CHECK ( m_histSvc->regHist( histpath + "te", new TH1I("te","TE", 40, 0, 80)) ); + + // EM ROI + histpath = histBasePath() + "/input/roi/em/"; + CHECK ( m_histSvc->regHist( histpath + "et", new TH1I("et", "EM ROI ET", 40, 0, 40)) ); + CHECK ( m_histSvc->regHist( histpath + "eta", new TH1I("eta","EM ROI eta", 64, -32, 32)) ); + CHECK ( m_histSvc->regHist( histpath + "phi", new TH1I("phi","EM ROI phi", 64, -32, 32)) ); + + // TAU ROI + histpath = histBasePath() + "/input/roi/tau/"; + CHECK ( m_histSvc->regHist( histpath + "et", new TH1I("et", "TAU ROI ET ", 40, 0, 40)) ); + CHECK ( m_histSvc->regHist( histpath + "eta", new TH1I("eta","TAU ROI eta", 64, -32, 32)) ); + CHECK ( m_histSvc->regHist( histpath + "phi", new TH1I("phi","TAU ROI phi", 64, -32, 32)) ); + + // input counts + histpath = histBasePath() + "/input/counts/"; + CHECK ( m_histSvc->regHist( histpath + "jJets", new TH1I("jJets","Number of jets (jJ)", 40, 0, 40)) ); + CHECK ( m_histSvc->regHist( histpath + "jLJets", new TH1I("jLJets","Number of jets (jLJ)", 40, 0, 40)) ); + CHECK ( m_histSvc->regHist( histpath + "gJets", new TH1I("gJets","Number of jets (gJ)", 40, 0, 40)) ); + CHECK ( m_histSvc->regHist( histpath + "muons", new TH1I("muons","Number of muons", 10, 0, 10)) ); + CHECK ( m_histSvc->regHist( histpath + "emcluster", new TH1I("emcluster","Number of EM clusters", 20, 0, 20)) ); + CHECK ( m_histSvc->regHist( histpath + "taus", new TH1I("taus","Number of TAU candidates", 20, 0, 20)) ); + + CHECK ( m_histSvc->regHist( histpath + "jetRoIData", new TH1I("nJetRoIs","Number of JET ROIs from data", 20, 0, 20)) ); + CHECK ( m_histSvc->regHist( histpath + "emTauRoIData", new TH1I("nEMTauRoIs","Number of EMTau ROIs from data", 20, 0, 20)) ); + CHECK ( m_histSvc->regHist( histpath + "emRoIData", new TH1I("nEMRoIs","Number of EM ROIs from data", 20, 0, 20)) ); + CHECK ( m_histSvc->regHist( histpath + "tauRoIData", new TH1I("nTauRoIs","Number of Tau ROIs from data", 20, 0, 20)) ); + CHECK ( m_histSvc->regHist( histpath + "muonRoIData", new TH1I("nMuonRoIs","Number of muon ROIs from data", 20, 0, 20)) ); + + // threshold multiplicities + CHECK ( createMultiplicityHist( "muon", L1DataDef::MUON, 5) ); + CHECK ( createMultiplicityHist( "jet", L1DataDef::JET) ); + CHECK ( createMultiplicityHist( "xe", L1DataDef::XE, 2) ); + CHECK ( createMultiplicityHist( "te", L1DataDef::TE, 2) ); + CHECK ( createMultiplicityHist( "em", L1DataDef::EM) ); + CHECK ( createMultiplicityHist( "tau", L1DataDef::TAU) ); + + + // item decision + histpath = histBasePath() + "/output/"; + TH1 * hbyID = new TH1I("TAVbyId","Items decision", 512, 0, 512); + TH1 * hbyName = new TH1I("TAVbyName","Items decision", 512, 0, 512); + std::vector<std::string> orderedItemnames; + orderedItemnames.reserve(m_configSvc->ctpConfig()->menu().items().size()); + for( const auto & item : m_configSvc->ctpConfig()->menu().items() ) { + orderedItemnames.emplace_back(item->name()); + } + std::sort(orderedItemnames.begin(), orderedItemnames.end()); + + unsigned int bin = 1; + for ( const std::string & itemname : orderedItemnames ) { + const TrigConf::TriggerItem * item = m_configSvc->ctpConfig()->menu().item( itemname ); + hbyID->GetXaxis()->SetBinLabel( item->ctpId()+1, item->name().c_str() ); + hbyName->GetXaxis()->SetBinLabel( bin++, item->name().c_str() ); + } + + CHECK ( m_histSvc->regHist( histpath + "TAVbyId", hbyID) ); + CHECK ( m_histSvc->regHist( histpath + "TAVbyName", hbyName) ); + + return StatusCode::SUCCESS; +} + + + + +StatusCode +LVL1CTP::CTPEmulation::retrieveCollections() { + + CHECK ( evtStore()->retrieve( m_gFEXMETPufit, m_gFEXMETPufitLoc ) ); + ATH_MSG_DEBUG( "Retrieved gFEX MET '" << m_gFEXMETPufitLoc << "'"); + + CHECK ( evtStore()->retrieve( m_gFEXMETRho, m_gFEXMETRhoLoc ) ); + ATH_MSG_DEBUG( "Retrieved gFEX MET '" << m_gFEXMETRhoLoc << "'"); + + CHECK ( evtStore()->retrieve( m_gFEXMETJwoJ, m_gFEXMETJwoJLoc ) ); + ATH_MSG_DEBUG( "Retrieved gFEX MET '" << m_gFEXMETJwoJLoc << "'"); + + // jets + CHECK ( evtStore()->retrieve( m_jJet, m_jJetLoc ) ); + ATH_MSG_DEBUG( "Retrieved jFEX Jet container '" << m_jJetLoc << "' with size " << m_jJet->size()); + + CHECK ( evtStore()->retrieve( m_jLJet, m_jLJetLoc ) ); + ATH_MSG_DEBUG( "Retrieved jFEX large-R Jet container '" << m_jLJetLoc << "' with size " << m_jLJet->size()); + + CHECK ( evtStore()->retrieve( m_gJet, m_gJetLoc ) ); + ATH_MSG_DEBUG( "Retrieved gFEX Jet container '" << m_gJetLoc << "' with size " << m_gJet->size()); + + // em clusters + CHECK ( evtStore()->retrieve( m_eFEXCluster, m_eFEXClusterLoc ) ); + ATH_MSG_DEBUG( "Retrieved eFEX em cluster container '" << m_eFEXClusterLoc << "' with size " << m_eFEXCluster->size()); + + // taus + CHECK ( evtStore()->retrieve( m_eFEXTau, m_eFEXTauLoc ) ); + ATH_MSG_DEBUG( "Retrieved eFEX em tau container '" << m_eFEXTauLoc << "' with size " << m_eFEXTau->size()); + + + + // run-2 ROIs are contained in the ROIBResult + if ( m_isData ) { + ATH_MSG_DEBUG( "Running on data, going to retrieve ROIBResult" ); + + CHECK ( evtStore()->retrieve( m_roibResult ) ); + ATH_MSG_DEBUG( "Retrieved ROIBResult" ); + + CHECK ( m_lvl1Tool->updateResult( *m_roibResult, false) ); + ATH_MSG_DEBUG( "Created ROIs from ROIBResult" ); + + } else { + + ATH_MSG_DEBUG( "Running on MC, going to retrieve xAOD collections" ); + + CHECK ( evtStore()->retrieve( m_muonRoIs, m_muonRoILoc ) ); + ATH_MSG_DEBUG( "Retrieved Muon ROI container '" << m_muonRoILoc << "' with size " << m_muonRoIs->size()); + + CHECK ( evtStore()->retrieve( m_lgJetRoIs, m_lgJetRoILoc ) ); + ATH_MSG_DEBUG( "Retrieved LG Jet container '" << m_lgJetRoILoc << "' with size " << m_lgJetRoIs->size()); + + } + + return StatusCode::SUCCESS; +} + + +StatusCode +LVL1CTP::CTPEmulation::fillInputHistograms() { + + TH1 *h (nullptr ), *h1 ( nullptr ), *h2 ( nullptr ), *h3 ( nullptr ), + *h4 ( nullptr ), *h5 ( nullptr ), *h6 ( nullptr ), *h7 ( nullptr ); + + // counts + CHECK ( m_histSvc->getHist( histBasePath() + "/input/counts/jJets", h) ); h->Fill(m_jJet->size()); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/counts/jLJets", h) ); h->Fill(m_jLJet->size()); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/counts/gJets", h) ); h->Fill(m_gJet->size()); + if(m_muonRoIs) { + CHECK ( m_histSvc->getHist( histBasePath() + "/input/counts/muons", h) ); h->Fill(m_muonRoIs->size()); + } + CHECK ( m_histSvc->getHist( histBasePath() + "/input/counts/emcluster", h) ); h->Fill(m_eFEXCluster->size()); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/counts/taus", h) ); h->Fill(m_eFEXTau->size()); + + // counts of objects from ROIBResult + if( m_isData ) { + CHECK ( m_histSvc->getHist( histBasePath() + "/input/counts/jetRoIData", h) ); h->Fill(m_lvl1Tool->getJetEnergyRoIs().size()); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/counts/emTauRoIData", h) ); h->Fill(m_lvl1Tool->getEMTauRoIs().size()); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/counts/muonRoIData", h) ); h->Fill(m_lvl1Tool->getMuonRoIs().size()); + } + + // jets + CHECK ( m_histSvc->getHist( histBasePath() + "/input/jets/jJetPt", h) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/jets/jJetEta", h1) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/jets/jJetPhi", h2) ); + for( const auto & jet : *m_jJet ) { + h->Fill(fabs(jet->et8x8()/1000.)); + h1->Fill(jet->eta()); + h2->Fill(jet->phi()); + } + CHECK ( m_histSvc->getHist( histBasePath() + "/input/jets/jLJetPt", h) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/jets/jLJetEta", h1) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/jets/jLJetPhi", h2) ); + for( const auto & jet : *m_jLJet ) { + h->Fill(fabs(jet->et8x8()/1000.)); + h1->Fill(jet->eta()); + h2->Fill(jet->phi()); + } + CHECK ( m_histSvc->getHist( histBasePath() + "/input/jets/gJetPt", h) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/jets/gJetEta", h1) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/jets/gJetPhi", h2) ); + for( const auto & jet : *m_gJet ) { + h->Fill(fabs(jet->et8x8()/1000.)); + h1->Fill(jet->eta()); + h2->Fill(jet->phi()); + } + + // MET + CHECK ( m_histSvc->getHist( histBasePath() + "/input/MET/Pufit", h) ); if(h) h->Fill(m_gFEXMETPufit->energyT()/1000.); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/MET/PufitPhi", h) ); if(h) h->Fill(atan2(m_gFEXMETPufit->energyX(), m_gFEXMETPufit->energyY())); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/MET/Rho", h) ); if(h) h->Fill(m_gFEXMETRho->energyT()/1000.); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/MET/RhoPhi", h) ); if(h) h->Fill(atan2(m_gFEXMETRho->energyX(), m_gFEXMETRho->energyY())); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/MET/JwoJ", h) ); if(h) h->Fill(m_gFEXMETJwoJ->energyT()/1000.); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/MET/JwoJPhi", h) ); if(h) h->Fill(atan2(m_gFEXMETJwoJ->energyX(), m_gFEXMETJwoJ->energyY())); + + // EM cluster + CHECK ( m_histSvc->getHist( histBasePath() + "/input/em/et", h1) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/em/eta", h2) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/em/phi", h3) ); + for( const auto & cl : *m_eFEXCluster ) { + h1->Fill(cl->et()); + h2->Fill(cl->eta()); + h3->Fill(cl->phi()); + } + + // eFEX Tau + CHECK ( m_histSvc->getHist( histBasePath() + "/input/tau/et", h1) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/tau/eta", h2) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/tau/phi", h3) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/tau/emIso", h4) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/tau/hadIso", h5) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/tau/R3ClusterET", h6) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/tau/R3ClusterIso", h7) ); + const static SG::AuxElement::ConstAccessor<float> accR3ClET ("R3ClusterET"); + const static SG::AuxElement::ConstAccessor<float> accR3ClIso ("R3ClusterIso"); + for( const auto & tau : *m_eFEXTau ) { + h1->Fill(tau->eT()); + h2->Fill(tau->eta()); + h3->Fill(tau->phi()); + h4->Fill(tau->emIsol()); + h5->Fill(tau->hadIsol()); + h6->Fill(accR3ClET(*tau)); + h7->Fill(accR3ClIso(*tau)); + } + + // === + // ROI + // === + + // JET + CHECK ( m_histSvc->getHist( histBasePath() + "/input/roi/jet/eta", h2) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/roi/jet/phi", h3) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/roi/jet/etLarge", h4) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/roi/jet/etSmall", h5) ); + for ( const HLT::JetEnergyRoI & jetROI : m_lvl1Tool->getJetEnergyRoIs() ) { + + ATH_MSG_DEBUG( "HLT::JetEnergyRoI with word " << jetROI.lvl1RoI().roIWord() + << " has type " << jetROI.lvl1RoI().roIType() + << " and l1roi jet et " << jetROI.lvl1RoI().jetEt() ); + + if( jetROI.lvl1RoI().roIType() != LVL1::TrigT1CaloDefs::JetRoIWordType ) + continue; // not a jet (likely xe) + + const ROIB::JetEnergyRoI & l1JetROI = jetROI.lvl1RoI(); + + LVL1::CoordinateRange coordRange = m_jetDecoder->coordinate(l1JetROI.roIWord()); + int ieta = int ( ( coordRange.etaRange().min() + 0.025) / 0.1) + + ( ( coordRange.etaRange().min() + 0.025 > 0) ? 0 : -1); + int iphi = int(( coordRange.phiRange().min() + 0.025) * 32 / M_PI); + h2->Fill( ieta ); + h3->Fill( iphi ); + h4->Fill( l1JetROI.etLarge() ); + h5->Fill( l1JetROI.etSmall() ); + } + + // MET + if( m_roibResult ) { + int energyX(0), energyY(0), energyT(0); + //unsigned int w0, w1, w2; + CHECK ( m_histSvc->getHist( histBasePath() + "/input/roi/met/xe", h1) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/roi/met/xephi", h2) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/roi/met/te", h3) ); + LVL1::JEPRoIDecoder conv; + unsigned int cc(0); + ATH_MSG_DEBUG("JOERG MET Loop over all JetEnergyResults, there are " << m_roibResult->jetEnergyResult().size() ); + for( const ROIB::JetEnergyResult & res : m_roibResult->jetEnergyResult() ) { + ATH_MSG_DEBUG("JOERG MET JetEnergyResult " << cc++ << ", now loop over the ROIs, there are " << res.roIVec().size() ); + for( const ROIB::JetEnergyRoI & roi : res.roIVec() ) { + // RoI word + uint32_t roIWord = roi.roIWord(); + // RoI type + int roiType = conv.roiType( roIWord ); + + // ATH_MSG_DEBUG("JOERG MET t=" << roiType << " " << roi.roIType() << " w=" << roIWord << " et=" << roi.jetEt() + // << " etLarge=" << roi.etLarge() << " etSmall=" << roi.etSmall() + // << " eX=" << roi.energyX() << " eY=" << roi.energyY() << " eSum=" << roi.energySum() + // << " eTsumType=" << roi.etSumType() + // ); + + if( roi.etSumType() == 1 ) // eta-restricted range XE and TE + continue; + + if( roiType == LVL1::TrigT1CaloDefs::EnergyRoIWordType0 ) { // eX (XS) + energyX = m_jetDecoder->energyX( roi.roIWord() ); + } else if( roiType == LVL1::TrigT1CaloDefs::EnergyRoIWordType1 ) { // eY (TE) + energyY = m_jetDecoder->energyY( roi.roIWord() ); + } else if( roiType == LVL1::TrigT1CaloDefs::EnergyRoIWordType2 ) { //etSum (XE) + energyT = m_jetDecoder->energyT( roi.roIWord() ); + } + + // // Jet ROI + // if( roiType == LVL1::TrigT1CaloDefs::JetRoIWordType ) { + // // RecRoI + // // LVL1::RecJetRoI recRoI( roIWord, &jetThresholds ); + // } + + } + } + h1->Fill(sqrt(energyX*energyX + energyY*energyY)); + h2->Fill(atan2(energyX, energyY)); + h3->Fill(energyT); + + } + + if( m_roibResult ) { + { // EMTAU ROIs + unsigned int nEMROI(0), nTAUROI(0); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/roi/em/et", h ) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/roi/em/eta", h1) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/roi/em/phi", h2) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/roi/tau/et", h3) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/roi/tau/eta", h4) ); + CHECK ( m_histSvc->getHist( histBasePath() + "/input/roi/tau/phi", h5) ); + for( const ROIB::EMTauResult & res : m_roibResult->eMTauResult() ) { + for ( const ROIB::EMTauRoI & roi : res.roIVec() ) { + ATH_MSG_DEBUG("JOERG EMTAU roi t=" << roi.roIType() << " et=" << roi.et() << " iso=" << roi.isolation()); + if( roi.roIType() == LVL1::TrigT1CaloDefs::EMRoIWordType) { + nEMROI++; + h->Fill(roi.et()); + } else if( roi.roIType() == LVL1::TrigT1CaloDefs::TauRoIWordType) { + nTAUROI++; + h3->Fill(roi.et()); + } + } + } + } + // for( const ROIB::JetEnergyResult & res : m_roibResult->jetEnergyResult() ) { + // for( const ROIB::JetEnergyRoI & roi : res.roIVec() ) { + // uint32_t roIWord = roi.roIWord(); + // // RoI type + // LVL1::JEPRoIDecoder conv; + // int roiType = conv.roiType( roIWord ); + // ATH_MSG_DEBUG( "Jet RoI, RoIWord = " << MSG::hex << std::setw( 8 ) + // << roi.roIWord() << MSG::dec << " type = " << roiType << " " << roi.roIType() + // << " ==? " << LVL1::TrigT1CaloDefs::JetRoIWordType); + // // // Jet ROI + // // if( roiType == LVL1::TrigT1CaloDefs::JetRoIWordType ) { + // // // RecRoI + // // // LVL1::RecJetRoI recRoI( roIWord, &jetThresholds ); + // // } + // } + // } + } + + + return StatusCode::SUCCESS; +} + + +bool +LVL1CTP::CTPEmulation::isNewThreshold(const TrigConf::TriggerThreshold * thr) const { + + for ( const auto & cn : std::vector<std::string>{ "CTPCAL", "TOPO1", "TOPO2", "ALFA" } ) { + if( thr->cableName() == cn ) { + return false; + } + } + + for( const std::string & t : std::vector<std::string>{"MUON", "ZB", "MBTS", "MBTSSI", "NIM", "EM", "TAU", "TE", "XS"} ){ + if( thr->type() == t ) { + return false; + } + } + + return true; +} + + +StatusCode +LVL1CTP::CTPEmulation::extractMultiplicities() const { + + ATH_MSG_DEBUG("Entered CTPEmmulation::extractMultiplicities()"); + + const TrigConf::Menu & l1menu = m_configSvc->ctpConfig()->menu(); + + m_thrMap->clear(); + + for ( const TrigConf::TriggerThreshold * thr : l1menu.thresholdVector() ) { + + // get the multiplicity for each threshold + unsigned int multiplicity = 0; + //thr->print(" ", 4); + if( ! isNewThreshold(thr) && m_useCTPInput == true ) { + multiplicity = extractMultiplicitiesFromCTPInputData( thr ); + } else { + multiplicity = calculateMultiplicity( thr ); + // ATH_MSG_DEBUG("Threshold " << thr->name() << " has multiplicity " << multiplicity ); + } + + m_thrMap->decision( thr )->setValue( multiplicity ); + + } + + return StatusCode::SUCCESS; +} + + +unsigned int +LVL1CTP::CTPEmulation::extractMultiplicitiesFromCTPInputData( const TrigConf::TriggerThreshold * thr ) const { + unsigned int multiplicity = 0; + ATH_MSG_VERBOSE( "Extracting multiplicity for threshold " << thr->name() << ": " << multiplicity ); + return multiplicity; +} + +unsigned int +LVL1CTP::CTPEmulation::calculateJetMultiplicity( const TrigConf::TriggerThreshold * confThr ) const { + unsigned int multiplicity = 0; + + if( confThr->name().find("J") == 0 ) { + // Run-2 threshold + + + + //LVL1::TrigT1CaloDefs::RoIType jettype = JetRoIWordType; + + for ( const HLT::JetEnergyRoI & jetROI : m_lvl1Tool->getJetEnergyRoIs() ) { + + LVL1::TrigT1CaloDefs::RoIType jettype = m_jetDecoder->roiType( jetROI.lvl1RoI().roIWord() ); + + ATH_MSG_DEBUG( "JetEnergyRoI has type @hlt " + << jetROI.type() << " @lvl1 " + << jetROI.lvl1RoI().roIType() << " @decoder" + << m_jetDecoder->roiType( jetROI.lvl1RoI().roIWord() ) ); + + + if( jettype != LVL1::TrigT1CaloDefs::JetRoIWordType ) continue; // not a jet (likely xe) + + const ROIB::JetEnergyRoI & l1JetROI = jetROI.lvl1RoI(); + + LVL1::CoordinateRange coordRange = m_jetDecoder->coordinate(l1JetROI.roIWord()); + int iphi = int(( coordRange.phiRange().min() + 0.025) * 32 / M_PI); + int ieta = int(( coordRange.eta() + ((coordRange.eta() > 0.01) ? 0.025 : -0.025)) / 0.1) - 1; + // Adjustment due to irregular geometries + if (ieta > 24) ieta += 2; + + const TrigConf::TriggerThresholdValue * thrV = confThr->triggerThresholdValue( ieta, iphi ); + bool largeWindow = thrV->windowSize()==JetWindowSize::LARGE; + unsigned int et = largeWindow ? l1JetROI.etLarge() : l1JetROI.etSmall(); + + bool roiPasses = ( et >= thrV->ptcut() ); // need to add cut on isolation and other variables, once available + ATH_MSG_DEBUG( "For threshold " << confThr->name() << " check ROI ieta " << ieta + << " iphi " << iphi + << " et " << et + << " thrV " << thrV->ptcut() + << (roiPasses ? "passes" : "failed") + ); + + multiplicity += roiPasses ? 1 : 0; + } + + } else { + // Run-3 threshold + + const DataHandle< xAOD::JetRoIContainer > * dh { nullptr }; + + if( confThr->name().find("g") == 0 ) { + dh = & m_gJet; + } else if( confThr->name().find("jL") == 0 ) { + dh = & m_jLJet; + } else if( confThr->name().find("j") == 0 ) { + dh = & m_jJet; + } else { + ATH_MSG_ERROR( "Unexpected threshold name " << confThr->name() << ". Should start with j, jL, g, or J."); + } + + if ( dh ) { + for ( const auto & jet : **dh ) { + float eta = jet->eta(); + // copied fromm + // https://acode-browser.usatlas.bnl.gov/lxr/source/athena/Trigger/TrigT1/TrigT1CaloUtils/src/JetAlgorithm.cxx#0337 + int ieta = int((eta + (eta>0 ? 0.005 : -0.005))/0.1); + int iphi = 0; // int((m_refPhi-0.005)*32/M_PI); iphi = 16*(iphi/16) + 8; + multiplicity += ( jet->et8x8()/1000. < confThr->triggerThresholdValue( ieta, iphi )->ptcut() ) ? 0 : 1; + } + } + } + + TH1 * h { nullptr }; + CHECK( m_histSvc->getHist( histBasePath() + "/multi/jet", h) ); + h->Fill(confThr->mapping(), multiplicity); + + return multiplicity; +} + + +unsigned int +LVL1CTP::CTPEmulation::calculateEMMultiplicity( const TrigConf::TriggerThreshold * confThr ) const { + unsigned int multiplicity = 0; + + if ( confThr->name()[0]=='e' ) { + // new EM threshold from eFEX + for ( const auto & cl : * m_eFEXCluster ) { + + float eta = cl->eta(); + int ieta = int((eta + (eta>0 ? 0.005 : -0.005))/0.1); + int iphi = 0; + const TrigConf::TriggerThresholdValue * thrV = confThr->triggerThresholdValue( ieta, iphi ); + + bool clusterPasses = ( cl->et() >= thrV->ptcut() ); // need to add cut on isolation and other variables, once available + multiplicity += clusterPasses ? 1 : 0; + } + } else { + // old EM threshold from data + + if ( m_roibResult ) { + for( const ROIB::EMTauResult & res : m_roibResult->eMTauResult() ) { + for ( const ROIB::EMTauRoI & roi : res.roIVec() ) { + if( roi.roIType() != LVL1::TrigT1CaloDefs::EMRoIWordType) + continue; + LVL1::CoordinateRange coordRange = m_decoder->coordinate(roi.roIWord()); + int ieta = int ( ( coordRange.etaRange().min() + 0.025) / 0.1) + + ( ( coordRange.etaRange().min() + 0.025 > 0) ? 0 : -1); + int iphi = int(( coordRange.phiRange().min() + 0.025) * 32 / M_PI); + const TrigConf::ClusterThresholdValue * thrV = dynamic_cast<const TrigConf::ClusterThresholdValue*> ( confThr->triggerThresholdValue( ieta, iphi ) ); + + float scale = thrV->caloInfo().globalEmScale(); + unsigned int etCut = thrV->ptcut(); + unsigned int threshold = etCut * scale; + unsigned int isolMask = thrV->isolationMask(); + //const TrigConf::TriggerThresholdValue * thrV = confThr->triggerThresholdValue( ieta, iphi ); + + // isolation bit interpretation + bool isolationPassed = true; + for (unsigned int bit = 0; bit < LVL1::TrigT1CaloDefs::numOfIsolationBits; ++bit) { + if ((isolMask & (1 << bit)) && !(roi.isolation() & (1 << bit))) // only bits in the mask are checked and + // set isolation to false if isolation bit==1 !! + isolationPassed = false; + } + ATH_MSG_DEBUG("EM " << confThr->name() << " mask=" << isolMask + << "iso=" << roi.isolation() + << " isoPassed=" << (isolationPassed?"yes":"no") ); + bool roiPasses = ( (roi.et() >= threshold) && isolationPassed ); + multiplicity += roiPasses ? 1 : 0; + } + } + } + } + TH1 * h { nullptr }; + //ATH_MSG_DEBUG("JOERG EM MULT calculated mult for threshold " << confThr->name() << " : " << multiplicity); + CHECK( m_histSvc->getHist( histBasePath() + "/multi/em", h) ); h->Fill(confThr->mapping(), multiplicity); + + return multiplicity; +} + +unsigned int +LVL1CTP::CTPEmulation::calculateTauMultiplicity( const TrigConf::TriggerThreshold * confThr ) const { + unsigned int multiplicity = 0; + if ( confThr->name()[0]=='e' ) { + // new TAU threshold from eFEX + const static SG::AuxElement::ConstAccessor<float> accR3ClET ("R3ClusterET"); + const static SG::AuxElement::ConstAccessor<float> accR3ClIso ("R3ClusterIso"); + if( m_eFEXTau ) { + for ( const auto & tau : * m_eFEXTau ) { + float eT = accR3ClET(*tau); + //float iso = accR3ClIso(*tau); + float eta = tau->eta(); + int ieta = int((eta + (eta>0 ? 0.005 : -0.005))/0.1); + int iphi = 0; + const TrigConf::TriggerThresholdValue * thrV = confThr->triggerThresholdValue( ieta, iphi ); + bool tauPasses = ( eT >= thrV->ptcut() ); // need to add cut on isolation and other variables, once available + multiplicity += tauPasses ? 1 : 0; + } + } + } else { + // old TAU threshold from data + if ( m_roibResult ) { + for( const ROIB::EMTauResult & res : m_roibResult->eMTauResult() ) { + for ( const ROIB::EMTauRoI & roi : res.roIVec() ) { + if( roi.roIType() != LVL1::TrigT1CaloDefs::TauRoIWordType) + continue; + LVL1::CoordinateRange coordRange = m_decoder->coordinate(roi.roIWord()); + int ieta = int ( ( coordRange.etaRange().min() + 0.025) / 0.1) + + ( ( coordRange.etaRange().min() + 0.025 > 0) ? 0 : -1); + int iphi = int(( coordRange.phiRange().min() + 0.025) * 32 / M_PI); + const TrigConf::TriggerThresholdValue * thrV = confThr->triggerThresholdValue( ieta, iphi ); + bool roiPasses = ( roi.et() >= thrV->ptcut() ); // need to add cut on isolation and other variables, once available + multiplicity += roiPasses ? 1 : 0; + } + } + } + } + TH1 * h { nullptr }; + ATH_MSG_DEBUG("JOERG TAU MULT calculated mult for threshold " << confThr->name() << " : " << multiplicity); + CHECK( m_histSvc->getHist( histBasePath() + "/multi/tau", h) ); h->Fill(confThr->mapping(), multiplicity); + + return multiplicity; +} + +unsigned int +LVL1CTP::CTPEmulation::calculateMETMultiplicity( const TrigConf::TriggerThreshold * confThr ) const { + unsigned int multiplicity = 0; + + if ( confThr->name().find("XE")==0 ) { + // old XE + int energyX(0), energyY(0); + if ( m_roibResult ) { + for( const ROIB::JetEnergyResult & res : m_roibResult->jetEnergyResult() ) { + for( const ROIB::JetEnergyRoI & roi : res.roIVec() ) { + if( roi.etSumType() == 1 ) // eta-restricted range XE and TE is ignored for the time being + continue; + if( roi.roIType() == LVL1::TrigT1CaloDefs::EnergyRoIWordType0 ) { // eX (XS) + energyX = m_jetDecoder->energyX( roi.roIWord() ); + } else if( roi.roIType() == LVL1::TrigT1CaloDefs::EnergyRoIWordType1 ) { // eY (TE) + energyY = m_jetDecoder->energyY( roi.roIWord() ); + } + } + } + } + double missingET = sqrt(energyX*energyX + energyY*energyY); + const TrigConf::TriggerThresholdValue * thrV = confThr->triggerThresholdValue( 0, 0 ); + multiplicity = missingET >= thrV->ptcut() ? 1 : 0; + } else if ( confThr->name().find("TE")==0 ) { + // old TE + int energyT(0); + if ( m_roibResult ) { + bool isRestrictedRangeTE = confThr->name().find("24ETA49") != std::string::npos; + for( const ROIB::JetEnergyResult & res : m_roibResult->jetEnergyResult() ) { + for( const ROIB::JetEnergyRoI & roi : res.roIVec() ) { + ATH_MSG_DEBUG("JOERG TE " << roi.etSumType() << " " << roi.roIType()); + if( (roi.etSumType() == (isRestrictedRangeTE ? 1 : 0) ) && // pick the correct sumtype 0-all, 1-restricted range + roi.roIType() == LVL1::TrigT1CaloDefs::EnergyRoIWordType2 ) { // etSum + energyT = m_jetDecoder->energyT( roi.roIWord() ); + ATH_MSG_DEBUG("JOERG TE RR " << energyT); + } + } + } + } + const TrigConf::TriggerThresholdValue * thrV = confThr->triggerThresholdValue( 25, 0 ); // eta can be any value 24..49 + multiplicity = (energyT >= thrV->ptcut()) ? 1 : 0; + ATH_MSG_DEBUG("JOERG TE DECISION " << confThr->name() << " TE=" << energyT << " thr=" << thrV->ptcut() + << " mult=" << multiplicity); + } else { + // new XE + // input depends on the name of the threshold + const DataHandle< xAOD::EnergySumRoI > * dh ( nullptr ); + if ( confThr->name().find("gXEPUFIT")==0 ) { + dh = & m_gFEXMETPufit; + ATH_MSG_DEBUG("Using Pufit input for threshold " << confThr->name() ); + } else if ( confThr->name().find("gXERHO")==0 ) { + dh = & m_gFEXMETRho; + ATH_MSG_DEBUG("Using Rho input for threshold " << confThr->name() ); + } else if ( confThr->name().find("gXEJWOJ")==0 ) { + dh = & m_gFEXMETJwoJ; + ATH_MSG_DEBUG("Using JwoJ input for threshold " << confThr->name() ); + } else { + dh = & m_gFEXMETJwoJ; + ATH_MSG_DEBUG("Using default input JwoJ for threshold " << confThr->name() ); + } + multiplicity = ( (*dh)->energyT()/1000. < confThr->thresholdValueVector()[0]->ptcut() ) ? 0 : 1; // energyT value is in MeV, cut in GeV + } + + TH1 * h { nullptr }; + if ( confThr->name().find("TE")==0 ) { + CHECK( m_histSvc->getHist( histBasePath() + "/multi/te", h) ); h->Fill(confThr->mapping(), multiplicity); + } else { + CHECK( m_histSvc->getHist( histBasePath() + "/multi/xe", h) ); h->Fill(confThr->mapping(), multiplicity); + } + return multiplicity; + +} + +unsigned int +LVL1CTP::CTPEmulation::calculateMuonMultiplicity( const TrigConf::TriggerThreshold * confThr ) const { + unsigned int multiplicity = 0; + + // muon + if( m_isData ) { + for ( const auto & muon : m_lvl1Tool->getMuonRoIs() ) { + multiplicity += (muon.lvl1RoI().pt()>= (unsigned int) confThr->mapping()) ? 1 : 0; // TrigT1Result/MuCTPIRoI + } + } else { + for ( const auto muon : * m_muonRoIs ) { + multiplicity += (muon->getThrNumber()>= confThr->mapping()) ? 1 : 0; + } + } + + TH1 * h { nullptr }; + CHECK( m_histSvc->getHist( histBasePath() + "/multi/muon", h) ); h->Fill(confThr->mapping(), multiplicity); + + return multiplicity; +} + + + +unsigned int +LVL1CTP::CTPEmulation::calculateMultiplicity( const TrigConf::TriggerThreshold * confThr ) const { + unsigned int multiplicity = 0; + + if( confThr->cableName() == "CTPCAL" || + confThr->cableName() == "ALFA" || + confThr->cableName() == "TOPO1" || + confThr->cableName() == "TOPO2" || + confThr->cableName() == "NIM1" || + confThr->cableName() == "NIM2" || + confThr->type() == "XS" || + confThr->type() == "NIM") { + return 0; + } + + // here we need to write specific code for the different types of L1 FEX objects + if ( confThr->ttype() == TrigConf::L1DataDef::EM ) { + + multiplicity = calculateEMMultiplicity( confThr ); + + } else if ( confThr->ttype() == TrigConf::L1DataDef::TAU ) { + + multiplicity = calculateTauMultiplicity( confThr ); + + } else if ( confThr->ttype() == TrigConf::L1DataDef::XE || + confThr->ttype() == TrigConf::L1DataDef::TE ) { + + multiplicity = calculateMETMultiplicity( confThr ); + + } else if ( confThr->ttype() == TrigConf::L1DataDef::JET ) { + + multiplicity = calculateJetMultiplicity( confThr ); + + } else if ( confThr->ttype() == TrigConf::L1DataDef::MUON ) { + + multiplicity = calculateMuonMultiplicity( confThr ); + + } + return multiplicity; +} + +StatusCode +LVL1CTP::CTPEmulation::simulateItems() { + + m_itemMap->updatePrescaleCounters( m_thrMap, m_internalTrigger ); + + unsigned int ctpVersion = 4; + unsigned int readoutWindow = 1; + m_resultBuilder = new ResultBuilder( ctpVersion, m_configSvc->ctpConfig(), m_thrMap, m_itemMap, m_internalTrigger, readoutWindow); + + + // create CTP output format and store in the event + const CTP_RDO* rdo_output = m_resultBuilder->constructRDOResult(); + const CTPSLink* roi_output = m_resultBuilder->constructRoIResult(); + if(m_isData) { + CHECK( evtStore()->record( rdo_output, m_rdoOutputLoc_Rerun ) ); + CHECK( evtStore()->record( roi_output, m_roiOutputLoc_Rerun ) ); + } else { + CHECK( evtStore()->record( rdo_output, m_rdoOutputLoc ) ); + CHECK( evtStore()->record( roi_output, m_roiOutputLoc ) ); + } + + + const auto & tbp = m_resultBuilder->tbp(); + const auto & tap = m_resultBuilder->tap(); + const auto & tav = m_resultBuilder->tav(); + std::vector<uint32_t> lvl1Info; + lvl1Info.reserve(tbp.size() + tap.size() + tav.size()); + lvl1Info.insert(lvl1Info.end(), tbp.begin(), tbp.end()); + lvl1Info.insert(lvl1Info.end(), tap.begin(), tap.end()); + lvl1Info.insert(lvl1Info.end(), tav.begin(), tav.end()); + + unsigned short itemIdx = 0; + for ( const uint32_t dw : tbp ) { + for ( unsigned int bit = 0; bit<32; bit++ ) { + m_itemCountsSumTBP[itemIdx++] += (dw & (0x1<<bit) ) != 0 ? 1 : 0; + } + } + itemIdx = 0; + for ( const uint32_t dw : tap ) { + for ( unsigned int bit = 0; bit<32; bit++ ) { + m_itemCountsSumTAP[itemIdx++] += (dw & (0x1<<bit) ) != 0 ? 1 : 0; + } + } + + const auto & menu = m_configSvc->ctpConfig()->menu(); + + unsigned short widx (0); + itemIdx = 0; + for ( const uint32_t dw : tav ) { + ATH_MSG_VERBOSE("TAV " << std::setw(2) << widx++ << " 0x" << std::hex << dw << std::dec ); + + for ( unsigned int bit = 0; bit<32; bit++, itemIdx++ ) { + if( (dw & (0x1<<bit)) == 0 ) continue; + m_itemCountsSumTAV[itemIdx] += 1; + ATH_MSG_DEBUG("Item " << menu.item(itemIdx)->name() << " (" << itemIdx << ") passed"); + } + } + + + return StatusCode::SUCCESS; +} + + +StatusCode +LVL1CTP::CTPEmulation::finalize() { + + const auto & menu = m_configSvc->ctpConfig()->menu(); + + // fill the byName TAV histograms from the byID one + TH1 * hbyId { nullptr }; + TH1 * hbyName { nullptr }; + CHECK( m_histSvc->getHist( histBasePath() + "/output/TAVbyId", hbyId) ); + CHECK( m_histSvc->getHist( histBasePath() + "/output/TAVbyName", hbyName) ); + hbyId->Sumw2(false); + hbyName->Sumw2(false); + + for( unsigned int idx = 0; idx < 512; ++idx ) { + if ( menu.item(idx) == nullptr ) + continue; + unsigned int binContent = m_itemCountsSumTAV[idx]; + hbyId->Fill( idx, binContent ); + hbyName->Fill( menu.item(idx)->name().c_str(), binContent); + } + + for(const TriggerItem * item : menu.items()) { + if(item==nullptr) continue; + ATH_MSG_DEBUG("REGTEST " << item->name() << " " << item->ctpId() << " TBP " << m_itemCountsSumTBP[item->ctpId()] << " TAP " << m_itemCountsSumTAP[item->ctpId()] << " TAV " << m_itemCountsSumTAV[item->ctpId()]); + } + + hbyId->Sumw2(false); + hbyName->Sumw2(false); + + return StatusCode::SUCCESS; +} + diff --git a/Trigger/TrigT1/TrigT1CTP/src/CTPEmulation.h b/Trigger/TrigT1/TrigT1CTP/src/CTPEmulation.h new file mode 100644 index 0000000000000000000000000000000000000000..810c6cee682de5464ff5321cfca8c952a3e68c92 --- /dev/null +++ b/Trigger/TrigT1/TrigT1CTP/src/CTPEmulation.h @@ -0,0 +1,186 @@ +/* + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +*/ +#ifndef TRIGT1CTP_CTPEMULATION_H +#define TRIGT1CTP_CTPEMULATION_H + +#include "AthenaBaseComps/AthAlgorithm.h" +#include "GaudiKernel/ServiceHandle.h" +#include "GaudiKernel/ToolHandle.h" +#include "GaudiKernel/Property.h" +#include "StoreGate/DataHandle.h" +#include "TrigConfInterfaces/ITrigConfigSvc.h" + +// monitoring from HLT +#include "TrigInterfaces/IMonitoredAlgo.h" +#include "AthenaMonitoring/IMonitorToolBase.h" +#include "GaudiKernel/ITHistSvc.h" + +// data +#include "TrigConfL1Data/L1DataDef.h" +#include "TrigConfL1Data/TriggerThreshold.h" +#include "TrigT1Interfaces/MuCTPICTP.h" +#include "xAODTrigger/JetRoIContainer.h" +#include "xAODTrigger/EnergySumRoI.h" +#include "xAODTrigger/MuonRoIContainer.h" +#include "xAODTrigCalo/TrigEMClusterContainer.h" +#include "xAODTrigger/EmTauRoIContainer.h" + +// internal +#include "TrigT1CTP/ThresholdMap.h" +#include "TrigT1CTP/ItemMap.h" +#include "TrigT1CTP/ThresholdMap.h" +#include "TrigT1CTP/ResultBuilder.h" + +#include "TH1.h" + +#include <map> +#include <string> + +namespace HLT { + class ILvl1ResultAccessTool; +} + +namespace ROIB { + class RoIBResult; +} + +namespace LVL1 { + class CPRoIDecoder; + class JEPRoIDecoder; +} + +namespace LVL1CTP { + + class CTPEmulation : public AthAlgorithm, public IMonitoredAlgo { + + public: + + CTPEmulation( const std::string& name, ISvcLocator* pSvcLocator ); + ~CTPEmulation(); + + virtual StatusCode initialize(); + virtual StatusCode start(); + virtual StatusCode beginRun(); + virtual StatusCode execute(); + virtual StatusCode finalize(); + + virtual StatusCode bookHists(); + + private: + + // private member functions + StatusCode createInternalTriggerMap(); + + StatusCode printConfiguration() const; + + StatusCode retrieveCollections(); + + StatusCode fillInputHistograms(); + + StatusCode extractMultiplicities() const; + + bool isNewThreshold(const TrigConf::TriggerThreshold * thr) const; + + unsigned int extractMultiplicitiesFromCTPInputData( const TrigConf::TriggerThreshold * thr ) const; + + unsigned int calculateMultiplicity( const TrigConf::TriggerThreshold * confThr ) const; + + unsigned int calculateJetMultiplicity( const TrigConf::TriggerThreshold * confThr ) const; + unsigned int calculateEMMultiplicity( const TrigConf::TriggerThreshold * confThr ) const; + unsigned int calculateTauMultiplicity( const TrigConf::TriggerThreshold * confThr ) const; + unsigned int calculateMETMultiplicity( const TrigConf::TriggerThreshold * confThr ) const; + unsigned int calculateMuonMultiplicity( const TrigConf::TriggerThreshold * confThr ) const; + + StatusCode simulateItems(); + + StatusCode createMultiplicityHist(const std::string & type, TrigConf::L1DataDef::TriggerType tt, unsigned int maxMult = 10 ); + + std::string histBasePath() const { + return "/" + m_histStream + "/CTPEmulation"; + } + + + // member variables + + // Needed services + ServiceHandle<ITHistSvc> m_histSvc; + ServiceHandle<TrigConf::ITrigConfigSvc> m_configSvc; + ToolHandle<HLT::ILvl1ResultAccessTool> m_lvl1Tool; //!< tool to create L1 ROIs from ROIBResult + + // Inputs from the new L1Calo + // gFEX + const DataHandle< xAOD::EnergySumRoI > m_gFEXMETPufit; //!< MET from gFEX + const DataHandle< xAOD::EnergySumRoI > m_gFEXMETRho; //!< MET from gFEX + const DataHandle< xAOD::EnergySumRoI > m_gFEXMETJwoJ; //!< MET from gFEX + const DataHandle< xAOD::JetRoIContainer > m_gJet; //!< jets from gFEX + + // eFEX + const DataHandle< xAOD::TrigEMClusterContainer > m_eFEXCluster; //!< cluster from eFEX + const DataHandle< xAOD::EmTauRoIContainer > m_eFEXTau; //!< taus from eFEX + + // jFEX + const DataHandle< xAOD::JetRoIContainer > m_jJet; //!< jets from jFEX + const DataHandle< xAOD::JetRoIContainer > m_jLJet; //!< large jets from jFEX + + + // old ROI collections + const DataHandle< xAOD::MuonRoIContainer > m_muonRoIs; + const DataHandle< xAOD::JetRoIContainer > m_lgJetRoIs; + + // from BS + const ROIB::RoIBResult * m_roibResult { nullptr }; + + // Other inputs to the simulations + const DataHandle< LVL1::MuCTPICTP > m_muctpiCTP; + + // properties + BooleanProperty m_useCTPInput { false }; + + // name of input collections + + // new FEX collections + StringProperty m_gFEXMETPufitLoc {""}; + StringProperty m_gFEXMETRhoLoc {""}; + StringProperty m_gFEXMETJwoJLoc {""}; + StringProperty m_gJetLoc {""}; + StringProperty m_jJetLoc {""}; + StringProperty m_jLJetLoc {""}; + StringProperty m_eFEXClusterLoc {""}; + StringProperty m_eFEXTauLoc {""}; + + // old ROI Collections + StringProperty m_muonRoILoc {""}; + StringProperty m_lgJetRoILoc {""}; + + // name of the CTP input words + StringProperty m_muonCTPLoc {""}; + + // output locations and control + BooleanProperty m_isData { false }; + StringProperty m_roiOutputLoc {""}; + StringProperty m_roiOutputLoc_Rerun {""}; + StringProperty m_rdoOutputLoc {""}; + StringProperty m_rdoOutputLoc_Rerun {""}; + + std::string m_histStream {""}; + + // internal + ThresholdMap* m_thrMap { nullptr }; + ItemMap* m_itemMap { nullptr }; + InternalTriggerMap* m_internalTrigger { nullptr }; + ResultBuilder* m_resultBuilder { nullptr }; + + // results + std::vector<uint32_t> m_itemCountsSumTBP; + std::vector<uint32_t> m_itemCountsSumTAP; + std::vector<uint32_t> m_itemCountsSumTAV; + + // to decode the L1 Run-2 hardware ROIs from data + LVL1::CPRoIDecoder * m_decoder { nullptr }; + LVL1::JEPRoIDecoder * m_jetDecoder { nullptr }; + }; + +} + +#endif diff --git a/Trigger/TrigT1/TrigT1CTP/src/CTPSimulation.cxx b/Trigger/TrigT1/TrigT1CTP/src/CTPSimulation.cxx index ace1210ab6ca91cb71c295b0d772ce4b3609bef2..588334fc2488d81b3496fef73aa0544ce707f6d0 100755 --- a/Trigger/TrigT1/TrigT1CTP/src/CTPSimulation.cxx +++ b/Trigger/TrigT1/TrigT1CTP/src/CTPSimulation.cxx @@ -1355,9 +1355,11 @@ LVL1CTP::CTPSimulation::extractMultiplicities() { if ( m_muctpiCTP.isValid() ) { multiplicity = CTPUtil::getMult( m_muctpiCTP->muCTPIWord(), thr->cableStart(), thr->cableEnd() ); - for(int x=0; x<=multiplicity; x++) - m_thrMUMult->AddBinContent(1+ 8 * thr->mapping() + x); - m_thrMUTot->AddBinContent(1+ thr->mapping(), multiplicity); + if( thr->mapping() < 6 ) { + for(int x=0; x<=multiplicity; x++) + m_thrMUMult->AddBinContent(1+ 8 * thr->mapping() + x); + m_thrMUTot->AddBinContent(1+ thr->mapping(), multiplicity); + } } } @@ -1381,36 +1383,44 @@ LVL1CTP::CTPSimulation::extractMultiplicities() { else if ( thr->cableName() == "EM1" ) { if ( m_emtauCTP.isValid() ) { multiplicity = CTPUtil::getMult( m_emtauCTP->cableWord0(), thr->cableStart(), thr->cableEnd() ); - for(int x=0; x<=multiplicity; x++) - m_thrEMMult->AddBinContent(1+ 8 * thr->mapping() + x); - m_thrEMTot->AddBinContent(1+ thr->mapping(), multiplicity); + if( thr->mapping() < 16 ) { + for(int x=0; x<=multiplicity; x++) + m_thrEMMult->AddBinContent(1+ 8 * thr->mapping() + x); + m_thrEMTot->AddBinContent(1+ thr->mapping(), multiplicity); + } } } else if ( thr->cableName() == "EM2" ) { if ( m_emtauCTP.isValid() ) { multiplicity = CTPUtil::getMult( m_emtauCTP->cableWord1(), thr->cableStart(), thr->cableEnd() ); - for(int x=0; x<=multiplicity; x++) - m_thrEMMult->AddBinContent(1+ 8 * thr->mapping() + x); - m_thrEMTot->AddBinContent(1+ thr->mapping(), multiplicity); + if( thr->mapping() < 16 ) { + for(int x=0; x<=multiplicity; x++) + m_thrEMMult->AddBinContent(1+ 8 * thr->mapping() + x); + m_thrEMTot->AddBinContent(1+ thr->mapping(), multiplicity); + } } } else if ( thr->cableName() == "TAU1" ) { if ( m_emtauCTP.isValid() ) { multiplicity = CTPUtil::getMult( m_emtauCTP->cableWord2(), thr->cableStart(), thr->cableEnd() ); - for(int x=0; x<=multiplicity; x++) - m_thrHAMult->AddBinContent(1+ 8 * thr->mapping() + x); - m_thrHATot->AddBinContent(1+ thr->mapping(), multiplicity); + if( thr->mapping() < 16 ) { + for(int x=0; x<=multiplicity; x++) + m_thrHAMult->AddBinContent(1+ 8 * thr->mapping() + x); + m_thrHATot->AddBinContent(1+ thr->mapping(), multiplicity); + } } } else if ( thr->cableName() == "TAU2" ) { if ( m_emtauCTP.isValid() ) { multiplicity = CTPUtil::getMult( m_emtauCTP->cableWord3(), thr->cableStart(), thr->cableEnd() ); - for(int x=0; x<=multiplicity; x++) - m_thrHAMult->AddBinContent(1+ 8 * thr->mapping() + x); - m_thrHATot->AddBinContent(1+ thr->mapping(), multiplicity); + if( thr->mapping() < 16 ) { + for(int x=0; x<=multiplicity; x++) + m_thrHAMult->AddBinContent(1+ 8 * thr->mapping() + x); + m_thrHATot->AddBinContent(1+ thr->mapping(), multiplicity); + } } } @@ -1419,20 +1429,23 @@ LVL1CTP::CTPSimulation::extractMultiplicities() { if ( m_jetCTP.isValid() ) { multiplicity = CTPUtil::getMult( m_jetCTP->cableWord0(), thr->cableStart(), thr->cableEnd() ); - for(int x=0; x<=multiplicity; x++) - m_thrJET1Mult->AddBinContent(1+ 8 * thr->mapping() + x); - m_thrJETTot->AddBinContent(1+ thr->mapping(), multiplicity); - } - + if( thr->mapping() < 25 ) { + for(int x=0; x<=multiplicity; x++) + m_thrJET1Mult->AddBinContent(1+ 8 * thr->mapping() + x); + m_thrJETTot->AddBinContent(1+ thr->mapping(), multiplicity); + } + } } else if ( thr->cableName() == "JEP2" || thr->cableName() == "JET2" ) { if ( m_jetCTP.isValid() ) { multiplicity = CTPUtil::getMult( m_jetCTP->cableWord1(), thr->cableStart(), thr->cableEnd() ); - for(int x=0; x<=multiplicity; x++) - m_thrJET2Mult->AddBinContent(1+ 4 * (thr->mapping()-10) + x); - m_thrJETTot->AddBinContent(1+ thr->mapping(), multiplicity); + if( thr->mapping() < 25 ) { + for(int x=0; x<=multiplicity; x++) + m_thrJET2Mult->AddBinContent(1+ 4 * (thr->mapping()-10) + x); + m_thrJETTot->AddBinContent(1+ thr->mapping(), multiplicity); + } } } @@ -1442,20 +1455,23 @@ LVL1CTP::CTPSimulation::extractMultiplicities() { multiplicity = CTPUtil::getMult( m_energyCTP->cableWord0(), thr->cableStart(), thr->cableEnd() ); TH1I * hMult(0), * hTot(0); + int maxmapping; switch(thr->ttype()) { case L1DataDef::TE: - hMult = m_thrTEMult; hTot = m_thrTETot; break; + hMult = m_thrTEMult; hTot = m_thrTETot; maxmapping = 16; break; case L1DataDef::XE: - hMult = m_thrXEMult; hTot = m_thrXETot; break; + hMult = m_thrXEMult; hTot = m_thrXETot; maxmapping = 16; break; case L1DataDef::XS: - hMult = m_thrXSMult; hTot = m_thrXSTot; break; + hMult = m_thrXSMult; hTot = m_thrXSTot; maxmapping = 8; break; default: break; } if(hMult) { - for(int x=0; x<=multiplicity; x++) - hMult->AddBinContent(1+ 2 * thr->mapping() + x); - hTot->AddBinContent(1+ thr->mapping(), multiplicity); + if( thr->mapping() < maxmapping ) { + for(int x=0; x<=multiplicity; x++) + hMult->AddBinContent(1+ 2 * thr->mapping() + x); + hTot->AddBinContent(1+ thr->mapping(), multiplicity); + } } } } @@ -1474,9 +1490,11 @@ LVL1CTP::CTPSimulation::extractMultiplicities() { break; } if(hMult) { - for(int x=0; x<=multiplicity; x++) - hMult->AddBinContent(1+ 2 * thr->mapping() + x); - hTot->AddBinContent(1+ thr->mapping(), multiplicity); + if( thr->mapping() < 16 ) { + for(int x=0; x<=multiplicity; x++) + hMult->AddBinContent(1+ 2 * thr->mapping() + x); + hTot->AddBinContent(1+ thr->mapping(), multiplicity); + } } } } diff --git a/Trigger/TrigT1/TrigT1CTP/src/components/TrigT1CTP_entries.cxx b/Trigger/TrigT1/TrigT1CTP/src/components/TrigT1CTP_entries.cxx index 5d246e6a3faf11b7ec32af9b1c8a2963a8a4a20e..0ec684714a0465f84a7c040b8087cc521303dd0d 100755 --- a/Trigger/TrigT1/TrigT1CTP/src/components/TrigT1CTP_entries.cxx +++ b/Trigger/TrigT1/TrigT1CTP/src/components/TrigT1CTP_entries.cxx @@ -13,14 +13,18 @@ #include "TrigT1CTP/CTPSimulation.h" #include "TrigT1CTP/CTPDataDumper.h" +#include "../CTPEmulation.h" using LVL1CTP::CTPSimulation; using LVL1CTP::CTPDataDumper; DECLARE_ALGORITHM_FACTORY( CTPSimulation ) DECLARE_ALGORITHM_FACTORY( CTPDataDumper ) +DECLARE_NAMESPACE_ALGORITHM_FACTORY( LVL1CTP, CTPEmulation ) + DECLARE_FACTORY_ENTRIES( TrigT1CTP ) { DECLARE_ALGORITHM( CTPSimulation ) DECLARE_ALGORITHM( CTPDataDumper ) + DECLARE_NAMESPACE_ALGORITHM( LVL1CTP, CTPEmulation ) } diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/TrigT1CaloFexSim/JGTowerReader.h b/Trigger/TrigT1/TrigT1CaloFexSim/TrigT1CaloFexSim/JGTowerReader.h index 76799a16cd18dec6bf06060b9364241038f18fc3..db4343368ca84ccb70317d805c34fae6eeda40a7 100644 --- a/Trigger/TrigT1/TrigT1CaloFexSim/TrigT1CaloFexSim/JGTowerReader.h +++ b/Trigger/TrigT1/TrigT1CaloFexSim/TrigT1CaloFexSim/JGTowerReader.h @@ -46,6 +46,7 @@ class JGTowerReader: public ::AthAlgorithm { private: bool m_vetoBCID; bool m_outputNoise; + std::string m_scType; bool m_debugJetAlg; bool m_dumpTowerInfo; bool m_dumpSeedsEtaPhi; @@ -73,6 +74,13 @@ class JGTowerReader: public ::AthAlgorithm { float m_jJetRound_jet_total_noise_multiplier; float m_jJetRound_jet_min_ET_MeV; + bool m_makeRoundLargeRJets; + float m_jJetRound_LargeR_seed_size; + float m_jJetRound_LargeR_max_r; + float m_jJetRound_LargeR_r; + float m_jJetRound_LargeR_seed_min_ET_MeV; + float m_jJetRound_LargeR_jet_min_ET_MeV; + bool m_makeJetsFromMap; std::string m_towerMap; float m_map_seed_tower_noise_multiplier; @@ -101,6 +109,7 @@ class JGTowerReader: public ::AthAlgorithm { bool m_useRMS; bool m_useMedian; bool m_useNegTowers; + bool m_developerMET; bool m_combine_rhoNoise; bool m_combine_skNoise; bool m_combine_jwojNoise; @@ -126,16 +135,23 @@ class JGTowerReader: public ::AthAlgorithm { std::vector<TString> hists; // tower map entries + int totalTowers = 0; + int towersInMap = 0; + std::vector<float> towerMap_towerNumber; std::vector<float> towerMap_towerEta; std::vector<float> towerMap_towerPhi; std::vector<int> towerMap_towerSampling; std::vector< std::vector<int> > towerMap_towerLayers; + int totalSeeds = 0; + int seedsInMap = 0; std::vector<float> towerMap_seedEta; std::vector<float> towerMap_seedPhi; std::vector< std::vector<int> > towerMap_seedTowers; std::vector< std::vector<int> > towerMap_seedLocalMaxSeeds; + int totalJets = 0; + int jetsInMap = 0; std::vector<float> towerMap_jetEta; std::vector<float> towerMap_jetPhi; std::vector<int> towerMap_jetSeed; @@ -158,8 +174,10 @@ class JGTowerReader: public ::AthAlgorithm { int m_jTowerHashMax; int m_gTowerHashMax; - int m_eventCount = 0; - + unsigned int m_eventCount = 0; + SG::AuxElement::Accessor<float>* acc_rho = new SG::AuxElement::Accessor<float>("Rho_avg"); + SG::AuxElement::Accessor<float>* acc_mht = new SG::AuxElement::Accessor<float>("MHT"); + SG::AuxElement::Accessor<float>* acc_mst = new SG::AuxElement::Accessor<float>("MST"); }; #endif //> !TRIGT1CALOFEXSIM_JGTOWERREADER_H diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/TrigT1CaloFexSim/METAlg.h b/Trigger/TrigT1/TrigT1CaloFexSim/TrigT1CaloFexSim/METAlg.h index 55b8fe6e02657e49f0ad69af9ba2472187ad461e..ad6573922cb531d5d26b2d1bbae6a7af4a041ad2 100644 --- a/Trigger/TrigT1/TrigT1CaloFexSim/TrigT1CaloFexSim/METAlg.h +++ b/Trigger/TrigT1/TrigT1CaloFexSim/TrigT1CaloFexSim/METAlg.h @@ -39,7 +39,9 @@ class METAlg{ struct MET{ float phi; float et; - + float rho = 0; + float mht = 0; + float mst = 0; }; static std::map<TString, std::shared_ptr<MET>> m_METMap; @@ -64,7 +66,10 @@ class METAlg{ */ static StatusCode Pufit_MET(const xAOD::JGTowerContainer* towers, TString metname, bool useNegTowers); - + /** + *@brief Calculates MET in bins of eta(and phi) depending on jFEX/gFEX geometry + */ + static StatusCode MET_etaBins(const xAOD::JGTowerContainer* towers, bool usegFEX, bool useRhoSub, bool usePUfit); }; #endif diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/TrigT1CaloFexSim/Pufit.h b/Trigger/TrigT1/TrigT1CaloFexSim/TrigT1CaloFexSim/Pufit.h index a67fdd0c4775b4eef40a57b54d40afa14e04fc5e..8b6b853bce46012e7317d8f2fd330bbde0927f52 100644 --- a/Trigger/TrigT1/TrigT1CaloFexSim/TrigT1CaloFexSim/Pufit.h +++ b/Trigger/TrigT1/TrigT1CaloFexSim/TrigT1CaloFexSim/Pufit.h @@ -67,12 +67,12 @@ namespace PUfitVar{ float m_towerPhiWidth = TMath::TwoPi()/m_nPhiBins; } -float Run_PUfit(const xAOD::JGTowerContainer* towers, float input_sigma = PUfitVar::m_nSigma, bool useNegTowers=false){ +std::vector<float> Run_PUfit(const xAOD::JGTowerContainer* towers, float input_sigma = PUfitVar::m_nSigma, bool useNegTowers=false){ std::vector<Patch> towerConfig; towerConfig.resize(PUfitVar::m_nTowers); - TH2F* pufitGrid = new TH2F("h_pufitGrid", "", PUfitVar::m_nEtaBins, -PUfitVar::m_maxEta, PUfitVar::m_maxEta, PUfitVar::m_nPhiBins, -TMath::Pi(), TMath::Pi()); + TH2F pufitGrid("h_pufitGrid", "", PUfitVar::m_nEtaBins, -PUfitVar::m_maxEta, PUfitVar::m_maxEta, PUfitVar::m_nPhiBins, -TMath::Pi(), TMath::Pi()); float sumEtEta = 0; //Eta restricted sum for(unsigned int i = 0; i < towers->size(); i++){ @@ -88,8 +88,8 @@ float Run_PUfit(const xAOD::JGTowerContainer* towers, float input_sigma = PUfitV sumEtEta += Et_; - int ieta = pufitGrid->GetXaxis()->FindBin(eta); - int iphi = pufitGrid->GetYaxis()->FindBin(phi); + int ieta = pufitGrid.GetXaxis()->FindBin(eta); + int iphi = pufitGrid.GetYaxis()->FindBin(phi); ieta -= 1; // to deal with the conversion from root histogram indicies to c++ vector indicies iphi -= 1; // histograms start with 1, vectors with 0 @@ -98,8 +98,8 @@ float Run_PUfit(const xAOD::JGTowerContainer* towers, float input_sigma = PUfitV towerConfig.at(index).add(Et_, phi); - float temp = pufitGrid->GetBinContent(ieta+1, iphi+1); - pufitGrid->SetBinContent(ieta+1, iphi+1, temp + Et_); + float temp = pufitGrid.GetBinContent(ieta+1, iphi+1); + pufitGrid.SetBinContent(ieta+1, iphi+1, temp + Et_); } //int maxConfig; @@ -163,8 +163,10 @@ float Run_PUfit(const xAOD::JGTowerContainer* towers, float input_sigma = PUfitV } //Stop if no patches are classified as hard scatter - if(nHardScatter == 0) return 0.; - + if(nHardScatter == 0){ + std::vector<float> blank(2); + return blank; + } double sigma_det = sigma_yy*sigma_xx - sigma_xy*sigma_xy; double cosPhiPileup = ptPileup.Px()/ptPileup.Mod(); @@ -213,9 +215,14 @@ float Run_PUfit(const xAOD::JGTowerContainer* towers, float input_sigma = PUfitV sumEt += hsTowers.at(ii).sumEt; } - delete pufitGrid; - return TMath::Sqrt(pxMiss*pxMiss + pyMiss*pyMiss); + std::vector<float> MET; + float met = TMath::Sqrt(pxMiss*pxMiss + pyMiss*pyMiss); + MET.push_back(met); + float phi = 0; + if(met != 0) TMath::ACos(pxMiss/met); + MET.push_back(phi); + return MET; } diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/TrigT1CaloFexSim/Rho.h b/Trigger/TrigT1/TrigT1CaloFexSim/TrigT1CaloFexSim/Rho.h index a2fbaae5b8d6bb9f8282630a9051e6ba2499f85d..9d52f64ebea4c594e6df509b5d119853a4b74186 100644 --- a/Trigger/TrigT1/TrigT1CaloFexSim/TrigT1CaloFexSim/Rho.h +++ b/Trigger/TrigT1/TrigT1CaloFexSim/TrigT1CaloFexSim/Rho.h @@ -44,8 +44,7 @@ Rho_med(): Calculates rho as the median tower energy density in the barrel, agai float Rho_bar(const xAOD::JGTowerContainer* towers, const bool useNegTowers){ float rho = 0; - float et_max = 10*Gaudi::Units::GeV; //an upper threshold such that the average rho is not biased by hard scatter eve\ -nts + float et_max = 10*Gaudi::Units::GeV; //an upper threshold such that the average rho is not biased by hard scatter events const unsigned int size = towers->size(); int length = 0; @@ -54,7 +53,7 @@ nts float eta = TMath::Abs(tower->eta()); float Et = tower->et(); - if(!useNegTowers) Et = TMath::Abs(Et); + if(!useNegTowers && Et < 0) continue; if(eta < 2.4){ if(Et < et_max){ @@ -68,13 +67,41 @@ nts return rho_bar; } +float Rho_bar(std::vector<const xAOD::JGTower*> towers, const bool useNegTowers){ + + float rho = 0; + float et_max = 10*Gaudi::Units::GeV; //an upper threshold such that the average rho is not biased by hard scatter events + + const unsigned int size = towers.size(); + int length = 0; + + for(unsigned int i = 0; i < size; i++){ + const xAOD::JGTower* tower = towers[i]; + float eta = TMath::Abs(tower->eta()); + float Et = tower->et(); + + if(!useNegTowers && Et < 0) continue; + + if(eta < 2.4){ + if(Et < et_max){ + rho += Et; + length++; + } + } + } + float rho_bar = rho/length; + + return rho_bar; +} + + /** *@brief Calculates rho as the median tower energy density in the barrel region of the calorimeter, to be scaled with area in more forward regions *@return @c float */ float Rho_med(const xAOD::JGTowerContainer* towers, const bool useNegTowers){ float rho = 0; - const unsigned int size = 0; + const unsigned int size = towers->size(); std::vector<float> Et_in; for(unsigned int i = 0; i < size; i++){ @@ -82,18 +109,72 @@ float Rho_med(const xAOD::JGTowerContainer* towers, const bool useNegTowers){ float Et = tower->et(); float eta = TMath::Abs(tower->eta()); - if(!useNegTowers) Et = TMath::Abs(Et); + if(!useNegTowers && Et < 0) continue; if(eta < 2.4) Et_in.push_back(Et); } std::sort(Et_in.begin(), Et_in.end()); - + + if(Et_in.size() == 0) return 0; if(Et_in.size() == 1) rho = Et_in[0]; - else if(Et_in.size() % 2 == 0) rho = (Et_in[size/2] + Et_in[size/2 -1])/2; - else rho = Et_in[size/2]; + else if(Et_in.size() % 2 == 0) rho = (Et_in[Et_in.size()/2] + Et_in[Et_in.size()/2 -1])/2; + else rho = Et_in[Et_in.size()/2]; return rho; } +std::vector<float>* rhoSub(std::vector<const xAOD::JGTower*> towers, bool useNegTowers){ + float EtMiss = 0; + float Ex = 0, Ey = 0, Ex_ = 0, Ey_ = 0; + float threshold = 0; + + //can calculate rho as either the average or median gTower energy in the barrel + float rho = Rho_bar(towers, false); + + unsigned int size = towers.size(); + + TH1F* h_Et = new TH1F("h_Et", "", 50, 0, 5000); + + for(unsigned int t = 0; t < size; t++){ + const xAOD::JGTower* tower = towers[t]; + float Et = tower->et(); + if(!useNegTowers && Et < 0) continue; + h_Et->Fill(Et); + } + threshold = 3*h_Et->GetRMS(); + + for(unsigned int t = 0; t < size; t++){ + const xAOD::JGTower* tower = towers[t]; + float Et = tower->et(); + float phi = tower->phi(); + float eta = TMath::Abs(tower->eta()); + + float Et_sub = 0; + if(eta < 2.4) Et_sub = TMath::Abs(Et) - rho; + else Et_sub = TMath::Abs(Et) - 4*rho; + + if(Et_sub < threshold) continue; + + //if tower originally had negative Et, keep Et_sub negative + if(useNegTowers && Et < 0) Et_sub = -Et_sub; + + Ex_ = Et_sub*TMath::Cos(phi); + Ey_ = Et_sub*TMath::Sin(phi); + + Ex += Ex_; + Ey += Ey_; + } + + EtMiss = TMath::Sqrt(Ex*Ex + Ey*Ey); + float phi_met = 0; + if(EtMiss != 0) phi_met = TMath::ACos(Ex/EtMiss); + if (Ey<0) phi_met = -phi_met; + + std::vector<float>* met; + met->push_back(EtMiss); + met->push_back(phi_met); + + return met; +} #endif diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/python/L1SimulationControlFlags.py b/Trigger/TrigT1/TrigT1CaloFexSim/python/L1SimulationControlFlags.py index 7d1565f0a5b27d3698023881205128f88aefde99..af443f792412b765ab47d88f4b999e37ff32cbdc 100644 --- a/Trigger/TrigT1/TrigT1CaloFexSim/python/L1SimulationControlFlags.py +++ b/Trigger/TrigT1/TrigT1CaloFexSim/python/L1SimulationControlFlags.py @@ -21,6 +21,10 @@ class SCellType(JobProperty): statusOn = True allowedType = ['str'] StoredValue = "Pulse" + def _do_action(self): + if self.get_Value()=="Emulated": + from TrigT1CaloFexSim.L1SimulationControlFlags import L1Phase1SimFlags as simflags + simflags.Calo.ApplySCQual=False _caloflags.append(SCellType) @@ -62,7 +66,7 @@ class RunCTPEmulation(JobProperty): """ Run the CTP Emulation """ statusOn = True allowedType = ['bool'] - StoredValue = False + StoredValue = True _ctpflags.append(RunCTPEmulation) @@ -78,8 +82,8 @@ _glflags.append(OutputHistFile) class EnableDebugOutput(JobProperty): """ To enable DEBUG or VERBOSE output for specific algorithms """ statusOn = True - allowedType = ['list'] - StoredValue = list() + allowedType = ['bool'] + StoredValue = True _glflags.append(EnableDebugOutput) diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/share/EnableFexAlgorithms.py b/Trigger/TrigT1/TrigT1CaloFexSim/share/EnableFexAlgorithms.py index ebca026e9555000f96bcad1fd456e8312220f179..ccaaf8066a48409dfdbdc856a73a654c2b23cc48 100644 --- a/Trigger/TrigT1/TrigT1CaloFexSim/share/EnableFexAlgorithms.py +++ b/Trigger/TrigT1/TrigT1CaloFexSim/share/EnableFexAlgorithms.py @@ -1,12 +1,13 @@ -def enableJGTowerReader(debug = False): +def enableJGTowerReader(debug = False, SuperCellType="SCell"): algseq = CfgMgr.AthSequencer("AthAlgSeq") algseq += CfgMgr.JGTowerReader ( outputNoise = False, debugJetAlg = debug, - noise_file = "Run3L1CaloSimulation/Noise/noise_r10684.root", - plotSeeds = True, - dumpTowerInfo = True, + SuperCellType = SuperCellType, + noise_file = "Run3L1CaloSimulation/Noise/noise_r10684_MapFixed.root", + plotSeeds = False, + dumpTowerInfo = False, makeSquareJets = False, jJet_seed_size = 0.2, @@ -37,8 +38,9 @@ def enableJGTowerReader(debug = False): jJetRound_LargeR_seed_min_ET_MeV = 500, jJetRound_LargeR_jet_min_ET_MeV = 5000, - makeJetsFromMap = True, - towerMap = 'Run3L1CaloSimulation/JetMaps/jFexJet_towerMap_2019-02-15.txt', # once it's on cvmfs + makeJetsFromMap = False, + towerMap = 'Run3L1CaloSimulation/JetMaps/jFexJet_towerMap_2019-02-12_notruncation.txt', + #towerMap = 'jFexJet_towerMap_2019-02-15.txt', map_seed_tower_noise_multiplier = 2.0, map_seed_total_noise_multiplier = 0.0, map_seed_min_ET_MeV = 500, @@ -46,14 +48,11 @@ def enableJGTowerReader(debug = False): map_jet_total_noise_multiplier = 0.0, map_jet_min_ET_MeV = 500, - gJet_seed_size=0.4, + gJet_seed_size=0.2,#Not for gFEX gJet_max_r=1.0, gJet_r=1.0, - gJet_seed_tower_noise_multiplier = 1.0, - gJet_seed_total_noise_multiplier = 1.0, + gJet_seed_tower_noise_multiplier = 0.0, gJet_seed_min_ET_MeV = 500, - gJet_jet_tower_noise_multiplier = 3.0, - gJet_jet_total_noise_multiplier = 0.0, - gJet_jet_min_ET_MeV = 10000.0, + gJet_jet_min_ET_MeV = 5000., ) diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/share/EnableJGTowerMaker.py b/Trigger/TrigT1/TrigT1CaloFexSim/share/EnableJGTowerMaker.py index 257b80da765c3dd038ce562b933d211c220e971f..07556fc6c13e4737d6b6d4dfecd68c3dbf97a8b6 100644 --- a/Trigger/TrigT1/TrigT1CaloFexSim/share/EnableJGTowerMaker.py +++ b/Trigger/TrigT1/TrigT1CaloFexSim/share/EnableJGTowerMaker.py @@ -1,7 +1,9 @@ + def enableJGTowerMaker( SuperCellContainer="SCell", ApplySCQual=True, SCBitMask=0x200 ): from AthenaCommon.Logging import logging + from AthenaCommon.AppMgr import ServiceMgr as svcMgr log = logging.getLogger( 'TrigT1CaloFexSim.EnableJGTowerMaker' ) log.info("Enabling JGTowerMaker. It is setup to read SuperCellContainer %s and %sapply SCQuality" % (SuperCellContainer, "" if ApplySCQual else "not " ) ) @@ -11,8 +13,9 @@ def enableJGTowerMaker( SuperCellContainer="SCell", ApplySCQual=True, SCBitMask= # Details for tower builder # svcMgr.IOVDbSvc.dbConnection = "impl=cool;techno=oracle;schema=ATLAS_COOL_LAR;ATLAS_COOLPROD:OFLP130:ATLAS_COOL_LAR_W:" svcMgr.IOVDbSvc.dbConnection = "sqlite://;schema=gJTowerMap.db;dbname=OFLP200" - svcMgr += CfgMgr.THistSvc() - # svcMgr.THistSvc.Output += ["OUTPUT DATAFILE='myOutputFile.root' OPT='RECREATE'"] + if not hasattr(svcMgr,"THistSvc"): + svcMgr += CfgMgr.THistSvc() + svcMgr.THistSvc.Output += ["EXPERT DATAFILE='myOutputFile.root' OPT='RECREATE'"] # not sure about this as these variables are not used anywhere folderlist = [ "/LAR/Identifier/GTowerSCMap", diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/share/FillAODStream.py b/Trigger/TrigT1/TrigT1CaloFexSim/share/FillAODStream.py index 5365084f23ac8b20f6cb72f407b20b0472cb94ba..091b29ad41a97c39a612f451d1547d9ee4b1da6a 100755 --- a/Trigger/TrigT1/TrigT1CaloFexSim/share/FillAODStream.py +++ b/Trigger/TrigT1/TrigT1CaloFexSim/share/FillAODStream.py @@ -1,29 +1,34 @@ -def fillAOD (SuperCellContainer="SCellBCID", WriteAllCalo=False): +def fillOutStream ( stream, SuperCellContainer="SCellBCID", WriteAllCalo=False ): - StreamAOD.ItemList += ["CaloCellContainer#%s" % SuperCellContainer] + stream.ItemList += ["CaloCellContainer#%s" % SuperCellContainer] if WriteAllCalo: - StreamAOD.ItemList += [ "CaloCellContainer#AllCalo" ] + stream.ItemList += [ "CaloCellContainer#AllCalo" ] # Run 2 towers - StreamAOD.ItemList += [ "xAOD::TriggerTowerContainer#xAODTriggerTowers", + stream.ItemList += [ "xAOD::TriggerTowerContainer#xAODTriggerTowers", "xAOD::TriggerTowerAuxContainer#xAODTriggerTowersAux." ] # New JTowers and GTowers for tower in [ "JTower", "GTower" ]: - StreamAOD.ItemList += [ "xAOD::JGTowerContainer#%s" % tower, "xAOD::JGTowerAuxContainer#%sAux.*" % tower ] + stream.ItemList += [ "xAOD::JGTowerContainer#%s" % tower, "xAOD::JGTowerAuxContainer#%sAux.*" % tower ] # gFEX jets and MET - StreamAOD.ItemList += [ "xAOD::JetRoIContainer#*", + stream.ItemList += [ "xAOD::JetRoIContainer#*", "xAOD::JetRoIAuxContainer#*", "xAOD::EnergySumRoI#*", "xAOD::EnergySumRoIAuxInfo#*" ] # eFEX electrons for cl in [ "SCluster", "SClusterCl", "SClusterSimple", "SClusterBCIDCl", "LArLayer1Vars1Sig", "LArLayer1Vars2Sig", "LArLayer1Vars3Sig" ]: - StreamAOD.ItemList += [ "xAOD::TrigEMClusterContainer#%s" % cl, - "xAOD::TrigEMClusterAuxContainer#%sAux." % cl ] + stream.ItemList += [ "xAOD::TrigEMClusterContainer#%s" % cl, + "xAOD::TrigEMClusterAuxContainer#%sAux." % cl ] # eFEX taus - StreamAOD.ItemList += [ "xAOD::EmTauRoIContainer#SClusterTau", - "xAOD::EmTauRoIAuxContainer#SClusterTauAux.*" ] + stream.ItemList += [ "xAOD::EmTauRoIContainer#SClusterTau", + "xAOD::EmTauRoIAuxContainer#SClusterTauAux.*" ] + + +def fillAOD ( SuperCellContainer="SCellBCID", WriteAllCalo=False ): + + fillOutStream( StreamAOD, SuperCellContainer, WriteAllCalo ) diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/share/JGTowerMakerEnable.py b/Trigger/TrigT1/TrigT1CaloFexSim/share/JGTowerMakerEnable.py deleted file mode 100755 index f7fc5e509a7a93b57011d9fa167cc46a6599078a..0000000000000000000000000000000000000000 --- a/Trigger/TrigT1/TrigT1CaloFexSim/share/JGTowerMakerEnable.py +++ /dev/null @@ -1,49 +0,0 @@ -if ( "streamAOD" in dir() ): - print "Enabling JGTowerMaker" - - - #svcMgr.IOVDbSvc.dbConnection = "impl=cool;techno=oracle;schema=ATLAS_COOL_LAR;ATLAS_COOLPROD:OFLP130:ATLAS_COOL_LAR_W:" - svcMgr.IOVDbSvc.dbConnection = "sqlite://;schema=gJTowerMap.db;dbname=OFLP200" - svcMgr += CfgMgr.THistSvc() - svcMgr.THistSvc.Output += ["OUTPUT DATAFILE='myOutputFile.root' OPT='RECREATE'"] - - - - - folderlist=("/LAR/Identifier/GTowerSCMap", - "/LAR/Identifier/JTowerSCMap" - ) - - folderspec=[] - tagspec=[] - for f in folderlist: - folderspec.append("GTowerSCMap#GTowerSCMapAtlas#"+f) - tagspec.append("".join(f.split("/"))+"-boohoo") - pass - - from TrigT1CaloFexSim import * - theJGTowerMaker = JGTowerMaker() - digitizationFlags.rndmSeedList.addSeed("JGTowerMaker",1234 , 5678 ) - - theJGTowerMaker=JGTowerMaker() - theJGTowerMaker.RndmSvc = digitizationFlags.rndmSvc.get_Value() - - - StreamAOD.ItemList+=["CaloCellContainer#AllCalo"] - StreamAOD.ItemList+=["CaloCellContainer#SCell"] - StreamAOD.ItemList+=["xAOD::TriggerTowerContainer#xAODTriggerTowers","xAOD::TriggerTowerAuxContainer#xAODTriggerTowersAux."]; - StreamAOD.ItemList+=["JGTowerContainer#JTower"] # This might need to be controlled later to avoid increase of AOD size - StreamAOD.ItemList+=["JGTowerAuxContainer#JTowerAux.*"] # This might need to be controlled later to avoid increase of AOD size - StreamAOD.ItemList+=["JGTowerContainer#GTower"] # This might need to be controlled later to avoid increase of AOD size - StreamAOD.ItemList+=["JGTowerAuxContainer#GTowerAux.*"] # This might need to be controlled later to avoid increase of AOD size - -# StreamAOD.TakeItemsFromInput = True - #topSequence.remove(streamAOD) - topSequence += StreamAOD - - - algseq = CfgMgr.AthSequencer("AthAlgSeq") #gets the main AthSequencer - algseq += CfgMgr.JGTowerMaker( - useSCQuality = True, - useAllCalo = False -) diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/share/JGTowerMakerJobOptions.py b/Trigger/TrigT1/TrigT1CaloFexSim/share/JGTowerMakerJobOptions.py deleted file mode 100644 index 0e2b391339f2c31b592fd6eb3481cab0f6e0c96f..0000000000000000000000000000000000000000 --- a/Trigger/TrigT1/TrigT1CaloFexSim/share/JGTowerMakerJobOptions.py +++ /dev/null @@ -1,86 +0,0 @@ -#Skeleton joboption for a simple analysis job - -theApp.EvtMax=3000 #says how many events to run over. Set to -1 for all events - - -from AthenaCommon.BeamFlags import jobproperties; -mu=200 -jobproperties.Beam.numberOfCollisions.set_Value_and_Lock(mu); -from LArROD.LArRODFlags import larRODFlags; -larRODFlags.doOFCPileupOptimization.set_Value_and_Lock(True); -larRODFlags.NumberOfCollisions.set_Value_and_Lock(mu); -from AthenaCommon.BeamFlags import jobproperties; -jobproperties.Beam.bunchSpacing=25; - -#Tag Override may not be needed for newer releases(>=20.20.7.4) -tagToOverride="mV-LSB"; - -from IOVDbSvc.CondDB import conddb -conddb.addOverride("/LAR/ElecCalibMCSC/Noise","LARElecCalibMCSCNoise-"+tagToOverride); -conddb.addOverride("/LAR/ElecCalibMCSC/Ramp", "LARElecCalibMCSRamp-"+tagToOverride) - -#Input file -from PyUtils import AthFile -import AthenaPoolCnvSvc.ReadAthenaPool #sets up reading of POOL files (e.g. xAODs) -svcMgr.EventSelector.InputCollections=[""] #left blank for no proper test sample -from AthenaCommon.AthenaCommonFlags import athenaCommonFlags -athenaCommonFlags.FilesInput = svcMgr.EventSelector.InputCollections -#use autoconfiguration to setup geometry and mc/data flags - -from AthenaCommon.DetFlags import DetFlags -DetFlags.detdescr.all_setOff() -DetFlags.detdescr.Calo_setOn() -include("RecExCond/AllDet_detDescr.py") - -include( "LArConditionsCommon/LArIdMap_MC_jobOptions.py" ) -from RegistrationServices.RegistrationServicesConf import IOVRegistrationSvc -svcMgr += IOVRegistrationSvc() -svcMgr.IOVRegistrationSvc.OutputLevel = DEBUG -svcMgr.IOVRegistrationSvc.RecreateFolders = True -svcMgr.IOVRegistrationSvc.SVFolder = False -svcMgr.IOVRegistrationSvc.userTags = False - - -#svcMgr.IOVDbSvc.dbConnection = "impl=cool;techno=oracle;schema=ATLAS_COOL_LAR;ATLAS_COOLPROD:OFLP130:ATLAS_COOL_LAR_W:" -svcMgr.IOVDbSvc.dbConnection = "sqlite://;schema=gJTowerMap.db;dbname=OFLP200" - - - - -folderlist=("/LAR/Identifier/GTowerSCMap", - "/LAR/Identifier/JTowerSCMap" - ) - -folderspec=[] -tagspec=[] -for f in folderlist: - folderspec.append("GTowerSCMap#GTowerSCMapAtlas#"+f) - tagspec.append("".join(f.split("/"))+"-boohoo") - pass - - - -from OutputStreamAthenaPool.MultipleStreamManager import MSMgr -xaodStream = MSMgr.NewPoolRootStream( "StreamXAOD", "xAOD.out.root" ) - -#EXAMPLE OF BASIC ADDITION OF EVENT AND METADATA ITEMS -#AddItem and AddMetaDataItem methods accept either string or list of strings -xaodStream.AddItem( ["xAOD::JGTowerContainer#*"] ) -xaodStream.AddItem( ["xAOD::JGTowerAuxContainer#*"] ) -xaodStream.Stream.TakeItemsFromInput = True - -athenaCommonFlags.FilesInput = svcMgr.EventSelector.InputCollections -algseq = CfgMgr.AthSequencer("AthAlgSeq") #gets the main AthSequencer -svcMgr += CfgMgr.THistSvc() -svcMgr.THistSvc.Output += ["OUTPUT DATAFILE='myOutputFile.root' OPT='RECREATE'"] -algseq += CfgMgr.JGTowerMaker( - useSCQuality = True, - useAllCalo = True -) #adds an instance of your alg to it -algseq.JGTowerMaker.OutputLevel=DEBUG - - -from AthenaCommon.GlobalFlags import globalflags -globalflags.DetDescrVersion.set_Value_and_Lock("ATLAS-R2-2015-03"); - -include("AthAnalysisBaseComps/SuppressLogging.py") #Optional include to suppress as much athena output as possible diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/share/JGTowerReaderJobOptions.py b/Trigger/TrigT1/TrigT1CaloFexSim/share/JGTowerReaderJobOptions.py deleted file mode 100644 index b0aa9547553704f796c5d21a6ac9b6287ed6b7ba..0000000000000000000000000000000000000000 --- a/Trigger/TrigT1/TrigT1CaloFexSim/share/JGTowerReaderJobOptions.py +++ /dev/null @@ -1,111 +0,0 @@ -#Skeleton joboption for a simple analysis job - -theApp.EvtMax=-1 #says how many events to run over. Set to -1 for all events - -from AthenaCommon.BeamFlags import jobproperties; -mu=200 -jobproperties.Beam.numberOfCollisions.set_Value_and_Lock(mu); -from LArROD.LArRODFlags import larRODFlags; -larRODFlags.doOFCPileupOptimization.set_Value_and_Lock(True); -larRODFlags.NumberOfCollisions.set_Value_and_Lock(mu); -from AthenaCommon.BeamFlags import jobproperties; -jobproperties.Beam.bunchSpacing=25; - -#Tag Override may not be needed for newer releases(>=20.20.7.4) -tagToOverride="mV-LSB"; - -from IOVDbSvc.CondDB import conddb -conddb.addOverride("/LAR/ElecCalibMCSC/Noise","LARElecCalibMCSCNoise-"+tagToOverride); -conddb.addOverride("/LAR/ElecCalibMCSC/Ramp", "LARElecCalibMCSRamp-"+tagToOverride) - -#Input file -from PyUtils import AthFile -import AthenaPoolCnvSvc.ReadAthenaPool #sets up reading of POOL files (e.g. xAODs) -svcMgr.EventSelector.InputCollections=[""] #left blank for no proper sample -from AthenaCommon.AthenaCommonFlags import athenaCommonFlags -athenaCommonFlags.FilesInput = svcMgr.EventSelector.InputCollections - -#Output AOD -from OutputStreamAthenaPool.MultipleStreamManager import MSMgr -xaodStream = MSMgr.NewPoolRootStream( "StreamXAOD", "xAOD.out.root" ) -xaodStream.AddItem( ["xAOD::JetRoIContainer#*"] ) -xaodStream.AddItem( ["xAOD::JetRoIAuxContainer#*"] ) -xaodStream.AddItem( ["xAOD::EnergySumRoI#*"] ) -xaodStream.AddItem( ["xAOD::EnergySumRoIAuxInfo#*"] ) - - -xaodStream.Stream.TakeItemsFromInput = True - - -from AthenaCommon.DetFlags import DetFlags -DetFlags.detdescr.all_setOff() -DetFlags.detdescr.Calo_setOn() -include("RecExCond/AllDet_detDescr.py") - -include( "LArConditionsCommon/LArIdMap_MC_jobOptions.py" ) -from RegistrationServices.RegistrationServicesConf import IOVRegistrationSvc -svcMgr += IOVRegistrationSvc() -#svcMgr.IOVRegistrationSvc.OutputLevel = DEBUG -svcMgr.IOVRegistrationSvc.RecreateFolders = True -svcMgr.IOVRegistrationSvc.SVFolder = False -svcMgr.IOVRegistrationSvc.userTags = False - - -#svcMgr.IOVDbSvc.dbConnection = "impl=cool;techno=oracle;schema=ATLAS_COOL_LAR;ATLAS_COOLPROD:OFLP130:ATLAS_COOL_LAR_W:" -svcMgr.IOVDbSvc.dbConnection = "sqlite://;schema=gJTowerMap.db;dbname=OFLP200" - -af = AthFile.fopen(svcMgr.EventSelector.InputCollections[0]) -isMC = 'IS_SIMULATION' in af.fileinfos['evt_type'] - -from TrigBunchCrossingTool.BunchCrossingTool import BunchCrossingTool -if isMC: ToolSvc += BunchCrossingTool( "MC" ) -else: ToolSvc += BunchCrossingTool( "LHC" ) - - - - -folderlist=("/LAR/Identifier/GTowerSCMap", - "/LAR/Identifier/JTowerSCMap" - ) - -folderspec=[] -tagspec=[] -for f in folderlist: - folderspec.append("GTowerSCMap#GTowerSCMapAtlas#"+f) - tagspec.append("".join(f.split("/"))+"-boohoo") - pass - - - -svcMgr.MessageSvc.defaultLimit = 999 -svcMgr += CfgMgr.THistSvc() -svcMgr.THistSvc.Output += ["OUTPUT DATAFILE='myOutputFile.root' OPT='RECREATE'"] - -athenaCommonFlags.FilesInput = svcMgr.EventSelector.InputCollections -algseq = CfgMgr.AthSequencer("AthAlgSeq") #gets the main AthSequencer -# declareProperty("outputNoise",m_outputNoise=false); -# declareProperty("noise_file",m_noise_file=""); -# declareProperty("jJet_threshold",m_jJet_thr=2.0); -# declareProperty("jSeed_size",m_jSeed_size=0.2); -# declareProperty("jMax_r",m_jMax_r=0.4); -# declareProperty("jJet_r",m_jJet_r=0.4); -# declareProperty("gJet_threshold",m_gJet_thr=2.0); -# declareProperty("gSeed_size",m_gSeed_size=0.2); -# declareProperty("gMax_r",m_gMax_r=0.4); -# declareProperty("gJet_r",m_gJet_r=0.4); - -algseq += CfgMgr.JGTowerReader( -outputNoise=True, -noise_file="/eos/user/c/cylin/public/L1Calo/noise_r10684.root", -jJet_threshold=3, #3 times higher than noise -jSeed_size=0.2, -jMax_r=0.4, -jJet_r=0.4, -gJet_threshold=3, -gSeed_size=0.2, -gMax_r=0.4, -gJet_r=0.4, -) #adds an instance of your alg to it -algseq.JGTowerReader.OutputLevel=DEBUG - -include("AthAnalysisBaseComps/SuppressLogging.py") #Optional include to suppress as much athena output as possible diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/share/JGTowerReaderJobOptions_roundJets.py b/Trigger/TrigT1/TrigT1CaloFexSim/share/JGTowerReaderJobOptions_roundJets.py deleted file mode 100755 index b729bf69e72471434488b14a2efb348903fda223..0000000000000000000000000000000000000000 --- a/Trigger/TrigT1/TrigT1CaloFexSim/share/JGTowerReaderJobOptions_roundJets.py +++ /dev/null @@ -1,137 +0,0 @@ -#Skeleton joboption for a simple analysis job - -theApp.EvtMax=1 #says how many events to run over. Set to -1 for all events - -debug = False -debug = True - -#Input file -from PyUtils import AthFile -import AthenaPoolCnvSvc.ReadAthenaPool #sets up reading of POOL files (e.g. xAODs) -from AthenaCommon.AthenaCommonFlags import athenaCommonFlags -# need both of these set for some reason, just one won't work -svcMgr.EventSelector.InputCollections=["/eos/user/c/ckaldero/JetTrigger_shared/AOD/L1Calo/mc16_13TeV.308276.PowhegPy8EG_NNPDF30_AZNLOCTEQ6L1_VBFH125_ZZ4nu_MET125.recon.AOD.e6126_e5984_s3126_r10684_tid14732657_00/AOD.14732657._000011.pool.root.1"] -athenaCommonFlags.FilesInput = svcMgr.EventSelector.InputCollections - -#Output AOD -from OutputStreamAthenaPool.MultipleStreamManager import MSMgr -xaodStream = MSMgr.NewPoolRootStream( "StreamXAOD", "xAOD.out.root" ) -# uncommenting the lines below gives "StreamXAOD ERROR INCORRECT Object/count: xAOD::EnergySumRoIAuxInfo_jFexMETAux., 1 should be: 2" -# but the JFex jet and MET containers are not written to the output xAOD... -xaodStream.AddItem( ["xAOD::JetRoIContainer#*"] ) -xaodStream.AddItem( ["xAOD::JetRoIAuxContainer#*"] ) -xaodStream.AddItem( ["xAOD::EnergySumRoI#*"] ) -xaodStream.AddItem( ["xAOD::EnergySumRoIAuxInfo#*"] ) -xaodStream.Stream.TakeItemsFromInput = True - - - -from AthenaCommon.DetFlags import DetFlags -DetFlags.detdescr.all_setOff() -DetFlags.detdescr.Calo_setOn() -include("RecExCond/AllDet_detDescr.py") - -include( "LArConditionsCommon/LArIdMap_MC_jobOptions.py" ) -from RegistrationServices.RegistrationServicesConf import IOVRegistrationSvc -svcMgr += IOVRegistrationSvc() -if debug: - svcMgr.IOVRegistrationSvc.OutputLevel = DEBUG -else: - svcMgr.IOVRegistrationSvc.OutputLevel = INFO -svcMgr.IOVRegistrationSvc.RecreateFolders = True -svcMgr.IOVRegistrationSvc.SVFolder = False -svcMgr.IOVRegistrationSvc.userTags = False - - -#svcMgr.IOVDbSvc.dbConnection = "impl=cool;techno=oracle;schema=ATLAS_COOL_LAR;ATLAS_COOLPROD:OFLP130:ATLAS_COOL_LAR_W:" -svcMgr.IOVDbSvc.dbConnection = "sqlite://;schema=gJTowerMap.db;dbname=OFLP200" - - -af = AthFile.fopen(svcMgr.EventSelector.InputCollections[0]) -isMC = 'IS_SIMULATION' in af.fileinfos['evt_type'] - -from TrigBunchCrossingTool.BunchCrossingTool import BunchCrossingTool -if isMC: ToolSvc += BunchCrossingTool( "MC" ) -else: ToolSvc += BunchCrossingTool( "LHC" ) - - - -folderlist=("/LAR/Identifier/GTowerSCMap", - "/LAR/Identifier/JTowerSCMap" - ) - -folderspec=[] -tagspec=[] -for f in folderlist: - folderspec.append("GTowerSCMap#GTowerSCMapAtlas#"+f) - tagspec.append("".join(f.split("/"))+"-boohoo") - pass - - - -svcMgr.MessageSvc.defaultLimit = 999 -svcMgr += CfgMgr.THistSvc() -svcMgr.THistSvc.Output += ["OUTPUT DATAFILE='myOutputFile.root' OPT='RECREATE'"] - -athenaCommonFlags.FilesInput = svcMgr.EventSelector.InputCollections - -algseq = CfgMgr.AthSequencer("AthAlgSeq") # gets the main AthSequencer - -algseq += CfgMgr.JGTowerReader( # adds an instance of your alg to it - outputNoise = False, - debugJetAlg = debug, - noise_file = "/eos/user/c/cylin/public/L1Calo/noise_r10684.root", - plotSeeds = True, - saveSeeds = True, - dumpTowerInfo = True, - - makeSquareJets = False, - jJet_seed_size = 0.2, - jJet_r = 0.4, - jJet_max_r = 0.4, - jJet_seed_tower_noise_multiplier = 1.0, - jJet_seed_total_noise_multiplier = 1.0, - jJet_seed_min_ET_MeV = 500, - jJet_jet_tower_noise_multiplier = 1.0, - jJet_jet_total_noise_multiplier = 0.0, - jJet_jet_min_ET_MeV = 500, - - makeRoundJets = True, - jJetRound_seed_size = 0.31, # seed square of side this. 0.3 for 3x3 towers, but floating point fun times - jJetRound_max_r = 0.39, # distance within which other seeds will be counted in local max 0.4 but floating point (don't want exactly 0.4) - jJetRound_r=0.39, # jet radius. 0.4, but don't want == 0.4 - jJetRound_seed_tower_noise_multiplier = 5.0, - jJetRound_seed_total_noise_multiplier = 5.0, - jJetRound_seed_min_ET_MeV = 500, - jJetRound_jet_tower_noise_multiplier = 1.0, - jJetRound_jet_total_noise_multiplier = 0.0, - jJetRound_jet_min_ET_MeV = 500, - - makeJetsFromMap = True, - # inside share/jetTowerMaps - towerMap = 'TrigT1CaloFexSim/jetTowerMaps/jFexJet_towerMap_2019-01-29.txt', - map_seed_tower_noise_multiplier = 5.0, - map_seed_total_noise_multiplier = 5.0, - map_seed_min_ET_MeV = 500, - map_jet_tower_noise_multiplier = 1.0, - map_jet_total_noise_multiplier = 0.0, - map_jet_min_ET_MeV = 500, - - gJet_seed_size=0.4, - gJet_max_r=1.0, - gJet_r=1.0, - gJet_seed_tower_noise_multiplier = 1.0, - gJet_seed_total_noise_multiplier = 1.0, - gJet_seed_min_ET_MeV = 500, - gJet_jet_tower_noise_multiplier = 3.0, - gJet_jet_total_noise_multiplier = 0.0, - gJet_jet_min_ET_MeV = 10000.0, - - ) - -if debug: - algseq.JGTowerReader.OutputLevel=DEBUG -else: - algseq.JGTowerReader.OutputLevel=INFO - -include("AthAnalysisBaseComps/SuppressLogging.py") #Optional include to suppress as much athena output as possible diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/share/createL1SimulationSequence.py b/Trigger/TrigT1/TrigT1CaloFexSim/share/createL1SimulationSequence.py index 1a42acbfc39dba939186c89b9b64fcd42ae6b6e5..5a985b75356d0a617e86a4c765ba55a8a4af5cf0 100644 --- a/Trigger/TrigT1/TrigT1CaloFexSim/share/createL1SimulationSequence.py +++ b/Trigger/TrigT1/TrigT1CaloFexSim/share/createL1SimulationSequence.py @@ -1,4 +1,3 @@ - from AthenaCommon.Logging import logging log = logging.getLogger( 'TrigT1CaloFexSim.L1Sim' ) log.setLevel(logging.DEBUG) @@ -51,10 +50,12 @@ if rec.doAOD(): include ("TrigL1CaloUpgrade/EnableEfexAlgorithms.py") enableEfexAlgorithms ( SuperCellContainer = SCIn, useTDR = False, - doLArFex = False) + doLArFex = False, + ApplySCQual = simflags.Calo.ApplySCQual(), + SCBitMask = simflags.Calo.QualBitMask() ) # j/gFEX include ( "TrigT1CaloFexSim/EnableFexAlgorithms.py" ) - enableJGTowerReader(debug = False) # too much debug output + enableJGTowerReader(debug = False, SuperCellType=SCIn) # too much debug output # Schedule CTP Simulation if simflags.CTP.RunCTPEmulation(): diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/share/createL1SimulationSequenceBS.py b/Trigger/TrigT1/TrigT1CaloFexSim/share/createL1SimulationSequenceBS.py new file mode 100644 index 0000000000000000000000000000000000000000..2a497a4201a96af24db6e6490a783eddf1541da5 --- /dev/null +++ b/Trigger/TrigT1/TrigT1CaloFexSim/share/createL1SimulationSequenceBS.py @@ -0,0 +1,125 @@ + +from AthenaCommon.Logging import logging +log = logging.getLogger( 'TrigT1CaloFexSim.L1Sim' ) +log.setLevel(logging.DEBUG) + +from RecExConfig.RecFlags import rec +from TrigT1CaloFexSim.L1SimulationControlFlags import L1Phase1SimFlags as simflags + +log.debug("dir() = %r" % dir()) + +simflags.Calo.SCellType = "Emulated" +simflags.CTP.RunCTPEmulation = True + +log.info("rec.read.* : RDO: %s, ESD: %s, AOD: %s" % (rec.readRDO(), rec.readESD(), rec.readAOD()) ) +log.info("rec.do* : RDOTrigger: %s, ESD: %s, AOD: %s" % (rec.doRDOTrigger(), rec.doESD(), rec.doAOD())) +log.info("rec.doWrite.* : ESD: %s, AOD: %s, TAG: %s" % (rec.doWriteESD(), rec.doWriteAOD(), rec.doWriteTAG()) ) +log.info(simflags._context_name) +simflags.print_JobProperties('tree&value') + + +if rec.readRDO(): + + # algorithm shuffling + # * at this stage (Modifier.post_exec) the HLT is set up and in sequence TopAlg -> move to HLTAlgSeq + # * CaloCellGetter by default writes to TopAlg -> need to move to AthAlgSeq before everything else is added + # * the rest of the L1simulation is being added to AthAlgSeq + + from AthenaCommon.AlgSequence import AlgSequence + topSeq = AlgSequence() + algSeq = CfgMgr.AthSequencer("AthAlgSeq") + hltSeq = CfgMgr.AthSequencer("HLTSeq") + + for alg in topSeq: + if alg.name() in ['ALFAROBMonitor', 'l1topoWriteValData', 'MuCTPiROBMonitor']: + continue + if alg.name() == 'xAODMaker::EventInfoCnvAlg': + algSeq += alg # event info converter has to come first + continue + hltSeq += alg + topSeq.removeAll() + + # Setting up the CaloCell creation + # turn off the digits->raw channel reconstruction + from LArROD.LArRODFlags import larRODFlags + from TileRecUtils.TileRecFlags import jobproperties as tileFlags + from CaloRec.CaloCellFlags import jobproperties as caloCellFlags + larRODFlags.readDigits=False + tileFlags.TileRecFlags.readDigits=False + caloCellFlags.CaloCellFlags.doLArCreateMissingCells = False + + #from LArConditionsCommon.LArCondFlags import larCondFlags + #larCondFlags.useShape = False + + from CaloRec.CaloCellGetter import CaloCellGetter + log.info("Calling CaloCellGetter to setup creation of calo cells") + CaloCellGetter() + for alg in topSeq: + algSeq += alg + topSeq.removeAll() + + include('TrigT1CaloByteStream/ReadLVL1CaloBSRun2_jobOptions.py') + + # Determine input supercell approach + if simflags.Calo.SCellType() == "Pulse": + SCIn="SCell" + elif simflags.Calo.SCellType() == "BCID": + include("TrigT1CaloFexSim/ApplyBCIDCorrections.py") + SCIn="SCellBCID" + elif simflags.Calo.SCellType() == "Emulated": + algSeq += CfgMgr.LArSCSimpleMaker ( + SCellContainer = "SimpleSCell" + ) + SCIn="SimpleSCell" + + + + # Schedule towermaker + include ( "TrigT1CaloFexSim/EnableJGTowerMaker.py" ) + enableJGTowerMaker( SuperCellContainer = SCIn, + ApplySCQual = simflags.Calo.ApplySCQual(), + SCBitMask = simflags.Calo.QualBitMask()) + + + if simflags.Calo.RunFexAlgorithms(): + + # eFEX + include ("TrigL1CaloUpgrade/EnableEfexAlgorithms.py") + enableEfexAlgorithms ( SuperCellContainer = SCIn, + useTDR = False, + doLArFex = False, + ApplySCQual = simflags.Calo.ApplySCQual(), + SCBitMask = simflags.Calo.QualBitMask() ) + + # j/gFEX + include ( "TrigT1CaloFexSim/EnableFexAlgorithms.py" ) + enableJGTowerReader(debug = False, SuperCellType=SCIn) # too much debug output + + # Schedule CTP Simulation + if simflags.CTP.RunCTPEmulation(): + include ( "TrigT1CTP/TrigT1CTP_EnableCTPEmulation.py" ) + enableCTPEmulation() + + #algSeq.removeAll() + + # now append the HLT to the algorithm sequence + for alg in hltSeq: + algSeq += alg + hltSeq.removeAll() + + if simflags.EnableDebugOutput(): + include( "TrigT1CaloFexSim/enableDebugOutput.py" ) + +if rec.doRDOTrigger(): + print "ADDING CONTAINERS TO RDOTrigger" + include ("TrigT1CaloFexSim/FillAODStream.py") + + # from AthenaCommon.AthenaCommonFlags import athenaCommonFlags + # from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream + # streamRDO = AthenaPoolOutputStream("StreamRDO", athenaCommonFlags.PoolRDOOutput.get_Value(), asAlg=True) + + fillStream( StreamRDO, + SuperCellContainer=SCIn, + WriteAllCalo=False) + + diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/share/enableDebugOutput.py b/Trigger/TrigT1/TrigT1CaloFexSim/share/enableDebugOutput.py index fa2ecf2c0d90cc8a4c783d02a0d4ff4fb7bb9d0a..bdd7caa099542f89a7fd5e082500c7efc9ca0bad 100644 --- a/Trigger/TrigT1/TrigT1CaloFexSim/share/enableDebugOutput.py +++ b/Trigger/TrigT1/TrigT1CaloFexSim/share/enableDebugOutput.py @@ -15,20 +15,27 @@ algseq = CfgMgr.AthSequencer("AthAlgSeq") log.debug(algseq.getSequence()) log.debug( "=== Top Sequence ===" ) +from AthenaCommon.AlgSequence import AlgSequence +topSequence = AlgSequence() log.debug( topSequence.getSequence() ) -log.debug( "=== StreamAOD ===" ) -for coll in sorted(StreamAOD.ItemList): - log.debug(coll) +log.debug( "=== Stream output ===" ) +if 'StreamAOD' in dir(): + for coll in sorted(StreamAOD.ItemList): + log.debug(coll) +if 'StreamRDO' in dir(): + for coll in sorted(StreamRDO.ItemList): + log.debug(coll) # setting all algorithms to DEBUG log.debug( "=== all algorithms in AlqSequence ===" ) for alg in algseq: + if alg.name() in ["TrigSteer_HLT"]: continue alg.OutputLevel = DEBUG print alg -print CfgMgr.THistSvc() +if hasattr(svcMgr,"THistSvc"): + print svcMgr.THistSvc Configurable.log.level = configLogLevel -del log diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/share/grid_postInclude.py b/Trigger/TrigT1/TrigT1CaloFexSim/share/grid_postInclude.py deleted file mode 100644 index 32446efb937bda0ed71e67f795dabdeb15bcb43c..0000000000000000000000000000000000000000 --- a/Trigger/TrigT1/TrigT1CaloFexSim/share/grid_postInclude.py +++ /dev/null @@ -1,7 +0,0 @@ -StreamAOD.ItemList+=["CaloCellContainer#AllCalo"] -StreamAOD.ItemList+=["CaloCellContainer#SCell"] -StreamAOD.ItemList+=["xAOD::TriggerTowerContainer#xAODTriggerTowers","xAOD::TriggerTowerAuxContainer#xAODTriggerTowersAux."] -StreamAOD.ItemList+=["xAOD::JGTowerContainer#JTower","xAOD::JGTowerAuxContainer#JTowerAux."] -StreamAOD.ItemList+=["xAOD::JGTowerContainer#GTower","xAOD::JGTowerAuxContainer#GTowerAux."] -algseq = CfgMgr.AthSequencer("AthAlgSeq") -algseq += CfgMgr.JGTowerMaker(useSCQuality = True) diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/share/grid_preInclude.py b/Trigger/TrigT1/TrigT1CaloFexSim/share/grid_preInclude.py deleted file mode 100644 index 28bfae6d5aa8817a5550ec0c6a8c3635744f79a4..0000000000000000000000000000000000000000 --- a/Trigger/TrigT1/TrigT1CaloFexSim/share/grid_preInclude.py +++ /dev/null @@ -1,5 +0,0 @@ -from AthenaCommon.GlobalFlags import globalflags -globalflags.DataSource.set_Value_and_Lock("geant4") -userRunLumiOverride={"run":240020, "startmu":190.0, "endmu":210.0, "stepmu":1.0, "lb":1, "starttstamp":1410020000} -from CaloIdentifier import SUBCALO -SUBCALO.NSUBCALO=6 diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/share/postInclude.py b/Trigger/TrigT1/TrigT1CaloFexSim/share/postInclude.py deleted file mode 100644 index 59390e16b067b5b7698a9967f0d0e9cf9ed48915..0000000000000000000000000000000000000000 --- a/Trigger/TrigT1/TrigT1CaloFexSim/share/postInclude.py +++ /dev/null @@ -1 +0,0 @@ -include("InDetSLHC_Example/SLHC_Setup_Reco_Alpine.py") diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/share/preInclude.py b/Trigger/TrigT1/TrigT1CaloFexSim/share/preInclude.py deleted file mode 100644 index 126797e1fe0a1f74d32ee65b6d7442539cbf4388..0000000000000000000000000000000000000000 --- a/Trigger/TrigT1/TrigT1CaloFexSim/share/preInclude.py +++ /dev/null @@ -1,9 +0,0 @@ -from AthenaCommon.GlobalFlags import globalflags; -globalflags.DataSource.set_Value_and_Lock("geant4"); -DetDescrVersion="ATLAS-P2-ITK-13-00-00"; -ConditionsTag="OFLCOND-MC15c-SDR-13"; -#DetDescrVersion="ATLAS-P2-ITK-13-00-00" -globalflags.DetDescrVersion.set_Value_and_Lock(DetDescrVersion); -include("InDetSLHC_Example/preInclude.SLHC.py") -include('InDetSLHC_Example/preInclude.SLHC_Setup_Strip_GMX.py') -include('InDetSLHC_Example/preInclude.SLHC_Setup_InclBrl_4.py') diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/src/JGTower.cxx b/Trigger/TrigT1/TrigT1CaloFexSim/src/JGTower.cxx index 723848d90b011b4fa0b38cff670e596c49d6b05b..1f2e601e0803c854f3ec753594dbd279e301f5e8 100644 --- a/Trigger/TrigT1/TrigT1CaloFexSim/src/JGTower.cxx +++ b/Trigger/TrigT1/TrigT1CaloFexSim/src/JGTower.cxx @@ -40,7 +40,7 @@ bool inBox(float eta1, float eta2, float deta, float phi1, float phi2, float dph bool withinRadius(float eta1, float eta2, float phi1, float phi2, float dR, bool acceptEqual){ float dPhi = deltaPhi(phi1, phi2); - float dEta = eta1=eta2; + float dEta = eta1-eta2; float dR2 = dPhi*dPhi + dEta*dEta; if(acceptEqual) return dR2 <= dR*dR; diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/src/JGTowerMaker.cxx b/Trigger/TrigT1/TrigT1CaloFexSim/src/JGTowerMaker.cxx index 4f526d236eb55852b12be155d2fed066da3f97ca..df13438f85d86d2f1193388ec5acdf374f95d8bd 100644 --- a/Trigger/TrigT1/TrigT1CaloFexSim/src/JGTowerMaker.cxx +++ b/Trigger/TrigT1/TrigT1CaloFexSim/src/JGTowerMaker.cxx @@ -119,7 +119,7 @@ StatusCode JGTowerMaker::FexAlg(const std::vector<std::shared_ptr<JGTower>>& jgT const xAOD::TriggerTower * tt = TTs->at(tt_hs); if(tt->sampling()!=1 || fabs(tt->eta())>1.5) continue; // Tile raneg upto 1.5 with sampling == 1 if(!inBox(jgt->Eta(),tt->eta(),jgt->dEta()/2,jgt->Phi(),tt->phi(),jgt->dPhi()/2)) continue; - float cpET = 1000*tt->cpET(); + float cpET = 500*tt->cpET(); jgEt+=cpET; tile_et+=cpET; } diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/src/JGTowerReader.cxx b/Trigger/TrigT1/TrigT1CaloFexSim/src/JGTowerReader.cxx index b7336fd7e0a42cb64900c15f3a3fa86c345045ec..83b51437c363304066515796e26086edd372a98b 100644 --- a/Trigger/TrigT1/TrigT1CaloFexSim/src/JGTowerReader.cxx +++ b/Trigger/TrigT1/TrigT1CaloFexSim/src/JGTowerReader.cxx @@ -41,9 +41,10 @@ histSvc("THistSvc",name){ declareProperty("outputNoise",m_outputNoise=false); declareProperty("debugJetAlg", m_debugJetAlg=false); + declareProperty("SuperCellType",m_scType="SCell"); declareProperty("dumpTowerInfo", m_dumpTowerInfo=false); declareProperty("dumpSeedsEtaPhi", m_dumpSeedsEtaPhi=false); - declareProperty("noise_file", m_noise_file=""); + declareProperty("noise_file", m_noise_file="Run3L1CaloSimulation/Noise/noise_r10684.root"); declareProperty("makeSquareJets", m_makeSquareJets = true); declareProperty("jJet_seed_size", m_jJet_seed_size=0.3); @@ -67,6 +68,13 @@ histSvc("THistSvc",name){ declareProperty("jJetRound_jet_total_noise_multiplier", m_jJetRound_jet_total_noise_multiplier = 0.0); declareProperty("jJetRound_jet_min_ET_MeV", m_jJetRound_jet_min_ET_MeV = 2000.0); + declareProperty("makeRoundLargeRJets", m_makeRoundLargeRJets = false); + declareProperty("jJetRound_LargeR_seed_size", m_jJetRound_LargeR_seed_size=0.3); + declareProperty("jJetRound_LargeR_max_r", m_jJetRound_LargeR_max_r=0.4); + declareProperty("jJetRound_LargeR_r", m_jJetRound_LargeR_r=0.8); + declareProperty("jJetRound_LargeR_seed_min_ET_MeV", m_jJetRound_LargeR_seed_min_ET_MeV = 2000.0); + declareProperty("jJetRound_LargeR_jet_min_ET_MeV", m_jJetRound_jet_min_ET_MeV = 2000.0); + declareProperty("makeJetsFromMap", m_makeJetsFromMap = false); declareProperty("towerMap", m_towerMap = ""); declareProperty("map_seed_tower_noise_multiplier", m_map_seed_tower_noise_multiplier = 1.0); @@ -89,7 +97,8 @@ histSvc("THistSvc",name){ declareProperty("gJet_jet_total_noise_multiplier", m_gJet_jet_total_noise_multiplier = 0.0); declareProperty("gJet_jet_min_ET_MeV", m_gJet_jet_min_ET_MeV = 2000.0); - declareProperty("useRMS", m_useRMS=false); + declareProperty("developerMET",m_developerMET=false); + declareProperty("useRMS", m_useRMS=true); declareProperty("useMedian", m_useMedian=false); declareProperty("useNegTowers", m_useNegTowers=false); declareProperty("pTcone_cut", m_pTcone_cut=25); //cone threshold for Jets without Jets: declared in GeV @@ -100,6 +109,7 @@ JGTowerReader::~JGTowerReader() { delete jSeeds; delete jJetSeeds; delete gSeeds; + delete acc_rho; METAlg::m_METMap.clear(); jL1Jets.clear(); @@ -115,9 +125,11 @@ StatusCode JGTowerReader::initialize() { CHECK(detStore()->retrieve(m_jTowerId)); CHECK(detStore()->retrieve(m_gTowerId)); - std::ifstream noise_exist(m_noise_file.c_str()); + std::string fullPathToNoise = PathResolverFindCalibFile(m_noise_file); + std::ifstream noise_exist(fullPathToNoise.c_str()); if(noise_exist){ - TFile*noise = new TFile(m_noise_file.c_str()); + ATH_MSG_INFO ("Noise is set with root file:" << fullPathToNoise << "..."); + TFile*noise = new TFile(fullPathToNoise.c_str()); TH1F*jh_noise = (TH1F*)noise->Get("jT_noise"); TH1F*gh_noise = (TH1F*)noise->Get("gT_noise"); @@ -133,6 +145,9 @@ StatusCode JGTowerReader::initialize() { if(m_makeJetsFromMap) { CHECK( ReadTowerMap() ); } + acc_rho = new SG::AuxElement::Accessor<float>("Rho"); + acc_mht = new SG::AuxElement::Accessor<float>("MHT"); + acc_mst = new SG::AuxElement::Accessor<float>("MST"); return StatusCode::SUCCESS; } @@ -166,12 +181,13 @@ StatusCode JGTowerReader::execute() { CHECK(HistBookFill("distFrontBunchTrain",100,0,100, distFrontBunchTrain, 1.)); const CaloCellContainer* scells = 0; - CHECK( evtStore()->retrieve( scells, "SCell") ); + CHECK( evtStore()->retrieve( scells, m_scType) ); const xAOD::JGTowerContainer* jTowers =0; CHECK( evtStore()->retrieve( jTowers,"JTower")); //when noise file is not available, set the noise as constant for EM, Had, and FCal respectively if(jT_noise.size()==0){ + ATH_MSG_INFO (" Failed to find noise file, setting jTower noise manually "); for( const auto &jT : *jTowers){ if(jT->sampling()==0) jT_noise.push_back(450); else if(jT->sampling()==1) jT_noise.push_back(2400); @@ -183,13 +199,14 @@ StatusCode JGTowerReader::execute() { CHECK( evtStore()->retrieve( gTowers,"GTower")); //when noise file is not available, set the noise as constant for EM, Had, and FCal respectively if(gT_noise.size()==0){ - for(const auto &gT : *gTowers){ + ATH_MSG_INFO (" Failed to find noise file, setting gTower noise manually "); + for(unsigned int i = 0; i < gTowers->size(); i++) { gT_noise.push_back(1500); } } - ATH_MSG_DEBUG ("Successfully retrieved cells, jTowers and gTowers"); + ATH_MSG_DEBUG ("Successfully retrieved cells("<< scells->size() << "), jTowers("<< jTowers->size() <<") and gTowers (" << gTowers->size() << ")"); // make and check tower mapping if(m_eventCount==1 && m_dumpTowerInfo) { @@ -246,26 +263,49 @@ StatusCode JGTowerReader::JFexAlg(const xAOD::JGTowerContainer* jTs){ // Careful to ensure the range set to be no tower double counted if( JetAlg::m_SeedMap.find("jSeeds") == JetAlg::m_SeedMap.end() ) CHECK( JetAlg::SeedGrid(jTs, "jSeeds", m_dumpSeedsEtaPhi) ); - ATH_MSG_DEBUG("JFexAlg: SeedFinding with jSeeds; m_jJet_seed_size = " << m_jJet_seed_size << ", m_jJet_max_r = " << m_jJet_max_r); - CHECK( JetAlg::SeedFinding(jTs, "jSeeds", m_jJet_seed_size, m_jJet_max_r, jT_noise, m_jJet_seed_tower_noise_multiplier, m_jJet_seed_total_noise_multiplier, m_jJet_seed_min_ET_MeV, m_debugJetAlg) ); + ATH_MSG_DEBUG( "JFexAlg: SeedFinding with jSeeds; m_jJet_seed_size = " + << m_jJet_seed_size << ", m_jJet_max_r = " << m_jJet_max_r); + + CHECK( JetAlg::SeedFinding( jTs, "jSeeds", m_jJet_seed_size, m_jJet_max_r, jT_noise, + m_jJet_seed_tower_noise_multiplier, m_jJet_seed_total_noise_multiplier, + m_jJet_seed_min_ET_MeV, m_debugJetAlg) ); + ATH_MSG_DEBUG("JFexAlg: BuildJet"); CHECK( JetAlg::BuildJet(jTs, "jSeeds", "jJets", m_jJet_r, jT_noise, m_jJet_jet_tower_noise_multiplier, m_jJet_jet_total_noise_multiplier, m_jJet_jet_min_ET_MeV, m_debugJetAlg, m_saveSeeds) ); } if(m_makeRoundJets) { if( JetAlg::m_SeedMap.find("jRoundSeeds") == JetAlg::m_SeedMap.end() ) CHECK( JetAlg::SeedGrid(jTs, "jRoundSeeds", m_dumpSeedsEtaPhi) ); + ATH_MSG_DEBUG("JFexAlg: SeedFinding with jJetSeeds; m_jJet_seed_size = " << m_jJet_seed_size << ", m_jJet_max_r = " << m_jJet_max_r); - CHECK( JetAlg::SeedFinding(jTs, "jRoundSeeds", m_jJetRound_seed_size, m_jJetRound_max_r, jT_noise, m_jJetRound_seed_tower_noise_multiplier, m_jJetRound_seed_total_noise_multiplier, m_jJetRound_seed_min_ET_MeV, m_debugJetAlg) ); + + CHECK( JetAlg::SeedFinding( jTs, "jRoundSeeds", m_jJetRound_seed_size, m_jJetRound_max_r, jT_noise, + m_jJetRound_seed_tower_noise_multiplier, m_jJetRound_seed_total_noise_multiplier, + m_jJetRound_seed_min_ET_MeV, m_debugJetAlg) ); + ATH_MSG_DEBUG("JFexAlg: BuildRoundJet"); CHECK( JetAlg::BuildRoundJet(jTs, "jRoundSeeds", "jRoundJets", m_jJetRound_r, jT_noise, m_jJetRound_jet_tower_noise_multiplier, m_jJetRound_jet_total_noise_multiplier, m_jJetRound_jet_min_ET_MeV, m_debugJetAlg, m_saveSeeds) ); } + + if(m_makeRoundLargeRJets) { + if( JetAlg::m_SeedMap.find("jRoundLargeRSeeds") == JetAlg::m_SeedMap.end() ) + CHECK( JetAlg::SeedGrid(jTs, "jRoundLargeRSeeds", m_dumpSeedsEtaPhi) ); + + ATH_MSG_DEBUG("JFexAlg: SeedFinding with jJetLargeRSeeds; m_jJet_LargeR_seed_size = " << m_jJetRound_LargeR_seed_size << ", m_jJetRound_LargeR_max_r = " << m_jJetRound_LargeR_max_r); + + CHECK( JetAlg::SeedFinding(jTs, "jRoundLargeRSeeds", m_jJetRound_LargeR_seed_size, m_jJetRound_LargeR_max_r, jT_noise, m_jJetRound_seed_tower_noise_multiplier, m_jJetRound_seed_total_noise_multiplier, m_jJetRound_LargeR_seed_min_ET_MeV, m_debugJetAlg) ); + + ATH_MSG_DEBUG("JFexAlg: BuildRoundLargeRJet"); + CHECK( JetAlg::BuildRoundJet(jTs, "jRoundLargeRSeeds", "jRoundLargeRJets", m_jJetRound_LargeR_r, jT_noise, m_jJetRound_jet_tower_noise_multiplier, m_jJetRound_jet_total_noise_multiplier, m_jJetRound_LargeR_jet_min_ET_MeV, m_debugJetAlg, m_saveSeeds) ); + } + if(m_makeJetsFromMap) { ATH_MSG_DEBUG("JFexAlg: Build jets from map"); CHECK( BuildJetsFromMap(jTs) ); } ATH_MSG_DEBUG("JFexAlg: BuildMET"); - CHECK(METAlg::Baseline_MET(jTs, "jBaseline", jT_noise, m_useNegTowers)); + CHECK(METAlg::Baseline_MET(jTs, "jNOISECUT", jT_noise, m_useNegTowers)); ATH_MSG_DEBUG("JFexAlg: Done"); return StatusCode::SUCCESS; @@ -285,7 +325,7 @@ StatusCode JGTowerReader::GFexAlg(const xAOD::JGTowerContainer* gTs){ // jet algorithms if(JetAlg::m_SeedMap.find("gSeeds") == JetAlg::m_SeedMap.end()) - CHECK(JetAlg::SeedGrid(gTs,"gSeeds",m_dumpSeedsEtaPhi)); + CHECK(JetAlg::SeedGrid(gTs,"gSeeds",m_dumpSeedsEtaPhi)); CHECK(JetAlg::SeedFinding(gTs, "gSeeds", m_gJet_seed_size, m_gJet_max_r, gT_noise, m_gJet_seed_tower_noise_multiplier, m_gJet_seed_total_noise_multiplier, m_gJet_seed_min_ET_MeV, m_debugJetAlg)); // CHECK(JetAlg::SeedFinding(gTs,gSeeds,m_gJet_seed_size,m_gJet_max_r,gJet_thr)); // the diameter of seed, and its range to be local maximum @@ -294,12 +334,35 @@ StatusCode JGTowerReader::GFexAlg(const xAOD::JGTowerContainer* gTs){ CHECK(JetAlg::BuildFatJet(*gTs, "gL1Jets", m_gJet_r, gT_noise, m_gJet_jet_tower_noise_multiplier, m_gJet_jet_total_noise_multiplier, m_gJet_jet_min_ET_MeV)); //gFEX MET algorithms - CHECK(METAlg::Baseline_MET(gTs,"gBaseline",gT_noise, m_useNegTowers)); //basic MET reconstruction with a 4 sigma noise cut applied - CHECK(METAlg::SubtractRho_MET(gTs,"rho_sub",m_useRMS,m_useMedian,m_useNegTowers)); //pileup subtracted MET, can apply dynamic noise cut and use either median or avg rho - CHECK(METAlg::Softkiller_MET(gTs, "SK", m_useNegTowers) ); //pileup subtracted SoftKiller (with avg rho) - CHECK(METAlg::JwoJ_MET(gTs,"JwoJ",m_pTcone_cut, m_useNegTowers) ); //Jets without Jets - CHECK(METAlg::Pufit_MET(gTs,"PUfit", m_useNegTowers) ); //L1 version of PUfit, using gTowers - + if(m_developerMET){ + std::vector<float> noNoise; + for(int i=0; i<=1; i++){ + bool NegTowers=false; + if(i==1)NegTowers=true; + CHECK(METAlg::Baseline_MET(gTs,Form("gNoCutsNeg%d",NegTowers),noNoise, NegTowers) );//basic MET, no threshold, pass no noise thresholds, and use negative towers + CHECK(METAlg::Baseline_MET(gTs,Form("gBaselineNeg%d",NegTowers),gT_noise, NegTowers)); //basic MET reconstruction with a 4 sigma noise cut applied + //CHECK(METAlg::SubtractRho_MET(gTs,Form("RhoSubNeg%d",NegTowers),m_useRMS,m_useMedian,NegTowers)); //pileup subtracted MET, can apply dynamic noise cut and use either median or avg rho + //No RMS + CHECK(METAlg::SubtractRho_MET(gTs,Form("RhoSubNeg%dMedian",NegTowers),0,1,NegTowers));//Median + CHECK(METAlg::SubtractRho_MET(gTs,Form("RhoSubNeg%dMean",NegTowers),0,0,NegTowers));//Mean + //Apply 3 sigma RMS + CHECK(METAlg::SubtractRho_MET(gTs,Form("RhoSubNeg%dMedianRMS",NegTowers),1,1,NegTowers)); + CHECK(METAlg::SubtractRho_MET(gTs,Form("RhoSubNeg%dMeanRMS",NegTowers),1,0,NegTowers)); + + CHECK(METAlg::Softkiller_MET(gTs, Form("SKNeg%d",NegTowers), NegTowers) ); //pileup subtracted SoftKiller (with avg rho) + CHECK(METAlg::JwoJ_MET(gTs,Form("JwoJNeg%d",NegTowers),m_pTcone_cut, NegTowers) ); //Jets without Jets + CHECK(METAlg::Pufit_MET(gTs,Form("PUfitNeg%d",NegTowers), NegTowers) ); //L1 version of PUfit, using gTowers + CHECK(METAlg::MET_etaBins(gTs, true, true, false)); //simulating the 3 fpgas in the gFEX for rho subtraction + } + + }//developer met + else{ + CHECK(METAlg::Baseline_MET(gTs,"gXENOISECUT",gT_noise, m_useNegTowers)); + CHECK(METAlg::JwoJ_MET(gTs,"gXEJWOJ",m_pTcone_cut,m_useNegTowers)); + CHECK(METAlg::SubtractRho_MET(gTs,"gXERHO",m_useRMS,m_useMedian,m_useNegTowers)); + CHECK(METAlg::Pufit_MET(gTs,"gXEPUFIT", m_useNegTowers) ); + }//main definitions for simplicity + return StatusCode::SUCCESS; } @@ -327,6 +390,7 @@ StatusCode JGTowerReader::ProcessObjects(){ } CHECK(evtStore()->record(JetCont,it->first.Data())); CHECK(evtStore()->record(JetContAux,Form("%sAux.",it->first.Data()))); + ATH_MSG_DEBUG("Recording JetRoIContainer with name " << it->first.Data() << " and size " << JetCont->size()); } // Output Seeds @@ -356,8 +420,13 @@ StatusCode JGTowerReader::ProcessObjects(){ METCont->setEnergyX(met->et*cos(met->phi)); METCont->setEnergyY(met->et*sin(met->phi)); METCont->setEnergyT(met->et); + (*acc_rho)(*METCont) = met->rho; + (*acc_mht)(*METCont) = met->mht; + (*acc_mst)(*METCont) = met->mst; CHECK(evtStore()->record(METCont,Form("%s_MET",it->first.Data()))); CHECK(evtStore()->record(METContAux,Form("%s_METAux",it->first.Data()))); + ATH_MSG_DEBUG("Recording EnergySumRoI with name " << it->first.Data() << "_MET"); + } @@ -376,7 +445,7 @@ StatusCode JGTowerReader::HistBookFill(const TString name, Int_t nbinsx, const D if(std::find(hists.begin(),hists.end(),name)==hists.end()) { TH1F*h = new TH1F( name, name, nbinsx, xbins); h->Sumw2(); - CHECK( histSvc->regHist(Form("/OUTPUT/%s",name.Data()),h)); + CHECK( histSvc->regHist(Form("/EXPERT/%s/%s", this->name().c_str(), name.Data()),h)); m_hName[name]=h; m_hName[name]->Fill(xvalue,wei); hists.push_back(name); @@ -390,7 +459,7 @@ StatusCode JGTowerReader::HistBookFill(const TString name, Int_t nbinsx, Double_ if(std::find(hists.begin(),hists.end(),name)==hists.end()) { TH1F*h=new TH1F( name, name, nbinsx, xbin_down,xbin_up); h->Sumw2(); - CHECK( histSvc->regHist(Form("/OUTPUT/%s",name.Data()),h)); + CHECK( histSvc->regHist(Form("/EXPERT/%s/%s",this->name().c_str(), name.Data()),h)); m_hName[name]=h; m_hName[name]->Fill(xvalue,wei); hists.push_back(name); @@ -421,7 +490,7 @@ std::vector<std::string> splitString(std::string parentString, std::string sep, StatusCode JGTowerReader::ReadTowerMap() { ATH_MSG_INFO("Looking for tower map at " << m_towerMap); - std::string towerMapPath = PathResolverFindDataFile(m_towerMap); + std::string towerMapPath = PathResolverFindCalibFile(m_towerMap); if(towerMapPath == "") { ATH_MSG_DEBUG("Could not resolve " << m_towerMap); return StatusCode::FAILURE; @@ -434,6 +503,7 @@ StatusCode JGTowerReader::ReadTowerMap() { bool inTowerBlock = false; bool inSeedBlock = false; bool inJetBlock = false; + int firstTowerNum = -9; int sublinecount = -1; while(getline(infileStream, line)) { @@ -451,6 +521,20 @@ StatusCode JGTowerReader::ReadTowerMap() { inJetBlock = true; if(line == "# === end jets ===") inJetBlock = false; + + std::vector<std::string> splitLine = splitString(line, ": ", true); + if(line.find("# total towers:") != std::string::npos) + totalTowers = std::stoi(splitLine[1]); + if(line.find("# towers in this map:") != std::string::npos) + towersInMap = std::stoi(splitLine[1]); + if(line.find("# total seeds:") != std::string::npos) + totalSeeds = std::stoi(splitLine[1]); + if(line.find("# seeds in this map:") != std::string::npos) + seedsInMap = std::stoi(splitLine[1]); + if(line.find("# total jets:") != std::string::npos) + totalJets = std::stoi(splitLine[1]); + if(line.find("# jets in this map:") != std::string::npos) + jetsInMap = std::stoi(splitLine[1]); continue; } @@ -465,12 +549,12 @@ StatusCode JGTowerReader::ReadTowerMap() { // check size of vector vs this entry int towerNum = std::stoi(splitLine[0]); - if(int(towerMap_towerEta.size()) != towerNum) { - ATH_MSG_ERROR("tower map being parsed incorrectly: have " << towerMap_towerEta.size() << " and expect " << towerNum); - return StatusCode::FAILURE; + if(firstTowerNum < 0) { + firstTowerNum = towerNum; } - // fill eta and phi + // fill number, eta and phi + towerMap_towerNumber.push_back(towerNum); towerMap_towerEta.push_back(std::stof(splitLine[1])); towerMap_towerPhi.push_back(std::stof(splitLine[2])); } @@ -510,7 +594,7 @@ StatusCode JGTowerReader::ReadTowerMap() { // check size of vector vs this entry int seedNum = std::stoi(splitLine[0]); - if(int(towerMap_seedEta.size()) != seedNum) { + if(seedNum<0 || (towerMap_seedEta.size() != (unsigned int)seedNum) ) { ATH_MSG_ERROR("tower map being parsed incorrectly: have " << towerMap_seedEta.size() << " and expect " << seedNum); return StatusCode::FAILURE; } @@ -552,7 +636,7 @@ StatusCode JGTowerReader::ReadTowerMap() { // check size of vector vs this entry int jetNum = std::stoi(splitLine[0]); - if(int(towerMap_jetEta.size()) != jetNum) { + if(jetNum<0 || (towerMap_jetEta.size() != (unsigned int)jetNum) ) { ATH_MSG_ERROR("tower map being parsed incorrectly: have " << towerMap_jetEta.size() << " and expect " << jetNum); return StatusCode::FAILURE; } @@ -594,6 +678,126 @@ StatusCode JGTowerReader::ReadTowerMap() { sublinecount += 1; } + ATH_MSG_DEBUG("read info from map"); + + // check that I got the numbers of towers, seeds, jets + if(totalTowers==0) { ATH_MSG_ERROR("failed to extract totalTowers"); return StatusCode::FAILURE; } + if(towersInMap==0) { ATH_MSG_ERROR("failed to extract towersInMap"); return StatusCode::FAILURE; } + if(totalSeeds==0) { ATH_MSG_ERROR("failed to extract totalSeeds"); return StatusCode::FAILURE; } + if(seedsInMap==0) { ATH_MSG_ERROR("failed to extract seedsInMap"); return StatusCode::FAILURE; } + if(totalJets==0) { ATH_MSG_ERROR("failed to extract totalJets"); return StatusCode::FAILURE; } + if(jetsInMap==0) { ATH_MSG_ERROR("failed to extract jetsInMap"); return StatusCode::FAILURE; } + + // check the numbers agree + if(towersInMap != int(towerMap_towerEta.size())) { ATH_MSG_ERROR("mismatch in number of towers"); return StatusCode::FAILURE; } + if(seedsInMap != int(towerMap_seedEta.size())) { ATH_MSG_ERROR("mismatch in number of seeds"); return StatusCode::FAILURE; } + if(jetsInMap != int(towerMap_jetEta.size())) { ATH_MSG_ERROR("mismatch in number of jets"); return StatusCode::FAILURE; } + + ATH_MSG_DEBUG("extracted numbers agree"); + + // now I have read in the map, but it might well be compressed (i.e. one quadrant, no central jets) + double tower_max_eta = *std::max_element(towerMap_towerEta.begin(), towerMap_towerEta.end()); + double tower_min_eta = *std::min_element(towerMap_towerEta.begin(), towerMap_towerEta.end()); + double tower_max_phi = *std::max_element(towerMap_towerPhi.begin(), towerMap_towerPhi.end()); + double tower_min_phi = *std::min_element(towerMap_towerPhi.begin(), towerMap_towerPhi.end()); + int tower_max_num = *std::max_element(towerMap_towerNumber.begin(), towerMap_towerNumber.end()); + int tower_min_num = *std::min_element(towerMap_towerNumber.begin(), towerMap_towerNumber.end()); + ATH_MSG_DEBUG("Tower map tower min and max eta, phi, number:" << tower_min_eta << " - " << tower_max_eta << ", " << tower_min_phi << " - " << tower_max_phi << ", " << tower_min_num << " - " << tower_max_num); + + + // what I now need to do is fill in the maps - down to eta = 0, and the other quadrants + // want to keep numberings of towers, and update numberings of seeds and jets (I think) - see /afs/cern.ch/work/c/ckaldero/public/L1CaloSim/jetTowerMaps/jFexJet_towerMap_2019-02-12*.txt + // the below is a partial and non-functional implementation + // any takers welcome...! + + // fill in empty spots + std::vector<int> indices; + if(totalTowers != towersInMap) { + ATH_MSG_DEBUG("inserting blank towers"); + + // do tower numbers + for(int i_tower=0; i_tower < totalTowers; i_tower++) { + // if i_tower is in towerMap_towerNumber initially, then count it + if(std::find(towerMap_towerNumber.begin(), towerMap_towerNumber.end(), i_tower) != towerMap_towerNumber.end()) + indices.push_back(i_tower); + if(int(towerMap_towerNumber.size()) <= i_tower) + towerMap_towerNumber.push_back(i_tower); + else if(towerMap_towerNumber.at(i_tower) != i_tower) + towerMap_towerNumber.insert(towerMap_towerNumber.begin()+i_tower, i_tower); + } + + // debug printing - which are old and which are new + for(int i_tower=0; i_tower < int(towerMap_towerNumber.size()); i_tower++) { + std::cout << i_tower; + if(std::find(indices.begin(), indices.end(), i_tower) != indices.end()) { + std::cout << " y"; + } + std::cout << std::endl; + } + + std::cout << "I'm going to exit now. Remove me when map extension is working, but until then things will likely segfault" << std::endl; + return StatusCode::FAILURE; + } + + + // this is a separate attempt to do some filling in too. But it doesn't work w.r.t. missing things at the end. + // I might be missing some at the end too - in total expect 7712 towers and 4256 seed/jet positions thanks to doubling of barrel towers + // these numbers have been read from the map - totalTowers, and numTowersInMap. Same for seeds and jets + + // innermost eta is 0.05 + if(tower_min_eta > 0.06) { + // step 1: fill with tower_min_num empty towers + std::vector<int> tempVector; + tempVector.clear(); + for(int i_tower = tower_min_num-1; i_tower >= 0; i_tower--){ + towerMap_towerEta.insert(towerMap_towerEta.begin(), -9); + towerMap_towerPhi.insert(towerMap_towerPhi.begin(), -9); + towerMap_towerNumber.insert(towerMap_towerNumber.begin(), i_tower); + towerMap_towerSampling.insert(towerMap_towerSampling.begin(), -1); + towerMap_towerLayers.insert(towerMap_towerLayers.begin(), tempVector); + } + + // step 2: iterate over one eta ring + std::vector<float> central_phis; + float eta_row = -1; + for(int i_tower = tower_min_num; i_tower < int(towerMap_towerPhi.size()); i_tower++) { + if(towerMap_towerSampling[i_tower] != 0) + continue; + if(eta_row < 0) { + eta_row = towerMap_towerEta[i_tower]; + } + if(eta_row != towerMap_towerEta[i_tower]) + continue; + central_phis.push_back(towerMap_towerPhi[i_tower]); + } + + // step 3: step down in eta + float tower_eta = tower_min_eta - 0.1; + int numRowsIn = 1; + while(tower_eta > 0) { + for(int i_phi = 0; i_phi < int(central_phis.size()); i_phi++) { + int referenceTowerNum = tower_min_num + i_phi; + int towerNum = referenceTowerNum - numRowsIn * int(central_phis.size()); + towerMap_towerEta[towerNum] = tower_eta; + towerMap_towerPhi[towerNum] = towerMap_towerPhi[referenceTowerNum]; + towerMap_towerSampling[towerNum] = towerMap_towerSampling[referenceTowerNum]; + towerMap_towerLayers[towerNum] = towerMap_towerLayers[referenceTowerNum]; + } + numRowsIn += 1; + tower_eta -= 0.1; + } + + } + + // next, expand towers to four quadrants + tower_max_eta = *std::max_element(towerMap_towerEta.begin(), towerMap_towerEta.end()); + tower_min_eta = *std::min_element(towerMap_towerEta.begin(), towerMap_towerEta.end()); + tower_max_phi = *std::max_element(towerMap_towerPhi.begin(), towerMap_towerPhi.end()); + tower_min_phi = *std::min_element(towerMap_towerPhi.begin(), towerMap_towerPhi.end()); + + ATH_MSG_DEBUG("Tower map tower min and max eta, phi, number:" << tower_min_eta << " - " << tower_max_eta << ", " << tower_min_phi << " - " << tower_max_phi << ", " << tower_min_num << " - " << tower_max_num); + + // print the outcome ATH_MSG_DEBUG("Tower map sizes: eta " << towerMap_towerEta.size() << ", phi " << towerMap_towerPhi.size() << ", layers " << towerMap_towerLayers.size() << ", sampling " << towerMap_towerSampling.size()); @@ -634,20 +838,20 @@ StatusCode JGTowerReader::ReadTowerMap() { } -StatusCode JGTowerReader::CheckTowerMap(const xAOD::JGTowerContainer*jTs) { +StatusCode JGTowerReader::CheckTowerMap(const xAOD::JGTowerContainer * jTs) { ATH_MSG_INFO("Checking tower map"); // fill std::vector<int> towerMap_AODtowersIndices - for(int i_towerMap = 0; i_towerMap < int(towerMap_towerEta.size()); i_towerMap++) { + for(unsigned int i_towerMap = 0; i_towerMap < towerMap_towerEta.size(); i_towerMap++) { int tower_index = -1; - for(int i_jTower = 0; i_jTower < int(jTs->size()); i_jTower++){ - const xAOD::JGTower *tower = jTs->at(i_jTower); - + for(unsigned int i_jTower = 0; i_jTower < jTs->size(); i_jTower++){ + const xAOD::JGTower *tower = (*jTs)[i_jTower]; + // exactly equal fails for phi (agrees to 5dp printed) - if( fabs( 1 - (towerMap_towerEta.at(i_towerMap) / tower->eta() ) ) > 0.0001) + if( fabs( 1 - (towerMap_towerEta[i_towerMap] / tower->eta() ) ) > 0.0001) continue; - if( fabs( 1 - (towerMap_towerPhi.at(i_towerMap) / tower->phi() ) ) > 0.0001) + if( fabs( 1 - (towerMap_towerPhi[i_towerMap] / tower->phi() ) ) > 0.0001) continue; if(towerMap_towerSampling.at(i_towerMap) != tower->sampling()) continue; @@ -655,7 +859,7 @@ StatusCode JGTowerReader::CheckTowerMap(const xAOD::JGTowerContainer*jTs) { break; } if(tower_index == -1) { - ATH_MSG_ERROR("Did not find matching tower in AOD for this one in the map: tower " << i_towerMap << ", eta = " << towerMap_towerEta.at(i_towerMap) << ", phi = " << towerMap_towerPhi.at(i_towerMap) << ", sampling = " << towerMap_towerSampling.at(i_towerMap)); + ATH_MSG_ERROR("Did not find matching J/GTower in AOD for this one in the map: tower " << i_towerMap << ", eta = " << towerMap_towerEta.at(i_towerMap) << ", phi = " << towerMap_towerPhi.at(i_towerMap) << ", sampling = " << towerMap_towerSampling.at(i_towerMap)); return StatusCode::FAILURE; } towerMap_AODtowersIndices.push_back(tower_index); @@ -668,8 +872,14 @@ StatusCode JGTowerReader::CheckTowerMap(const xAOD::JGTowerContainer*jTs) { StatusCode JGTowerReader::BuildJetsFromMap(const xAOD::JGTowerContainer*jTs) { ATH_MSG_DEBUG("BuildJetsFromMap: starting"); + // step 0, clear things + towerMapSeed_ET.clear(); + towerMapSeed_isLocalMax.clear(); + // step 1, make all the seeds + int nSeedsAboveThreshold = 0; + std::cout << "n seeds: " << towerMap_seedEta.size() << std::endl; for(int i_seed = 0; i_seed < int(towerMap_seedEta.size()); i_seed++) { // ATH_MSG_DEBUG("BuildJetsFromMap: making seed " << i_seed); float seed_ET = 0; @@ -683,29 +893,61 @@ StatusCode JGTowerReader::BuildJetsFromMap(const xAOD::JGTowerContainer*jTs) { if ( tower->et() > m_map_seed_tower_noise_multiplier * jT_noise.at(jT_index) ) { seed_ET += tower->et(); } - seed_totalNoise += tower->et(); + seed_totalNoise += jT_noise.at(jT_index); // ATH_MSG_DEBUG("BuildJetsFromMap: adding to seed " << i_seed << " with tower " << tower_index); } // set seed ET to 0 if it has less ET than N times the total noise over the seed towers - if(seed_ET < seed_totalNoise * m_map_seed_total_noise_multiplier) + if ( seed_ET < seed_totalNoise * m_map_seed_total_noise_multiplier ) { seed_ET = 0; - else{ + } + else { + nSeedsAboveThreshold += 1; // ATH_MSG_DEBUG("adding a non-zero seed " << i_seed << " at (eta,phi)=" << towerMap_seedEta[i_seed] << "," << towerMap_seedPhi[i_seed] << ") with ET " << seed_ET); - } towerMapSeed_ET.push_back(seed_ET); } - + ATH_MSG_DEBUG("found " << nSeedsAboveThreshold << " seeds above noise threshold"); // Step 2, check local max of seeds for(int i_seed = 0; i_seed < int(towerMap_seedEta.size()); i_seed++) { bool isLocalMax = true; - for(auto seed_index : towerMap_seedLocalMaxSeeds.at(i_seed)) { - if(towerMapSeed_ET.at(i_seed) <= towerMapSeed_ET.at(seed_index)) { - isLocalMax = false; - break; + + if(towerMapSeed_ET.at(i_seed)==0) + isLocalMax = false; + + if(isLocalMax) { + for(auto seed_index : towerMap_seedLocalMaxSeeds.at(i_seed)) { + if(towerMapSeed_ET.at(i_seed) < towerMapSeed_ET.at(seed_index)) { + isLocalMax = false; + break; + } + if(towerMapSeed_ET.at(i_seed) == towerMapSeed_ET.at(seed_index)) { + // follow firmware implementation: if Deta+Dphi>0: require >, if <0 then >=, if==0 then if Deta>0 then >, else >= + float deta = towerMap_seedEta.at(seed_index) - towerMap_seedEta.at(i_seed); + float dphi = deltaPhi(towerMap_seedPhi.at(seed_index), towerMap_seedPhi.at(i_seed)); + + if(deta + dphi > 0) { + isLocalMax = false; + ATH_MSG_DEBUG("deta+dphi>0: need >, not local max"); + } + else if(deta + dphi < 0) { + ATH_MSG_DEBUG("deta+dphi<0: only need >=, is local max"); + } + else { + ATH_MSG_DEBUG("deta+dphi==0: must go further"); + if(deta > 0) { + isLocalMax = false; + ATH_MSG_DEBUG("deta>0: need >, not local max"); + } + else { + ATH_MSG_DEBUG("deta<0: only need >=, is local max"); + } + } + + } } } + if(isLocalMax) ATH_MSG_DEBUG("BuildJetFromMap: found a local max seed at (eta,phi)=(" << towerMap_seedEta[i_seed] << "," << towerMap_seedPhi[i_seed] << ")"); diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/src/JetAlg.cxx b/Trigger/TrigT1/TrigT1CaloFexSim/src/JetAlg.cxx index 69bbf659ba3c900eb39852705a95775fa951ca99..bd27750ace3c9f9fbb0f741406b5b5cbc0c8a899 100644 --- a/Trigger/TrigT1/TrigT1CaloFexSim/src/JetAlg.cxx +++ b/Trigger/TrigT1/TrigT1CaloFexSim/src/JetAlg.cxx @@ -40,6 +40,13 @@ StatusCode JetAlg::SeedGrid(const xAOD::JGTowerContainer*towers, TString seedNam std::vector<int> SC_indices = tower->SCIndex(); if(SC_indices.size()==0) continue; + // only want EM towers as centres of barrel seeds (overlap in position with hadronic ones). 0 = barrel EM. 1 = barrel had + if(tower->sampling()==1) continue; + + // only want to seed from FCAL0 towers in forward region. sampling 2 = FCAL0, also have 3, 4 + if(tower->sampling() > 2) continue; + + //make seeds at the edge of tower in eta float candi_eta = tower->eta()-tower->deta()/2; if(tower->eta()<0) candi_eta = tower->eta()+tower->deta()/2; @@ -72,6 +79,11 @@ StatusCode JetAlg::SeedGrid(const xAOD::JGTowerContainer*towers, TString seedNam if(tower->eta()<0) eta = tower->eta()+tower->deta()/2; if(fabs(tower->eta())>3.2) eta = tower->eta(); if(eta!=seed_candi_eta.at(i)) continue; + // only want EM towers for central seeds. 0 = barrel EM. 1 = barrel had + if(tower->sampling()==1) continue; + // only want to seed from FCAL0 towers in forward region. sampling 2 = FCAL0, also have 3, 4 + if(tower->sampling() > 2) continue; + dphi = tower->dphi(); break; } @@ -111,6 +123,8 @@ StatusCode JetAlg::SeedFinding(const xAOD::JGTowerContainer*towers, TString seed if(m_debug) std::cout << "JetAlg::SeedFinding: getting " << seedname << " with size " << seed_size << " and local max range " << range << std::endl; + int nSeedsAboveThreshold = 0; + int nSeeds = 0; for(unsigned i=0; i<m_SeedMap[seedname]->eta.size(); i++){ std::vector<float> tmp_et; tmp_et.clear(); @@ -119,11 +133,16 @@ StatusCode JetAlg::SeedFinding(const xAOD::JGTowerContainer*towers, TString seed float thr=0; float eta=m_SeedMap[seedname]->eta.at(i); float phi=m_SeedMap[seedname]->phi.at(i).at(ii); + + bool seedOnTower = false; for(unsigned t=0; t<towers->size(); t++){ const xAOD::JGTower*tower = towers->at(t); - // only want EM towers for seeds. 0 = barrel EM. 1 = barrel had. 2 = forward. - if(tower->sampling()==1) continue; + // this doesn't work at counting seeds + // nSeeds is actually 4256 (taking every forward tower, rather than just FCAL0) + if(inBox(tower->eta(),eta,0.1,tower->phi(),phi,0.1)) + seedOnTower = true; if(!inBox(tower->eta(),eta,seed_size/2,tower->phi(),phi,seed_size/2)) continue; + if(noise.size() < t) { std::cout << "JetAlg::SeedFinding FATAL: the noise vector is smaller (at " << noise.size() << " entries) than the tower number " << t << " that you are attempting to use" << std::endl; return StatusCode::FAILURE; @@ -135,15 +154,23 @@ StatusCode JetAlg::SeedFinding(const xAOD::JGTowerContainer*towers, TString seed } thr += noise.at(t); } + if(et < thr*seed_total_noise_multiplier) et = 0; tmp_et.push_back(et); - if (et > 0 && m_debug) - std::cout << eta << ", " << phi << " - adding a seed " << i << " with et = " << et << " after thr = " << thr*seed_total_noise_multiplier << std::endl; + if(seedOnTower) + nSeeds += 1; + if (et > 0) { + nSeedsAboveThreshold += 1; + if(m_debug) + std::cout << "found above-noise seed (" << i << ", " << ii << ") at " << eta << ", " << phi << ", et = " << et << ", thr = " << thr*seed_total_noise_multiplier << std::endl; + } } m_SeedMap[seedname]->et.push_back(tmp_et); } - + if(m_debug) + std::cout << "in total, found " << nSeedsAboveThreshold << " seeds above noise thresholds out of " << nSeeds << " seeds" << std::endl; + // determine whether the seed is with locally maximal energy for(unsigned iseed_eta=0; iseed_eta<m_SeedMap[seedname]->eta.size(); iseed_eta++){ std::vector<bool> tmp_max; @@ -167,7 +194,7 @@ StatusCode JetAlg::SeedFinding(const xAOD::JGTowerContainer*towers, TString seed float dphi = deltaPhi(m_SeedMap[seedname]->phi.at(iseed_eta).at(iseed_phi),m_SeedMap[seedname]->phi.at(i).at(ii)); if(dphi>range) continue; - if(m_SeedMap[seedname]->et.at(iseed_eta).at(iseed_phi)<=m_SeedMap[seedname]->et.at(i).at(ii)){ + if(m_SeedMap[seedname]->et.at(iseed_eta).at(iseed_phi) < m_SeedMap[seedname]->et.at(i).at(ii)){ eta_p = false; break; } @@ -180,7 +207,7 @@ StatusCode JetAlg::SeedFinding(const xAOD::JGTowerContainer*towers, TString seed for(unsigned ii=0; ii<m_SeedMap[seedname]->phi.at(i).size(); ii++){ float dphi = deltaPhi(m_SeedMap[seedname]->phi.at(iseed_eta).at(iseed_phi),m_SeedMap[seedname]->phi.at(i).at(ii)); if(dphi>range) continue; - if(m_SeedMap[seedname]->et.at(iseed_eta).at(iseed_phi)<=m_SeedMap[seedname]->et.at(i).at(ii)){ + if(m_SeedMap[seedname]->et.at(iseed_eta).at(iseed_phi) < m_SeedMap[seedname]->et.at(i).at(ii)){ eta_n = false; break; } @@ -191,7 +218,7 @@ StatusCode JetAlg::SeedFinding(const xAOD::JGTowerContainer*towers, TString seed if(ii==iseed_phi) continue; float dphi = deltaPhi(m_SeedMap[seedname]->phi.at(iseed_eta).at(iseed_phi),m_SeedMap[seedname]->phi.at(iseed_eta).at(ii)); if(dphi>range) continue; - if(m_SeedMap[seedname]->et.at(iseed_eta).at(iseed_phi)<=m_SeedMap[seedname]->et.at(iseed_eta).at(ii)){ + if(m_SeedMap[seedname]->et.at(iseed_eta).at(iseed_phi) < m_SeedMap[seedname]->et.at(iseed_eta).at(ii)){ eta_0 = false; break; } @@ -202,11 +229,79 @@ StatusCode JetAlg::SeedFinding(const xAOD::JGTowerContainer*towers, TString seed } + // I can now have adjacent seeds with identical energy and temp_max = true; + // follow firmware implementation: if Deta+Dphi>0: require >, if <0 then >=, if==0 then if Deta>0 then >, else >= + // NB: Deta = eta(competitor seed) - eta(potential local max seed) + + for(unsigned iseed_eta=0; iseed_eta<m_SeedMap[seedname]->eta.size(); iseed_eta++){ + for(unsigned iseed_phi=0; iseed_phi<m_SeedMap[seedname]->phi.at(iseed_eta).size(); iseed_phi++){ + + // only look at local max (or equal max) seeds + if(!m_SeedMap[seedname]->local_max.at(iseed_eta).at(iseed_phi)) + continue; + + // now loop over all seeds + bool is_localMax = true; + for(unsigned iiseed_eta=0; iiseed_eta<m_SeedMap[seedname]->eta.size(); iiseed_eta++){ + for(unsigned iiseed_phi=0; iiseed_phi<m_SeedMap[seedname]->phi.at(iiseed_eta).size(); iiseed_phi++){ + + // don't compare with self! + if(iiseed_eta == iseed_eta && iiseed_phi == iseed_phi) + continue; + + // care about equal E pairs, the rest have been excluded above + if( m_SeedMap[seedname]->et.at(iseed_eta).at(iseed_phi) != m_SeedMap[seedname]->et.at(iiseed_eta).at(iiseed_phi) ) + continue; + + // I now have another seed with the same energy. Check it's within range in case of weird coincidence + float deta = m_SeedMap[seedname]->eta.at(iiseed_eta) - m_SeedMap[seedname]->eta.at(iseed_eta); + if(fabs(deta) > range) + continue; + float dphi = deltaPhi(m_SeedMap[seedname]->phi.at(iiseed_eta).at(iiseed_phi), m_SeedMap[seedname]->phi.at(iseed_eta).at(iseed_phi)); + if(fabs(dphi) > range) + continue; + + // I now have another seed that this one has to compete with + if(m_debug) + std::cout << deta << " " << dphi << std::endl; + // follow firmware implementation: if Deta+Dphi>0: require >, if <0 then >=, if==0 then if Deta>0 then >, else >= + if(deta + dphi > 0) { + is_localMax = false; + if(m_debug) + std::cout << "deta+dphi>0: need >, not local max" << std::endl; + } + else if(deta + dphi < 0) { + is_localMax = true; + if(m_debug) + std::cout << "deta+dphi<0: only need >=, is local max" << std::endl; + } + else { + if(m_debug) + std::cout << "deta+dphi==0: must go further" << std::endl; + if(deta > 0) { + is_localMax = false; + if(m_debug) + std::cout << "deta>0: need >, not local max" << std::endl; + } + else { + is_localMax = true; + if(m_debug) + std::cout << "deta<0: only need >=, is local max" << std::endl; + } + } + + } + } + m_SeedMap[seedname]->local_max.at(iseed_eta).at(iseed_phi) = is_localMax; + + } + } + return StatusCode::SUCCESS; } -StatusCode JetAlg::BuildFatJet(const xAOD::JGTowerContainer towers, TString jetname, float jet_r, std::vector<float> noise, float jet_tower_noise_multiplier, float jet_total_noise_multiplier, float jet_min_ET_MeV){ +StatusCode JetAlg::BuildFatJet(const xAOD::JGTowerContainer towers, TString jetname, float jet_r, std::vector<float> noise, float jet_tower_noise_multiplier, float /*jet_total_noise_multiplier*/, float jet_min_ET_MeV){ std::vector<TowerObject::Block> blocks; @@ -254,20 +349,23 @@ StatusCode JetAlg::BuildFatJet(const xAOD::JGTowerContainer towers, TString jetn float j_Et = 0; float j_totalnoise = 0; - + //std::cout << "cone pT : " << pt_cone << std::endl; if(pt_cone > pt_cone_cut){ + //std::cout << "cone pT : " << pt_cone << std::endl; for(unsigned int t = 0; t < towers.size(); t++){ const xAOD::JGTower* tower = towers.at(t); - if(fabs(tower->et()) < noise.at(t) * jet_tower_noise_multiplier) continue; - if(!inBox(block_eta, tower->eta(), jet_r, block_phi, tower->phi(), jet_r)) continue; + if(fabs(tower->et()) < noise.at(t) * jet_tower_noise_multiplier) continue; + if(!withinRadius(block_eta, tower->eta(), block_phi, tower->phi(), jet_r, false) ) continue; j_Et += tower->et(); - } - } - if(j_Et < jet_min_ET_MeV) continue; - if(j_Et < j_totalnoise * jet_tower_noise_multiplier) continue; - std::shared_ptr<JetAlg::L1Jet> j = std::make_shared<JetAlg::L1Jet>(block_eta, block_phi, j_Et); - js.push_back(j); + }//looping over all towers + if(j_Et < jet_min_ET_MeV) continue; + std::shared_ptr<JetAlg::L1Jet> j = std::make_shared<JetAlg::L1Jet>(block_eta, block_phi, j_Et); + js.push_back(j); + }//cone above threshold } + + m_JetMap[jetname] = js; + return StatusCode::SUCCESS; } diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/src/METAlg.cxx b/Trigger/TrigT1/TrigT1CaloFexSim/src/METAlg.cxx index 3c1197e5185dc53c4b237b61d4350e675bf39521..83b0f9ed3020e8b95dfcc4a0f7d4b77ac07a9793 100644 --- a/Trigger/TrigT1/TrigT1CaloFexSim/src/METAlg.cxx +++ b/Trigger/TrigT1/TrigT1CaloFexSim/src/METAlg.cxx @@ -17,6 +17,57 @@ #include "TrigT1CaloFexSim/Pufit.h" std::map<TString, std::shared_ptr<METAlg::MET>> METAlg::m_METMap; +//------------------------------------------------------------------------------------------------ +StatusCode METAlg::MET_etaBins(const xAOD::JGTowerContainer* towers, bool usegFEX, bool useRhoSub, bool usePUfit){ + float met_x = 0; + float met_y = 0; + std::shared_ptr<MET> met = std::make_shared<MET>(); + + if(usegFEX){ //if we are using the gFEX geometry + std::vector<const xAOD::JGTower*> fpga_a; + std::vector <const xAOD::JGTower*> fpga_b; + std::vector<const xAOD::JGTower*> fpga_c; + + //loop for splitting gTowers into 3 fpgas + for(unsigned int t = 0; t < towers->size(); t++){ + const xAOD::JGTower* tower = towers->at(t); + float eta = tower->eta(); + if(eta > -2.4 && eta < 0){ + fpga_a.push_back(tower); + } + if(eta > 0 && eta < 2.4){ + fpga_b.push_back(tower); + } + if(TMath::Abs(eta) >= 2.4){ + fpga_c.push_back(tower); + } + } + + if(useRhoSub){ + std::vector<float>* met_a = rhoSub(fpga_a, false); + std::vector<float>* met_b = rhoSub(fpga_b, false); + std::vector<float>* met_c = rhoSub(fpga_c, false); + + float met_ax = met_a->at(0)*TMath::Cos(met_a->at(1)); + float met_ay = met_a->at(0)*TMath::Sin(met_a->at(1)); + + float met_bx = met_b->at(0)*TMath::Cos(met_b->at(1)); + float met_by = met_b->at(0)*TMath::Sin(met_b->at(1)); + + float met_cx = met_c->at(0)*TMath::Cos(met_c->at(1)); + float met_cy = met_c->at(0)*TMath::Sin(met_c->at(1)); + + met_x = met_ax + met_bx + met_cx; + met_y = met_ay + met_by + met_cy; + + float met_et = TMath::Sqrt(met_x*met_x + met_y*met_y); + float phi = TMath::ACos(met_x/met_et); + met->et = met_et; + met->phi = phi; + } + } + return StatusCode::SUCCESS; +} //------------------------------------------------------------------------------------------------ StatusCode METAlg::Baseline_MET(const xAOD::JGTowerContainer*towers, TString metName, std::vector<float> noise, bool useNegTowers){ @@ -26,26 +77,29 @@ StatusCode METAlg::Baseline_MET(const xAOD::JGTowerContainer*towers, TString met for(unsigned t=0; t<towers->size(); t++){ const xAOD::JGTower* tower = towers->at(t); - if(tower->LAr_et()>0 && tower->eta()<3.2 && tower->et()<4.5*noise.at(t)) continue; - else if(tower->Tile_et()>0 && tower->eta()<3.2 && tower->et()<5.*noise.at(t)) continue; - else if(tower->LAr_et()>0 && tower->eta()>=3.2 && tower->et()<5.*noise.at(t)) continue; - else if(tower->Tile_et()>0 && tower->eta()>=3.2 && tower->et()<5.5*noise.at(t)) continue; - - + if(noise.size()>0){ + if(tower->sampling()==0 && tower->eta()<3.2 && tower->et()<4.5*noise.at(t)) continue; + else if(tower->sampling()!=0 && tower->et()<5.*noise.at(t)) continue; + } float phi=tower->phi(); float et =tower->et(); - if(!useNegTowers) et = TMath::Abs(et); + if(!useNegTowers && et < 0) continue; met_x -= et*cos(phi); met_y -= et*sin(phi); } float et_met = sqrt(met_x*met_x+met_y*met_y); - float phi_met=TMath::ACos(met_x/et_met); + + float phi_met=0; + if(et_met > 0) + phi_met = TMath::ACos(met_x/et_met); + if (met_y<0) phi_met = -phi_met; std::shared_ptr<MET> met = std::make_shared<MET>(); met->phi=phi_met; met->et = et_met; + met->rho = 0; if(m_METMap.find(metName)==m_METMap.end()) m_METMap[metName] = met; return StatusCode::SUCCESS; @@ -60,7 +114,7 @@ StatusCode METAlg::SubtractRho_MET(const xAOD::JGTowerContainer* towers, TString //can calculate rho as either the average or median gTower energy in the barrel float rho = Rho_bar(towers,0); if(useMedian) rho = Rho_med(towers, useNegTowers); - + unsigned int size = towers->size(); TH1F* h_Et = new TH1F("h_Et", "", 50, 0, 5000); @@ -68,7 +122,7 @@ StatusCode METAlg::SubtractRho_MET(const xAOD::JGTowerContainer* towers, TString for(unsigned int t = 0; t < size; t++){ const xAOD::JGTower* tower = towers->at(t); float Et = tower->et(); - if(!useNegTowers) Et = TMath::Abs(Et); + if(!useNegTowers && Et < 0) continue; h_Et->Fill(Et); } threshold = h_Et->GetRMS(); @@ -96,12 +150,14 @@ StatusCode METAlg::SubtractRho_MET(const xAOD::JGTowerContainer* towers, TString } EtMiss = TMath::Sqrt(Ex*Ex + Ey*Ey); - float phi_met=TMath::ACos(Ex/EtMiss); + float phi_met = 0; + if(EtMiss != 0) phi_met = TMath::ACos(Ex/EtMiss); if (Ey<0) phi_met = -phi_met; //ATH_MSG_INFO("Dumping event rho: " << rho ); std::shared_ptr<MET> met = std::make_shared<MET>(); met->phi=phi_met; met->et = EtMiss; + met->rho = rho; if(m_METMap.find(metName)==m_METMap.end()) m_METMap[metName] = met; delete h_Et; return StatusCode::SUCCESS; @@ -151,12 +207,14 @@ StatusCode METAlg::Softkiller_MET(const xAOD::JGTowerContainer* towers, TString } float EtMiss = TMath::Sqrt(Ex*Ex + Ey*Ey); - float phi_met = TMath::ACos(Ex/EtMiss); + float phi_met = 0; + if(EtMiss != 0) phi_met = TMath::ACos(Ex/EtMiss); if (Ey<0) phi_met = -phi_met; std::shared_ptr<MET> met = std::make_shared<MET>(); met->phi=phi_met; met->et =EtMiss; + met->rho = rho; if(m_METMap.find(metName)==m_METMap.end()) m_METMap[metName] = met; delete grid; @@ -217,12 +275,16 @@ StatusCode METAlg::JwoJ_MET(const xAOD::JGTowerContainer* towers, TString metNam b = 0.45; c = -10.; } - + //a is hard term from gBlocks with pT > 25 GEV + //b is total MET term computed from all gTowers float EtMiss = a*Et_values[1] + b*Et_values[2] + c; std::shared_ptr<MET> met = std::make_shared<MET>(); met->phi=0; met->et =EtMiss; + met->rho = 0; + met->mst = Et_values[2]; + met->mht = Et_values[1]; if(m_METMap.find(metName)==m_METMap.end()) m_METMap[metName] = met; return StatusCode::SUCCESS; @@ -231,11 +293,12 @@ StatusCode METAlg::JwoJ_MET(const xAOD::JGTowerContainer* towers, TString metNam StatusCode METAlg::Pufit_MET(const xAOD::JGTowerContainer*towers, TString metName, bool useNegTowers){ - float EtMiss = Run_PUfit(towers, 3, useNegTowers); + std::vector<float> EtMiss = Run_PUfit(towers, 3, useNegTowers); std::shared_ptr<MET> met = std::make_shared<MET>(); - met->phi=0; - met->et=EtMiss; + met->phi=EtMiss[1]; + met->et=EtMiss[0]; + met->rho = 0; if(m_METMap.find(metName)==m_METMap.end()) m_METMap[metName] = met; return StatusCode::SUCCESS; diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/test/README.md b/Trigger/TrigT1/TrigT1CaloFexSim/test/README.md new file mode 100644 index 0000000000000000000000000000000000000000..aedb725ddca31a6a5b9a0e0c9a33ab16eb856082 --- /dev/null +++ b/Trigger/TrigT1/TrigT1CaloFexSim/test/README.md @@ -0,0 +1,9 @@ +# Simulation Tests + +## Reconstruction transform +Runs the entire ATLAS conversion from ESD to AOD, turning on the L1calo simulation during this setup. + +## Standalone configuration +Runs only the L1Calo simulation without other pieces of the ATLAS software. This is good for initial algorithm testing, +running debugging or producing internal histograms one might not put into the reconstruction. + diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/test/jobOptions_full.py b/Trigger/TrigT1/TrigT1CaloFexSim/test/jobOptions_full.py new file mode 100644 index 0000000000000000000000000000000000000000..d2cf19aedc242b320c9a080c35a80fc716db3e1e --- /dev/null +++ b/Trigger/TrigT1/TrigT1CaloFexSim/test/jobOptions_full.py @@ -0,0 +1,63 @@ +theApp.EvtMax=1 #says how many events to run over. Set to -1 for all events + +debug = False +# debug = True + +#Input file +from PyUtils import AthFile +import AthenaPoolCnvSvc.ReadAthenaPool #sets up reading of POOL files (e.g. xAODs) +from AthenaCommon.AthenaCommonFlags import athenaCommonFlags +# need both of these set for some reason, just one won't work +svcMgr.EventSelector.InputCollections=["/eos/atlas/user/b/bcarlson/mc16/mc16_13TeV.361020.Pythia8EvtGen_A14NNPDF23LO_jetjet_JZ0W.recon.AOD.e3569_s3126_r10684/AOD.15453868._000192.pool.root.1"] +athenaCommonFlags.FilesInput = svcMgr.EventSelector.InputCollections + +from AthenaCommon.AlgSequence import AlgSequence +topSequence=AlgSequence() + + +#Some database settings, needed for ESD + +from AthenaCommon.DetFlags import DetFlags +DetFlags.detdescr.all_setOff() +DetFlags.detdescr.Calo_setOn() +include("RecExCond/AllDet_detDescr.py") + +#What does this do +include( "LArConditionsCommon/LArIdMap_MC_jobOptions.py" ) +#What does this do +from RegistrationServices.RegistrationServicesConf import IOVRegistrationSvc +svcMgr += IOVRegistrationSvc() +if debug: + svcMgr.IOVRegistrationSvc.OutputLevel = DEBUG +else: + svcMgr.IOVRegistrationSvc.OutputLevel = INFO +svcMgr.IOVRegistrationSvc.RecreateFolders = True +svcMgr.IOVRegistrationSvc.SVFolder = False +svcMgr.IOVRegistrationSvc.userTags = False + +#These lines are for configuring the bunch crossing tool, useful for some cases + +af = AthFile.fopen(svcMgr.EventSelector.InputCollections[0]) +isMC = 'IS_SIMULATION' in af.fileinfos['evt_type'] + +from TrigBunchCrossingTool.BunchCrossingTool import BunchCrossingTool +if isMC: ToolSvc += BunchCrossingTool( "MC" ) +else: ToolSvc += BunchCrossingTool( "LHC" ) + +#Create an output root file + +svcMgr.MessageSvc.defaultLimit = 999 +svcMgr += CfgMgr.THistSvc() +svcMgr.THistSvc.Output += ["OUTPUT DATAFILE='myOutputFile.root' OPT='RECREATE'"] + +#Output AOD + +from OutputStreamAthenaPool.MultipleStreamManager import MSMgr +StreamAOD_Augmented = MSMgr.NewPoolRootStream( "StreamXAOD", "xAOD.out.root" ) + + +#Enable jFEX and gFEX algorithms + +include("TrigT1CaloFexSim/createL1SimulationSequence.py") + +StreamAOD_Augmented.AddItem ( ["xAOD::JetRoIContainer#*","xAOD::JetRoIAuxContainer#*","xAOD::EnergySumRoI#*","xAOD::EnergySumRoIAuxInfo#*"]) diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/test/run_data.sh b/Trigger/TrigT1/TrigT1CaloFexSim/test/run_data.sh new file mode 100755 index 0000000000000000000000000000000000000000..f63c0d0471ed8cce93475f63414042e16dab8ea3 --- /dev/null +++ b/Trigger/TrigT1/TrigT1CaloFexSim/test/run_data.sh @@ -0,0 +1,9 @@ +Reco_tf.py --inputESDFile "/eos/atlas/user/b/bcarlson/Run3Tmp/data18_13TeV.00360026.physics_EnhancedBias.recon.ESD.r10978_r11179_r11185/ESD.16781883._001043.pool.root.1" \ + --outputAODFile "out.AOD.root" \ + --maxEvents=10 \ + --preExec \ + "from TrigT1CaloFexSim.L1SimulationControlFlags import L1Phase1SimFlags as simflags; simflags.CTP.RunCTPEmulation=False; simflags.Calo.RunFexAlgorithms=False;simflags.Calo.ApplySCQual=False; simflags.Calo.SCellType=\"Emulated\"" \ + --postInclude \ + "default:PyJobTransforms/UseFrontier.py" \ + "TrigT1CaloFexSim/createL1SimulationSequence.py" \ + --autoConfiguration="everything" \ \ No newline at end of file diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/test/run_reco.sh b/Trigger/TrigT1/TrigT1CaloFexSim/test/run_reco.sh new file mode 100755 index 0000000000000000000000000000000000000000..48558306af216d28eeba9fa312eb4aa79d3895aa --- /dev/null +++ b/Trigger/TrigT1/TrigT1CaloFexSim/test/run_reco.sh @@ -0,0 +1,10 @@ +Reco_tf.py --inputESDFile "/eos/atlas/user/b/bcarlson/Run3Tmp/mc16_13TeV.361020.Pythia8EvtGen_A14NNPDF23LO_jetjet_JZ0W.recon.ESD.e3569_s3126_r10684/ESD.15453868._000040.pool.root.1" \ + --outputAODFile "out.AOD.root" \ + --maxEvents=10 \ + --preExec \ + "from TrigT1CaloFexSim.L1SimulationControlFlags import L1Phase1SimFlags as simflags; simflags.CTP.RunCTPEmulation=False; simflags.Calo.QualBitMask=0x40; simflags.Calo.SCellType=\"Pulse\"; simflags.Calo.ApplySCQual=True" \ + --postInclude \ + "default:PyJobTransforms/UseFrontier.py" \ + "TrigT1CaloFexSim/createL1SimulationSequence.py" \ + "LArROD/LArConfigureCablingSCFolder.py" \ + --autoConfiguration="everything" \ diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/utils/towerMapping/forwardJetMaps/README.md b/Trigger/TrigT1/TrigT1CaloFexSim/utils/towerMapping/forwardJetMaps/README.md new file mode 100644 index 0000000000000000000000000000000000000000..da14750748be582ddd4cc3bf7cfc206c75128993 --- /dev/null +++ b/Trigger/TrigT1/TrigT1CaloFexSim/utils/towerMapping/forwardJetMaps/README.md @@ -0,0 +1,43 @@ + +* The files are only for the positive (eta, phi) quadrant, can be extended to the full area by duplicating with ((+,+), (+,-), (-,+), (-,-)) +* The ge / gt logic needs to be hard-coded rather than part of the maps - it needs to be swapped for (-,-) and rotated for (+,-) and (-,+) +* Propose to merge the maps and hard-code the logic +* Values of phi > pi are to be interpreted as phi = -pi + phi +* The first entry in each file is the centre of the jet / seed or the seed one is evaluating local maxima for. + + + + +For more information, contact Marcel Weirich <maweiric@uni-mainz.de> + + +Hi Will, + +attached you'll find a first version of the lists for the Sliding +Window Algorithm in the forward region (for jFEX it's 1.6 < eta < 4.9). +The files with "_1.dat" cover 0 < phi < 1.6, the files with "_2.dat" +cover 1.6 < phi < 3.2 (you can merge them if you want ... for me/us +it's more convenient). +As you might know the FCal is symmetric by 180 degree rotation and +fully symmetric from the A to the C side. + +Each line in each file corresponds to a single list for a given tower +position. +The first column gives you the phi coordinate of the tower positions, +the second gives you eta. +The remaining values are pairs of phi and eta coordinates. +All values are separated using tabs. + +The files "seed_#.dat" contain towers you need to build seed energies. +The files "searchG_#.dat" contain seeds (central tower position of a +seed) you need to compare to the central seed (first coordinate pair +in each line) with a ">" (greater) operator. +The files "searchGe_#.dat" contain seeds (central tower position of a +seed) you need to compare to the central seed (first coordinate pair +in each line) with a ">=" (greater or equal) operator. +The files "jet_#.dat" contain towers you need to build jet energies. + +Please let me know if you see problems with the format etc. + +Cheers, +Marcel \ No newline at end of file diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/utils/towerMapping/forwardJetMaps/plotForwardMaps.py b/Trigger/TrigT1/TrigT1CaloFexSim/utils/towerMapping/forwardJetMaps/plotForwardMaps.py new file mode 100644 index 0000000000000000000000000000000000000000..00357316143e0ea09dd9cf21c31b4e1a028cf94f --- /dev/null +++ b/Trigger/TrigT1/TrigT1CaloFexSim/utils/towerMapping/forwardJetMaps/plotForwardMaps.py @@ -0,0 +1,84 @@ + +filenames = { + 'seeds localMax_ge': 'searchGe_*.dat', + 'seeds localMax_gt': 'searchG_*.dat', + 'towers in seed': 'seed_*.dat', + 'towers in jet': 'jet_*.dat', + } + +order = ['seeds localMax_ge', 'seeds localMax_gt', 'towers in seed', 'towers in jet'] + +jetRadius = 0.4 +seedSize = 0.3 + +markers = { + 'seeds localMax_ge': 'D', + 'seeds localMax_gt': 's', + 'towers in seed': 'o', + 'towers in jet': '^', + } + +sizes = { + 'seeds localMax_ge': 6, + 'seeds localMax_gt': 7, + 'towers in seed': 5, + 'towers in jet': 2, + } + +njets = 9999 + +from glob import glob +lines = {} +for key in filenames: + lines[key] = [] + for filename in sorted(glob(filenames[key])): + thisfile = open(filename) + lines[key] += thisfile.readlines() + thisfile.close() + +import matplotlib.pyplot as plt +fig, ax = plt.subplots(figsize=(4.8,5.6)) + + +for i_jet in range(len(lines[key])): + if i_jet >= njets: + break + if (i_jet % 10) == 0: + print "plotting jet", i_jet, "of", min(njets, len(lines[key])) + line = {} + for key in lines: + line[key] = lines[key][i_jet].strip() + + + for key in order: + if key not in line: + continue + + phis = [float(i) for i in line[key].split()[::2]] + etas = [float(i) for i in line[key].split()[1::2]] + + # for i in range(len(phis)): + # print phis[i], etas[i] + + ax.plot( etas, phis, markers[key], markersize=sizes[key], label=key) + + if order.index(key) == len(order)-1: + centre, = ax.plot( etas[0], phis[0], 'x', markersize=4, color='black' ) + # circle radius [jetRadius] around this point + circle = plt.Circle((etas[0], phis[0]), jetRadius, fill=False) + ax.add_artist(circle) + # square side [seedSize] around this point + rectangle = plt.Rectangle((etas[0]-0.5*seedSize, phis[0]-0.5*seedSize), seedSize, seedSize, fill=False ) + ax.add_artist(rectangle) + + ax.set_xlim(etas[0]-jetRadius*1.2, etas[0]+jetRadius*1.2) + ax.set_ylim(phis[0]-jetRadius*1.2, phis[0]+jetRadius*1.6) + ax.set_xlabel('$\eta$') + ax.set_ylabel('$\phi$') + plt.legend(ncol=2) + plt.savefig('plots/seed' + str(i_jet) + '_EtaPhi.png', bbox_inches="tight", dpi=200) + + centre.remove() + circle.remove() + rectangle.remove() + plt.cla() diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/utils/towerMapping/makeMap.py b/Trigger/TrigT1/TrigT1CaloFexSim/utils/towerMapping/makeMap.py index f539b56583037180da51f6d1e3e505baf7052eb9..f3bbade91bdbcff2afe204f9777046edb3ae875d 100644 --- a/Trigger/TrigT1/TrigT1CaloFexSim/utils/towerMapping/makeMap.py +++ b/Trigger/TrigT1/TrigT1CaloFexSim/utils/towerMapping/makeMap.py @@ -16,9 +16,21 @@ # N eta phi [detector_eta detector_phi] # Seed number # Towers numbers in jet +# +# The calorimeters are symmetric, such that maps need only cover towers, seeds and jets centred on the positive quadrant +# If onlyPositiveQuadrant is True then jets will only be written in (+,+). Taking n as the number of towers in a quadrant: +# - 0->n-1 is (+,+) +# - n->2n-1 is (+,-), with an addition of n corresponding to phi -> -phi +# - 2n->3n-1 is (-,+), with an addition of 2n corresponding to eta -> -eta +# - 3n->4n-1 is (-,-), with an addition of 3n corresponding to phi -> -phi and eta -> -eta +# +# Furthermore, once you get to central eta, nothing changes, so the c++ can just step in eta jumps of 0.1 +# If skipCentral is True, then after three values of eta including only sampling 1 and 0 the map will stop +# # =============================== import os, sys +from copy import deepcopy from datetime import datetime from readTowerInfo import readTowerInfo, shuffleTowerInfo from plotMap import plotJFexJets @@ -36,27 +48,41 @@ def main(): # what to output makePlots = False plotDir = 'plots' - plotDir = 'plots_test' writeToTextFile = True # textFileName = 'jFexJet_towerMap_2019-01-08.txt' - textFileName = 'jFexJet_towerMap_2019-01-29.txt' + # textFileName = 'jFexJet_towerMap_2019-01-29.txt' + # textFileName = 'jFexJet_towerMap_2019-02-07.txt' + # textFileName = 'jFexJet_towerMap_2019-02-08.txt' + # textFileName = 'jFexJet_towerMap_2019-02-12.txt' + # textFileName = 'jFexJet_towerMap_2019-02-12_notruncation.txt' + # textFileName = 'jFexJet_towerMap_2019-02-15.txt' + textFileName = 'jFexJet_towerMap_2019-03-13.txt' # textFileName = 'jFexJet_towerMap_test.txt' # some parameters # seeds seedShape = 'rectangular' - seedSamplings = [0,2] + seedSamplings = [0,2] # towers that seeds and jets will be centred on seedSize = [0.3,0.3] seedIncludeExact = False # local max - seed_localmax_dphi = 0.39 - seed_localmax_deta = 0.39 + seed_localmax_dphi = 0.26 + seed_localmax_deta = 0.26 # jets jetShape = 'circular' jetRadius = 0.39 jetIncludeExact = False + # don't write superfluous information + # onlyPositiveQuadrant = True + # skipCentral = True + onlyPositiveQuadrant = False + skipCentral = False + # eta=2.45 is the last "full" barrel eta (i.e. 0.1 spacing in phi) + # go down to 2.45-jetRadius-0.05-0.1 + centralBoundary = 2.45 - jetRadius - 0.05 - 0.1 + # attempt to open output file if writeToTextFile: if os.path.isfile(textFileName): @@ -70,6 +96,21 @@ def main(): if writeToTextFile: outfile.write('# map created by ' + os.environ['USER'] + ' on ' + datetime.strftime(datetime.now(), '%Y-%m-%d %H:%M') + '\n') outfile.write('#\n') + + if onlyPositiveQuadrant: + outfile.write('# only positive quadrant:\n') + outfile.write("""# The calorimeters are symmetric, such that this map only covers towers, seeds and jets centred on the positive quadrant +# Taking n as the number of towers in a quadrant: +# - 0->n-1 is (+,+) +# - n->2n-1 is (+,-), with an addition of n corresponding to phi -> -phi +# - 2n->3n-1 is (-,+), with an addition of 2n corresponding to eta -> -eta +# - 3n->4n-1 is (-,-), with an addition of 3n corresponding to phi -> -phi and eta -> -eta +# +""") + + if skipCentral: + outfile.write('# skipping central etas (i.e. eta < ' + str(centralBoundary) + ')\n') + outfile.write('#\n') # what did I run over outfile.write('# ran over ' + str(nJets).replace('-1','all') + ' jets with eta range ' + str(etaRange) + ' and phi range ' + str(phiRange) + '\n') @@ -94,11 +135,8 @@ def main(): # Cut down towers to iterate over for jet/seed centers - towers = [] + towers_allSamplings = [] for t in range(len(allTowers)): - # towers in the central region have two entries: sampling==0 and sampling==1 - if allTowers[t]['sampling'] == 1: - continue # only consider an eta-phi rectangle if requested if phiRange != None: if allTowers[t]['phi'] < phiRange[0] or allTowers[t]['phi'] > phiRange[1]: @@ -106,28 +144,122 @@ def main(): if etaRange != None: if allTowers[t]['eta'] < etaRange[0] or allTowers[t]['eta'] > etaRange[1]: continue - towers.append(allTowers[t]) - + towers_allSamplings.append(allTowers[t]) + + towers_seedSamplings = [] + seedLayerTowerIndices = getTowerIndicesInLayers(towers_allSamplings, samplings = seedSamplings, layers = None) + for t in seedLayerTowerIndices: + towers_seedSamplings.append(towers_allSamplings[t]) + + # reshuffle the towers - keep only those in positive quadrant, renumber the others + # the aim: iterate over positive quadrants, make seeds, jets, local maxes from all quadrants + if onlyPositiveQuadrant: + # make set of towers with only positive eta, phi + towers_allSamplings_orig = deepcopy(towers_allSamplings) + towers_allSamplings = [] + count = 0 + for t in range(len(towers_allSamplings_orig)): + if towers_allSamplings_orig[t]['eta'] < 0 or towers_allSamplings_orig[t]['phi'] < 0: + continue + tower = deepcopy(towers_allSamplings_orig[t]) + tower['num'] = count + towers_allSamplings.append(tower) + count += 1 + count = 0 + + towers_seedSamplings_orig = deepcopy(towers_seedSamplings) + towers_seedSamplings = [] + for t in range(len(towers_seedSamplings_orig)): + if towers_seedSamplings_orig[t]['eta'] < 0 or towers_seedSamplings_orig[t]['phi'] < 0: + continue + tower = deepcopy(towers_seedSamplings_orig[t]) + tower['num'] = count + towers_seedSamplings.append(tower) + count += 1 + + # mirror these in phi + towers_allSamplings_allQuadrants = deepcopy(towers_allSamplings) + count = len(towers_allSamplings) + for t in range(len(towers_allSamplings)): + tower = deepcopy(towers_allSamplings[t]) + tower['phi'] = tower['phi']*-1 + tower['num'] = count + towers_allSamplings_allQuadrants.append(tower) + count += 1 + + towers_seedSamplings_allQuadrants = deepcopy(towers_seedSamplings) + count = len(towers_seedSamplings) + for t in range(len(towers_seedSamplings)): + tower = deepcopy(towers_seedSamplings[t]) + tower['phi'] = tower['phi']*-1 + tower['num'] = count + towers_seedSamplings_allQuadrants.append(tower) + count += 1 + + # mirror these in eta + count = len(towers_allSamplings_allQuadrants) + for t in range(len(towers_allSamplings_allQuadrants)): + tower = deepcopy(towers_allSamplings_allQuadrants[t]) + tower['eta'] = tower['eta']*-1 + tower['num'] = count + towers_allSamplings_allQuadrants.append(tower) + count += 1 + count = len(towers_seedSamplings_allQuadrants) + for t in range(len(towers_seedSamplings_allQuadrants)): + tower = deepcopy(towers_seedSamplings_allQuadrants[t]) + tower['eta'] = tower['eta']*-1 + tower['num'] = count + towers_seedSamplings_allQuadrants.append(tower) + count += 1 + + # some checks + if len(towers_allSamplings_orig) != len(towers_allSamplings_allQuadrants): + sys.exit("missed / gained some towers in the reshuffling (all): " + str(len(towers_allSamplings_orig)) + " " + str(len(towers_allSamplings_allQuadrants))) + if 4*len(towers_allSamplings) != len(towers_allSamplings_allQuadrants): + sys.exit("missed / gained some towers in the duplication (all): " + str(4*len(towers_allSamplings)) + " " + str(len(towers_allSamplings_allQuadrants))) + if len(towers_seedSamplings_orig) != len(towers_seedSamplings_allQuadrants): + sys.exit("missed / gained some towers in the reshuffling (seed): " + str(len(towers_seedSamplings_orig)) + " " + str(len(towers_seedSamplings_allQuadrants))) + if 4*len(towers_seedSamplings) != len(towers_seedSamplings_allQuadrants): + sys.exit("missed / gained some towers in the duplication (seed): " + str(4*len(towers_seedSamplings)) + " " + str(len(towers_seedSamplings_allQuadrants))) + + else: + towers_allSamplings_allQuadrants = deepcopy(towers_allSamplings) + towers_seedSamplings_allQuadrants = deepcopy(towers_seedSamplings) + + totalNumTowers = len(towers_allSamplings_allQuadrants) + totalNumSeeds = len(towers_seedSamplings_allQuadrants) + totalNumJets = len(towers_seedSamplings_allQuadrants) + + print len(towers_seedSamplings), len(towers_seedSamplings_allQuadrants), len(towers_allSamplings), len(towers_allSamplings_allQuadrants) + + # print towers_allSamplings_orig[123] + # print towers_allSamplings[123] + # print towers_allSamplings_allQuadrants[123] + # print towers_allSamplings_allQuadrants[123+len(towers_allSamplings)] + # print towers_allSamplings_allQuadrants[123+2*len(towers_allSamplings)] + # print towers_allSamplings_allQuadrants[123+3*len(towers_allSamplings)] + + # iterate over all remaining towers, fill jet and seed lists jetList = [] seedList = [] - for t in range(len(towers)): + for t in range(len(towers_seedSamplings)): + if skipCentral: + if towers_seedSamplings[t]['eta'] < centralBoundary: + continue + # for now, just does centering on tower centres # seeds thisSeedList = {} - thisSeedList['eta'] = towers[t]['eta'] - thisSeedList['phi'] = towers[t]['phi'] + thisSeedList['eta'] = towers_seedSamplings[t]['eta'] + thisSeedList['phi'] = towers_seedSamplings[t]['phi'] - # layer 0, square 3x3 towers in central region - # - let's say this means 0.3 x 0.3, centred on tower, everywhere - # - modify to include layer info when present - seedLayerTowers = getTowersInLayers(towers, samplings = seedSamplings, layers = None) if seedShape == 'rectangular': - thisSeedList['towers'] = towersInRectangle(towers, t, seedLayerTowers, seedSize[0], seedSize[1], includeExact = seedIncludeExact) + thisSeedList['towers'] = towersInRectangle(towers_allSamplings_allQuadrants, towers_seedSamplings[t], seedSize[0], seedSize[1], includeExact = seedIncludeExact) else: sys.exit("I don't know what to do with seedShape = " + seedShape) seedList.append(thisSeedList) @@ -135,17 +267,16 @@ def main(): # jets thisJetList = {} - thisJetList['eta'] = towers[t]['eta'] - thisJetList['phi'] = towers[t]['phi'] + thisJetList['eta'] = towers_seedSamplings[t]['eta'] + thisJetList['phi'] = towers_seedSamplings[t]['phi'] # which seed to use? If both centred in the same place, as here, then use the latest seed thisJetList['seed'] = len(seedList)-1 # all towers with radius < jetRadius # this includes some you mightn't want - better not to bank on exact precision and round down a little - allTowers = range(len(towers)) if jetShape == 'circular': - thisJetList['towers'] = towersInRadius(towers, t, allTowers, jetRadius, includeExact = jetIncludeExact) + thisJetList['towers'] = towersInRadius(towers_allSamplings_allQuadrants, towers_seedSamplings[t], jetRadius, includeExact = jetIncludeExact) else: sys.exit("I don't know what to do with jetShape = " + jetShape) jetList.append(thisJetList) @@ -158,8 +289,8 @@ def main(): break if len(jetList) % 100 == 0: - print 'done', len(jetList), 'of', len(towers), 'jets' - print 'done', len(jetList), 'of', len(towers), 'jets' + print 'done', len(jetList), 'of', len(towers_seedSamplings), 'jets' + print 'done', len(jetList), 'of', len(towers_seedSamplings), 'jets' # now do the seed local maxima @@ -169,37 +300,52 @@ def main(): eta = jetList[i]['eta'] phi = jetList[i]['phi'] seedList[i]['localMaxSeeds'] = [] - for j in range(len(seedList)): - if abs( eta - seedList[j]['eta'] ) > seed_localmax_deta: + # iterate over all positions, not just +ve quadrant + for j in range(len(towers_seedSamplings_allQuadrants)): + if abs( eta - towers_seedSamplings_allQuadrants[j]['eta'] ) > seed_localmax_deta: continue - if abs( deltaPhi(phi, seedList[j]['phi']) ) > seed_localmax_dphi: + if abs( deltaPhi(phi, towers_seedSamplings_allQuadrants[j]['phi']) ) > seed_localmax_dphi: continue seedList[i]['localMaxSeeds'].append(j) if i in seedList[i]['localMaxSeeds']: seedList[i]['localMaxSeeds'].remove(i) print 'done seed local maxima' - + # write them out to the already opened outfile if writeToTextFile: print 'writing to outfile', textFileName + numTowersInMap = 0 + for t in range(len(towers_allSamplings)): + if skipCentral: + if towers_allSamplings[t]['eta'] < centralBoundary: + continue + numTowersInMap += 1 + # towers outfile.write('# === start towers ===\n') + outfile.write('# total towers: ' + str(totalNumTowers) + '\n') + outfile.write('# towers in this map: ' + str(numTowersInMap) + '\n') outfile.write('# number eta phi\n') outfile.write('# sampling\n') outfile.write('# supercell layers\n') outfile.write('#\n') - for t in range(len(towers)): - outfile.write('{0} {1} {2}\n'.format(t, towers[t]['eta'], towers[t]['phi'])) - outfile.write(' ' + str(towers[t]['sampling'])+'\n') - outfile.write(' ' + ' '.join([str(l) for l in towers[t]['layers']])+'\n') + for t in range(len(towers_allSamplings)): + if skipCentral: + if towers_allSamplings[t]['eta'] < centralBoundary: + continue + outfile.write('{0} {1} {2}\n'.format(t, towers_allSamplings[t]['eta'], towers_allSamplings[t]['phi'])) + outfile.write(' ' + str(towers_allSamplings[t]['sampling'])+'\n') + outfile.write(' ' + ' '.join([str(l) for l in towers_allSamplings[t]['layers']])+'\n') outfile.write('# === end towers ===\n') # seeds outfile.write('#\n') outfile.write('# === start seeds ===\n') + outfile.write('# total seeds: ' + str(totalNumSeeds) + '\n') + outfile.write('# seeds in this map: ' + str(len(seedList)) + '\n') outfile.write('# number eta phi\n') outfile.write('# towers\n') outfile.write('# local max seeds\n') @@ -212,7 +358,9 @@ def main(): # jets outfile.write('#\n') - outfile.write('# === start jets ===\n') + outfile.write('# === start jets ===\n') + outfile.write('# total jets: ' + str(totalNumJets) + '\n') + outfile.write('# jets in this map: ' + str(len(jetList)) + '\n') outfile.write('# number eta phi\n') outfile.write('# seed\n') outfile.write('# towers\n') @@ -225,12 +373,12 @@ def main(): outfile.write('# === end jets ===\n') if makePlots: - plotJFexJets(towers, seedList, jetList, plotDir) + plotJFexJets(towers_allSamplings, seedList, jetList, plotDir) -def getTowersInLayers(towers, samplings = None, layers = None): +def getTowerIndicesInLayers(towers, samplings = None, layers = None): good_indices = [] for t in range(len(towers)): if samplings != None: @@ -244,13 +392,13 @@ def getTowersInLayers(towers, samplings = None, layers = None): return good_indices -def towersInRectangle(towers, thisTowerIndex, tower_indices, eta_size, phi_size, includeExact = True): +def towersInRectangle(towers, thisTower, eta_size, phi_size, includeExact = True): goodTowers = [] - for t in tower_indices: - delta_eta = abs(towers[t]['eta'] - towers[thisTowerIndex]['eta']) - delta_phi = abs(deltaPhi(towers[t]['phi'], towers[thisTowerIndex]['phi'])) + for t in range(len(towers)): + delta_eta = abs(towers[t]['eta'] - thisTower['eta']) + delta_phi = abs(deltaPhi(towers[t]['phi'], thisTower['phi'])) if includeExact: if delta_eta > eta_size / 2.0: @@ -266,19 +414,19 @@ def towersInRectangle(towers, thisTowerIndex, tower_indices, eta_size, phi_size, goodTowers.append(t) # print delta_eta, delta_phi - # print towers[thisTowerIndex]['eta'], towers[thisTowerIndex]['phi'], towers[t]['eta'], towers[t]['phi'] + # print thisTower['eta'], thisTower['phi'], towers[t]['eta'], towers[t]['phi'] return goodTowers -def towersInRadius(towers, thisTowerIndex, tower_indices, radius, includeExact = True): +def towersInRadius(towers, thisTower, radius, includeExact = True): goodTowers = [] - for t in tower_indices: + for t in range(len(towers)): - delta_eta = abs(towers[t]['eta'] - towers[thisTowerIndex]['eta']) - delta_phi = abs(deltaPhi(towers[t]['phi'], towers[thisTowerIndex]['phi'])) + delta_eta = abs(towers[t]['eta'] - thisTower['eta']) + delta_phi = abs(deltaPhi(towers[t]['phi'], thisTower['phi'])) delta_R = math.sqrt(delta_eta**2 + delta_phi**2) if includeExact: diff --git a/Trigger/TrigT1/TrigT1CaloFexSim/utils/towerMapping/towerDump.txt b/Trigger/TrigT1/TrigT1CaloFexSim/utils/towerMapping/towerDump.txt deleted file mode 100644 index 471ccb210dd2c4cb044dabe624e04ad9d8470093..0000000000000000000000000000000000000000 --- a/Trigger/TrigT1/TrigT1CaloFexSim/utils/towerMapping/towerDump.txt +++ /dev/null @@ -1,15424 +0,0 @@ -tower 0: eta = -0.05, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 172.977 - sampling = 0, 10 SCIndices: 6592 (2), 7552 (0), 7616 (1), 7680 (1), 7744 (2), 11328 (0), 11392 (1), 11456 (1), 11520 (2), 14976 (2), -tower 1: eta = -0.05, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 40.8871 - sampling = 0, 10 SCIndices: 6593 (2), 7553 (0), 7617 (1), 7681 (1), 7745 (2), 11329 (0), 11393 (1), 11457 (1), 11521 (2), 14977 (2), -tower 2: eta = -0.05, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6594 (2), 7554 (0), 7618 (1), 7682 (1), 7746 (2), 11330 (0), 11394 (1), 11458 (2), 11522 (2), 14978 (2), -tower 3: eta = -0.05, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 233.492 - sampling = 0, 10 SCIndices: 6595 (2), 7555 (0), 7619 (1), 7683 (1), 7747 (2), 11331 (0), 11395 (1), 11459 (2), 11523 (2), 14979 (2), -tower 4: eta = -0.05, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 91.2172 - sampling = 0, 10 SCIndices: 6596 (2), 7556 (0), 7620 (1), 7684 (1), 7748 (2), 11332 (0), 11396 (1), 11460 (2), 11524 (2), 14980 (2), -tower 5: eta = -0.05, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6597 (2), 7557 (0), 7621 (1), 7685 (1), 7749 (2), 11333 (0), 11397 (1), 11461 (2), 11525 (2), 14981 (2), -tower 6: eta = -0.05, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 424.09 - sampling = 0, 10 SCIndices: 6598 (2), 7558 (0), 7622 (1), 7686 (1), 7750 (2), 11334 (0), 11398 (1), 11462 (2), 11526 (2), 14982 (2), -tower 7: eta = -0.05, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6599 (2), 7559 (0), 7623 (1), 7687 (1), 7751 (2), 11335 (0), 11399 (1), 11463 (2), 11527 (2), 14983 (2), -tower 8: eta = -0.05, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 707.364 - sampling = 0, 10 SCIndices: 6600 (2), 7560 (0), 7624 (1), 7688 (2), 7752 (2), 11336 (0), 11400 (1), 11464 (2), 11528 (2), 14984 (2), -tower 9: eta = -0.05, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 26.9573 - sampling = 0, 10 SCIndices: 6601 (2), 7561 (0), 7625 (1), 7689 (2), 7753 (2), 11337 (0), 11401 (1), 11465 (2), 11529 (2), 14985 (2), -tower 10: eta = -0.05, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6602 (2), 7562 (0), 7626 (1), 7690 (2), 7754 (2), 11338 (0), 11402 (1), 11466 (2), 11530 (2), 14986 (2), -tower 11: eta = -0.05, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 453.494 - sampling = 0, 10 SCIndices: 6603 (2), 7563 (0), 7627 (1), 7691 (2), 7755 (2), 11339 (0), 11403 (1), 11467 (2), 11531 (2), 14987 (2), -tower 12: eta = -0.05, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 141.806 - sampling = 0, 10 SCIndices: 6604 (2), 7564 (0), 7628 (1), 7692 (2), 7756 (2), 11340 (1), 11404 (1), 11468 (2), 11532 (2), 14988 (2), -tower 13: eta = -0.05, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 348.431 - sampling = 0, 10 SCIndices: 6605 (2), 7565 (0), 7629 (1), 7693 (2), 7757 (2), 11341 (1), 11405 (1), 11469 (2), 11533 (2), 14989 (2), -tower 14: eta = -0.05, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = -34.0858 - sampling = 0, 10 SCIndices: 6606 (2), 7566 (0), 7630 (1), 7694 (2), 7758 (2), 11342 (1), 11406 (1), 11470 (2), 11534 (2), 14990 (2), -tower 15: eta = -0.05, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = -140.605 - sampling = 0, 10 SCIndices: 6607 (2), 7567 (0), 7631 (1), 7695 (2), 7759 (2), 11343 (1), 11407 (1), 11471 (2), 11535 (2), 14991 (2), -tower 16: eta = -0.05, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 388.09 - sampling = 0, 10 SCIndices: 6608 (2), 7568 (0), 7632 (1), 7696 (2), 7760 (2), 11344 (1), 11408 (1), 11472 (2), 11536 (2), 14992 (2), -tower 17: eta = -0.05, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 546.973 - sampling = 0, 10 SCIndices: 6609 (2), 7569 (0), 7633 (1), 7697 (2), 7761 (2), 11345 (1), 11409 (1), 11473 (2), 11537 (2), 14993 (2), -tower 18: eta = -0.05, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 250.254 - sampling = 0, 10 SCIndices: 6610 (2), 7570 (1), 7634 (1), 7698 (2), 7762 (2), 11346 (1), 11410 (1), 11474 (2), 11538 (2), 14994 (2), -tower 19: eta = -0.05, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 404.724 - sampling = 0, 10 SCIndices: 6611 (2), 7571 (1), 7635 (1), 7699 (2), 7763 (2), 11347 (1), 11411 (1), 11475 (2), 11539 (2), 14995 (2), -tower 20: eta = -0.05, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6612 (2), 7572 (1), 7636 (1), 7700 (2), 7764 (2), 11348 (1), 11412 (1), 11476 (2), 11540 (2), 14996 (2), -tower 21: eta = -0.05, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 255.024 - sampling = 0, 10 SCIndices: 6613 (2), 7573 (1), 7637 (1), 7701 (2), 7765 (2), 11349 (1), 11413 (1), 11477 (2), 11541 (2), 14997 (2), -tower 22: eta = -0.05, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 275.972 - sampling = 0, 10 SCIndices: 6614 (2), 7574 (1), 7638 (1), 7702 (2), 7766 (2), 11350 (1), 11414 (1), 11478 (2), 11542 (2), 14998 (2), -tower 23: eta = -0.05, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = -11.9715 - sampling = 0, 10 SCIndices: 6615 (2), 7575 (1), 7639 (1), 7703 (2), 7767 (2), 11351 (1), 11415 (1), 11479 (2), 11543 (2), 14999 (2), -tower 24: eta = -0.05, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 244.33 - sampling = 0, 10 SCIndices: 6616 (2), 7576 (1), 7640 (1), 7704 (2), 7768 (2), 11352 (1), 11416 (1), 11480 (2), 11544 (2), 15000 (2), -tower 25: eta = -0.05, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6617 (2), 7577 (1), 7641 (1), 7705 (2), 7769 (2), 11353 (1), 11417 (1), 11481 (2), 11545 (2), 15001 (2), -tower 26: eta = -0.05, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 472.955 - sampling = 0, 10 SCIndices: 6618 (2), 7578 (1), 7642 (1), 7706 (2), 7770 (2), 11354 (1), 11418 (1), 11482 (2), 11546 (2), 15002 (2), -tower 27: eta = -0.05, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = -11.8123 - sampling = 0, 10 SCIndices: 6619 (2), 7579 (1), 7643 (1), 7707 (2), 7771 (2), 11355 (1), 11419 (1), 11483 (2), 11547 (2), 15003 (2), -tower 28: eta = -0.05, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 363.819 - sampling = 0, 10 SCIndices: 6620 (2), 7580 (1), 7644 (1), 7708 (2), 7772 (2), 11356 (1), 11420 (1), 11484 (2), 11548 (2), 15004 (2), -tower 29: eta = -0.05, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 357.829 - sampling = 0, 10 SCIndices: 6621 (2), 7581 (1), 7645 (1), 7709 (2), 7773 (2), 11357 (1), 11421 (1), 11485 (2), 11549 (2), 15005 (2), -tower 30: eta = -0.05, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 123.593 - sampling = 0, 10 SCIndices: 6622 (2), 7582 (1), 7646 (1), 7710 (2), 7774 (2), 11358 (1), 11422 (1), 11486 (2), 11550 (2), 15006 (2), -tower 31: eta = -0.05, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 95.0968 - sampling = 0, 10 SCIndices: 6623 (2), 7583 (1), 7647 (1), 7711 (2), 7775 (2), 11359 (1), 11423 (1), 11487 (2), 11551 (2), 15007 (2), -tower 32: eta = -0.05, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 275.167 - sampling = 0, 10 SCIndices: 6624 (2), 7584 (1), 7648 (1), 7712 (2), 7776 (2), 11360 (1), 11424 (1), 11488 (2), 11552 (2), 15008 (2), -tower 33: eta = -0.05, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 221.28 - sampling = 0, 10 SCIndices: 6625 (2), 7585 (1), 7649 (1), 7713 (2), 7777 (2), 11361 (1), 11425 (1), 11489 (2), 11553 (2), 15009 (2), -tower 34: eta = -0.05, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 288.443 - sampling = 0, 10 SCIndices: 6626 (2), 7586 (1), 7650 (1), 7714 (2), 7778 (2), 11362 (1), 11426 (1), 11490 (2), 11554 (2), 15010 (2), -tower 35: eta = -0.05, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 209.453 - sampling = 0, 10 SCIndices: 6627 (2), 7587 (1), 7651 (1), 7715 (2), 7779 (2), 11363 (1), 11427 (1), 11491 (2), 11555 (2), 15011 (2), -tower 36: eta = -0.05, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 225.34 - sampling = 0, 10 SCIndices: 6628 (2), 7588 (1), 7652 (1), 7716 (2), 7780 (2), 11364 (1), 11428 (1), 11492 (2), 11556 (2), 15012 (2), -tower 37: eta = -0.05, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 146.6 - sampling = 0, 10 SCIndices: 6629 (2), 7589 (1), 7653 (1), 7717 (2), 7781 (2), 11365 (1), 11429 (1), 11493 (2), 11557 (2), 15013 (2), -tower 38: eta = -0.05, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 267.135 - sampling = 0, 10 SCIndices: 6630 (2), 7590 (1), 7654 (1), 7718 (2), 7782 (2), 11366 (1), 11430 (1), 11494 (2), 11558 (2), 15014 (2), -tower 39: eta = -0.05, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 554.568 - sampling = 0, 10 SCIndices: 6631 (2), 7591 (1), 7655 (1), 7719 (2), 7783 (2), 11367 (1), 11431 (1), 11495 (2), 11559 (2), 15015 (2), -tower 40: eta = -0.05, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 786.534 - sampling = 0, 10 SCIndices: 6632 (2), 7592 (1), 7656 (1), 7720 (2), 7784 (2), 11368 (1), 11432 (1), 11496 (2), 11560 (2), 15016 (2), -tower 41: eta = -0.05, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 583.053 - sampling = 0, 10 SCIndices: 6633 (2), 7593 (1), 7657 (1), 7721 (2), 7785 (2), 11369 (1), 11433 (1), 11497 (2), 11561 (2), 15017 (2), -tower 42: eta = -0.05, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 615.842 - sampling = 0, 10 SCIndices: 6634 (2), 7594 (1), 7658 (1), 7722 (2), 7786 (2), 11370 (1), 11434 (1), 11498 (2), 11562 (2), 15018 (2), -tower 43: eta = -0.05, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 812.22 - sampling = 0, 10 SCIndices: 6635 (2), 7595 (1), 7659 (1), 7723 (2), 7787 (2), 11371 (1), 11435 (1), 11499 (2), 11563 (2), 15019 (2), -tower 44: eta = -0.05, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6636 (2), 7596 (1), 7660 (1), 7724 (2), 7788 (2), 11372 (1), 11436 (1), 11500 (2), 11564 (2), 15020 (2), -tower 45: eta = -0.05, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6637 (2), 7597 (1), 7661 (1), 7725 (2), 7789 (2), 11373 (1), 11437 (1), 11501 (2), 11565 (2), 15021 (2), -tower 46: eta = -0.05, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6638 (2), 7598 (1), 7662 (1), 7726 (2), 7790 (2), 11374 (1), 11438 (1), 11502 (2), 11566 (2), 15022 (2), -tower 47: eta = -0.05, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 558.336 - sampling = 0, 10 SCIndices: 6639 (2), 7599 (1), 7663 (1), 7727 (2), 7791 (2), 11375 (1), 11439 (1), 11503 (2), 11567 (2), 15023 (2), -tower 48: eta = -0.05, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 70.4145 - sampling = 0, 10 SCIndices: 6640 (2), 7600 (1), 7664 (1), 7728 (2), 7792 (2), 11376 (1), 11440 (1), 11504 (2), 11568 (2), 15024 (2), -tower 49: eta = -0.05, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 653.04 - sampling = 0, 10 SCIndices: 6641 (2), 7601 (1), 7665 (1), 7729 (2), 7793 (2), 11377 (1), 11441 (1), 11505 (2), 11569 (2), 15025 (2), -tower 50: eta = -0.05, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 107.817 - sampling = 0, 10 SCIndices: 6642 (3), 7602 (1), 7666 (1), 7730 (2), 7794 (2), 11378 (1), 11442 (1), 11506 (2), 11570 (2), 15026 (2), -tower 51: eta = -0.05, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 286.59 - sampling = 0, 10 SCIndices: 6643 (3), 7603 (1), 7667 (1), 7731 (2), 7795 (2), 11379 (1), 11443 (1), 11507 (2), 11571 (2), 15027 (2), -tower 52: eta = -0.05, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 920.615 - sampling = 0, 10 SCIndices: 6644 (3), 7604 (1), 7668 (1), 7732 (2), 7796 (2), 11380 (1), 11444 (1), 11508 (2), 11572 (3), 15028 (2), -tower 53: eta = -0.05, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6645 (3), 7605 (1), 7669 (1), 7733 (2), 7797 (2), 11381 (1), 11445 (1), 11509 (2), 11573 (3), 15029 (2), -tower 54: eta = -0.05, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 834.669 - sampling = 0, 10 SCIndices: 6646 (3), 7606 (1), 7670 (1), 7734 (2), 7798 (2), 11382 (1), 11446 (1), 11510 (2), 11574 (3), 15030 (2), -tower 55: eta = -0.05, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 120.946 - sampling = 0, 10 SCIndices: 6647 (3), 7607 (1), 7671 (1), 7735 (2), 7799 (2), 11383 (1), 11447 (1), 11511 (2), 11575 (3), 15031 (2), -tower 56: eta = -0.05, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6648 (3), 7608 (1), 7672 (1), 7736 (2), 7800 (2), 11384 (1), 11448 (1), 11512 (2), 11576 (3), 15032 (2), -tower 57: eta = -0.05, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 99.031 - sampling = 0, 10 SCIndices: 6649 (3), 7609 (1), 7673 (1), 7737 (2), 7801 (2), 11385 (1), 11449 (1), 11513 (2), 11577 (3), 15033 (2), -tower 58: eta = -0.05, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 322.866 - sampling = 0, 10 SCIndices: 6650 (3), 7610 (1), 7674 (1), 7738 (2), 7802 (3), 11386 (1), 11450 (1), 11514 (2), 11578 (3), 15034 (2), -tower 59: eta = -0.05, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 689.808 - sampling = 0, 10 SCIndices: 6651 (3), 7611 (1), 7675 (1), 7739 (2), 7803 (3), 11387 (1), 11451 (1), 11515 (2), 11579 (3), 15035 (2), -tower 60: eta = -0.05, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = -57.1794 - sampling = 0, 10 SCIndices: 6652 (3), 7612 (1), 7676 (1), 7740 (2), 7804 (3), 11388 (1), 11452 (1), 11516 (2), 11580 (3), 15036 (2), -tower 61: eta = -0.05, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 40.0567 - sampling = 0, 10 SCIndices: 6653 (3), 7613 (1), 7677 (1), 7741 (2), 7805 (3), 11389 (1), 11453 (1), 11517 (2), 11581 (3), 15037 (2), -tower 62: eta = -0.05, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 146.695 - sampling = 0, 10 SCIndices: 6654 (3), 7614 (1), 7678 (1), 7742 (2), 7806 (3), 11390 (1), 11454 (1), 11518 (2), 11582 (3), 15038 (2), -tower 63: eta = -0.05, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 186.525 - sampling = 0, 10 SCIndices: 6655 (3), 7615 (1), 7679 (1), 7743 (2), 7807 (3), 11391 (1), 11455 (1), 11519 (2), 11583 (3), 15039 (2), -tower 64: eta = -0.15, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 176.961 - sampling = 0, 10 SCIndices: 6656 (3), 7808 (3), 7872 (1), 7936 (1), 8000 (2), 11584 (3), 11648 (1), 11712 (1), 11776 (2), 15040 (2), -tower 65: eta = -0.15, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 541.803 - sampling = 0, 10 SCIndices: 6657 (3), 7809 (3), 7873 (1), 7937 (1), 8001 (2), 11585 (3), 11649 (1), 11713 (1), 11777 (2), 15041 (2), -tower 66: eta = -0.15, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 88.8898 - sampling = 0, 10 SCIndices: 6658 (3), 7810 (3), 7874 (1), 7938 (1), 8002 (2), 11586 (3), 11650 (1), 11714 (1), 11778 (2), 15042 (2), -tower 67: eta = -0.15, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6659 (3), 7811 (3), 7875 (1), 7939 (1), 8003 (2), 11587 (3), 11651 (1), 11715 (1), 11779 (2), 15043 (2), -tower 68: eta = -0.15, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 98.1879 - sampling = 0, 10 SCIndices: 6660 (3), 7812 (3), 7876 (1), 7940 (1), 8004 (2), 11588 (3), 11652 (1), 11716 (1), 11780 (2), 15044 (2), -tower 69: eta = -0.15, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = -27.9809 - sampling = 0, 10 SCIndices: 6661 (3), 7813 (3), 7877 (1), 7941 (1), 8005 (2), 11589 (3), 11653 (1), 11717 (1), 11781 (2), 15045 (2), -tower 70: eta = -0.15, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 513.09 - sampling = 0, 10 SCIndices: 6662 (3), 7814 (3), 7878 (1), 7942 (1), 8006 (2), 11590 (3), 11654 (1), 11718 (1), 11782 (2), 15046 (2), -tower 71: eta = -0.15, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 381.92 - sampling = 0, 10 SCIndices: 6663 (3), 7815 (3), 7879 (1), 7943 (1), 8007 (2), 11591 (3), 11655 (1), 11719 (1), 11783 (2), 15047 (2), -tower 72: eta = -0.15, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = -44.5189 - sampling = 0, 10 SCIndices: 6664 (3), 7816 (3), 7880 (1), 7944 (1), 8008 (2), 11592 (3), 11656 (1), 11720 (1), 11784 (2), 15048 (2), -tower 73: eta = -0.15, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 625.123 - sampling = 0, 10 SCIndices: 6665 (3), 7817 (3), 7881 (1), 7945 (1), 8009 (2), 11593 (3), 11657 (1), 11721 (1), 11785 (2), 15049 (2), -tower 74: eta = -0.15, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 619.258 - sampling = 0, 10 SCIndices: 6666 (3), 7818 (3), 7882 (1), 7946 (1), 8010 (2), 11594 (3), 11658 (1), 11722 (1), 11786 (2), 15050 (2), -tower 75: eta = -0.15, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = -50.7973 - sampling = 0, 10 SCIndices: 6667 (3), 7819 (3), 7883 (1), 7947 (1), 8011 (2), 11595 (3), 11659 (1), 11723 (1), 11787 (2), 15051 (2), -tower 76: eta = -0.15, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 99.1549 - sampling = 0, 10 SCIndices: 6668 (3), 7820 (3), 7884 (1), 7948 (1), 8012 (2), 11596 (3), 11660 (1), 11724 (1), 11788 (2), 15052 (3), -tower 77: eta = -0.15, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 37.006 - sampling = 0, 10 SCIndices: 6669 (3), 7821 (3), 7885 (1), 7949 (1), 8013 (2), 11597 (3), 11661 (1), 11725 (1), 11789 (2), 15053 (3), -tower 78: eta = -0.15, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 52.5565 - sampling = 0, 10 SCIndices: 6670 (0), 7822 (3), 7886 (1), 7950 (1), 8014 (2), 11598 (3), 11662 (1), 11726 (1), 11790 (2), 15054 (3), -tower 79: eta = -0.15, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 434.739 - sampling = 0, 10 SCIndices: 6671 (0), 7823 (3), 7887 (1), 7951 (1), 8015 (2), 11599 (3), 11663 (1), 11727 (1), 11791 (2), 15055 (3), -tower 80: eta = -0.15, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 511.631 - sampling = 0, 10 SCIndices: 6672 (0), 7824 (3), 7888 (1), 7952 (1), 8016 (2), 11600 (0), 11664 (1), 11728 (1), 11792 (2), 15056 (3), -tower 81: eta = -0.15, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6673 (0), 7825 (3), 7889 (1), 7953 (1), 8017 (2), 11601 (0), 11665 (1), 11729 (1), 11793 (2), 15057 (3), -tower 82: eta = -0.15, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = -307.808 - sampling = 0, 10 SCIndices: 6674 (0), 7826 (3), 7890 (1), 7954 (1), 8018 (2), 11602 (0), 11666 (1), 11730 (1), 11794 (2), 15058 (3), -tower 83: eta = -0.15, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6675 (0), 7827 (3), 7891 (1), 7955 (1), 8019 (2), 11603 (0), 11667 (1), 11731 (1), 11795 (2), 15059 (3), -tower 84: eta = -0.15, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6676 (0), 7828 (3), 7892 (1), 7956 (1), 8020 (2), 11604 (0), 11668 (1), 11732 (1), 11796 (2), 15060 (3), -tower 85: eta = -0.15, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 186.203 - sampling = 0, 10 SCIndices: 6677 (0), 7829 (3), 7893 (1), 7957 (1), 8021 (2), 11605 (0), 11669 (1), 11733 (1), 11797 (2), 15061 (3), -tower 86: eta = -0.15, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 410.976 - sampling = 0, 10 SCIndices: 6678 (0), 7830 (0), 7894 (1), 7958 (1), 8022 (2), 11606 (0), 11670 (1), 11734 (1), 11798 (2), 15062 (3), -tower 87: eta = -0.15, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = -157.644 - sampling = 0, 10 SCIndices: 6679 (0), 7831 (0), 7895 (1), 7959 (1), 8023 (2), 11607 (0), 11671 (1), 11735 (1), 11799 (2), 15063 (3), -tower 88: eta = -0.15, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6680 (0), 7832 (0), 7896 (1), 7960 (1), 8024 (2), 11608 (0), 11672 (1), 11736 (1), 11800 (2), 15064 (3), -tower 89: eta = -0.15, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 149.952 - sampling = 0, 10 SCIndices: 6681 (0), 7833 (0), 7897 (1), 7961 (1), 8025 (2), 11609 (0), 11673 (1), 11737 (1), 11801 (2), 15065 (3), -tower 90: eta = -0.15, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 325.432 - sampling = 0, 10 SCIndices: 6682 (0), 7834 (0), 7898 (1), 7962 (1), 8026 (2), 11610 (0), 11674 (1), 11738 (1), 11802 (2), 15066 (3), -tower 91: eta = -0.15, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 312.248 - sampling = 0, 10 SCIndices: 6683 (0), 7835 (0), 7899 (1), 7963 (1), 8027 (2), 11611 (0), 11675 (1), 11739 (1), 11803 (2), 15067 (3), -tower 92: eta = -0.15, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 165.755 - sampling = 0, 10 SCIndices: 6684 (0), 7836 (0), 7900 (1), 7964 (1), 8028 (2), 11612 (0), 11676 (1), 11740 (1), 11804 (2), 15068 (3), -tower 93: eta = -0.15, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 405.027 - sampling = 0, 10 SCIndices: 6685 (0), 7837 (0), 7901 (1), 7965 (1), 8029 (2), 11613 (0), 11677 (1), 11741 (1), 11805 (2), 15069 (3), -tower 94: eta = -0.15, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 366.834 - sampling = 0, 10 SCIndices: 6686 (0), 7838 (0), 7902 (1), 7966 (1), 8030 (2), 11614 (0), 11678 (1), 11742 (1), 11806 (2), 15070 (3), -tower 95: eta = -0.15, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6687 (0), 7839 (0), 7903 (1), 7967 (1), 8031 (2), 11615 (0), 11679 (1), 11743 (1), 11807 (2), 15071 (3), -tower 96: eta = -0.15, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 919.043 - sampling = 0, 10 SCIndices: 6688 (0), 7840 (0), 7904 (1), 7968 (1), 8032 (2), 11616 (0), 11680 (1), 11744 (1), 11808 (2), 15072 (3), -tower 97: eta = -0.15, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 483.971 - sampling = 0, 10 SCIndices: 6689 (0), 7841 (0), 7905 (1), 7969 (1), 8033 (2), 11617 (0), 11681 (1), 11745 (1), 11809 (2), 15073 (3), -tower 98: eta = -0.15, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 510.101 - sampling = 0, 10 SCIndices: 6690 (0), 7842 (0), 7906 (1), 7970 (1), 8034 (2), 11618 (0), 11682 (1), 11746 (1), 11810 (2), 15074 (3), -tower 99: eta = -0.15, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 176.725 - sampling = 0, 10 SCIndices: 6691 (0), 7843 (0), 7907 (1), 7971 (1), 8035 (2), 11619 (0), 11683 (1), 11747 (1), 11811 (2), 15075 (3), -tower 100: eta = -0.15, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 193.838 - sampling = 0, 10 SCIndices: 6692 (0), 7844 (0), 7908 (1), 7972 (1), 8036 (2), 11620 (0), 11684 (1), 11748 (2), 11812 (2), 15076 (3), -tower 101: eta = -0.15, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6693 (0), 7845 (0), 7909 (1), 7973 (1), 8037 (2), 11621 (0), 11685 (1), 11749 (2), 11813 (2), 15077 (3), -tower 102: eta = -0.15, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 320.217 - sampling = 0, 10 SCIndices: 6694 (0), 7846 (0), 7910 (1), 7974 (1), 8038 (2), 11622 (0), 11686 (1), 11750 (2), 11814 (2), 15078 (3), -tower 103: eta = -0.15, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 417.573 - sampling = 0, 10 SCIndices: 6695 (0), 7847 (0), 7911 (1), 7975 (1), 8039 (2), 11623 (0), 11687 (1), 11751 (2), 11815 (2), 15079 (3), -tower 104: eta = -0.15, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 226.26 - sampling = 0, 10 SCIndices: 6696 (0), 7848 (0), 7912 (1), 7976 (1), 8040 (2), 11624 (0), 11688 (1), 11752 (2), 11816 (2), 15080 (0), -tower 105: eta = -0.15, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6697 (0), 7849 (0), 7913 (1), 7977 (1), 8041 (2), 11625 (0), 11689 (1), 11753 (2), 11817 (2), 15081 (0), -tower 106: eta = -0.15, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 619.995 - sampling = 0, 10 SCIndices: 6698 (0), 7850 (0), 7914 (1), 7978 (2), 8042 (2), 11626 (0), 11690 (1), 11754 (2), 11818 (2), 15082 (0), -tower 107: eta = -0.15, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 149.958 - sampling = 0, 10 SCIndices: 6699 (0), 7851 (0), 7915 (1), 7979 (2), 8043 (2), 11627 (0), 11691 (1), 11755 (2), 11819 (2), 15083 (0), -tower 108: eta = -0.15, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 95.5643 - sampling = 0, 10 SCIndices: 6700 (1), 7852 (0), 7916 (1), 7980 (2), 8044 (2), 11628 (0), 11692 (1), 11756 (2), 11820 (2), 15084 (0), -tower 109: eta = -0.15, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6701 (1), 7853 (0), 7917 (1), 7981 (2), 8045 (2), 11629 (0), 11693 (1), 11757 (2), 11821 (2), 15085 (0), -tower 110: eta = -0.15, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = -38.477 - sampling = 0, 10 SCIndices: 6702 (1), 7854 (0), 7918 (1), 7982 (2), 8046 (2), 11630 (1), 11694 (1), 11758 (2), 11822 (2), 15086 (0), -tower 111: eta = -0.15, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 201.191 - sampling = 0, 10 SCIndices: 6703 (1), 7855 (0), 7919 (1), 7983 (2), 8047 (2), 11631 (1), 11695 (1), 11759 (2), 11823 (2), 15087 (0), -tower 112: eta = -0.15, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6704 (1), 7856 (0), 7920 (1), 7984 (2), 8048 (2), 11632 (1), 11696 (1), 11760 (2), 11824 (2), 15088 (0), -tower 113: eta = -0.15, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 102.155 - sampling = 0, 10 SCIndices: 6705 (1), 7857 (0), 7921 (1), 7985 (2), 8049 (2), 11633 (1), 11697 (1), 11761 (2), 11825 (2), 15089 (0), -tower 114: eta = -0.15, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 288.179 - sampling = 0, 10 SCIndices: 6706 (1), 7858 (0), 7922 (1), 7986 (2), 8050 (2), 11634 (1), 11698 (1), 11762 (2), 11826 (2), 15090 (0), -tower 115: eta = -0.15, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 187.055 - sampling = 0, 10 SCIndices: 6707 (1), 7859 (0), 7923 (1), 7987 (2), 8051 (2), 11635 (1), 11699 (1), 11763 (2), 11827 (2), 15091 (0), -tower 116: eta = -0.15, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 656.274 - sampling = 0, 10 SCIndices: 6708 (1), 7860 (1), 7924 (1), 7988 (2), 8052 (2), 11636 (1), 11700 (1), 11764 (2), 11828 (2), 15092 (0), -tower 117: eta = -0.15, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 479.441 - sampling = 0, 10 SCIndices: 6709 (1), 7861 (1), 7925 (1), 7989 (2), 8053 (2), 11637 (1), 11701 (1), 11765 (2), 11829 (2), 15093 (0), -tower 118: eta = -0.15, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 157.41 - sampling = 0, 10 SCIndices: 6710 (1), 7862 (1), 7926 (1), 7990 (2), 8054 (2), 11638 (1), 11702 (1), 11766 (2), 11830 (2), 15094 (0), -tower 119: eta = -0.15, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 375.903 - sampling = 0, 10 SCIndices: 6711 (1), 7863 (1), 7927 (1), 7991 (2), 8055 (2), 11639 (1), 11703 (1), 11767 (2), 11831 (2), 15095 (0), -tower 120: eta = -0.15, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 305.832 - sampling = 0, 10 SCIndices: 6712 (1), 7864 (1), 7928 (1), 7992 (2), 8056 (2), 11640 (1), 11704 (1), 11768 (2), 11832 (2), 15096 (0), -tower 121: eta = -0.15, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 231.307 - sampling = 0, 10 SCIndices: 6713 (1), 7865 (1), 7929 (1), 7993 (2), 8057 (2), 11641 (1), 11705 (1), 11769 (2), 11833 (2), 15097 (0), -tower 122: eta = -0.15, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6714 (1), 7866 (1), 7930 (1), 7994 (2), 8058 (2), 11642 (1), 11706 (1), 11770 (2), 11834 (2), 15098 (0), -tower 123: eta = -0.15, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 149.735 - sampling = 0, 10 SCIndices: 6715 (1), 7867 (1), 7931 (1), 7995 (2), 8059 (2), 11643 (1), 11707 (1), 11771 (2), 11835 (2), 15099 (0), -tower 124: eta = -0.15, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = -10.8433 - sampling = 0, 10 SCIndices: 6716 (1), 7868 (1), 7932 (1), 7996 (2), 8060 (2), 11644 (1), 11708 (1), 11772 (2), 11836 (2), 15100 (0), -tower 125: eta = -0.15, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 184.158 - sampling = 0, 10 SCIndices: 6717 (1), 7869 (1), 7933 (1), 7997 (2), 8061 (2), 11645 (1), 11709 (1), 11773 (2), 11837 (2), 15101 (0), -tower 126: eta = -0.15, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = -24.8181 - sampling = 0, 10 SCIndices: 6718 (1), 7870 (1), 7934 (1), 7998 (2), 8062 (2), 11646 (1), 11710 (1), 11774 (2), 11838 (2), 15102 (0), -tower 127: eta = -0.15, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 234.267 - sampling = 0, 10 SCIndices: 6719 (1), 7871 (1), 7935 (1), 7999 (2), 8063 (2), 11647 (1), 11711 (1), 11775 (2), 11839 (2), 15103 (0), -tower 128: eta = -0.25, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6720 (1), 8064 (2), 8128 (0), 8192 (1), 8256 (1), 11840 (2), 11904 (0), 11968 (1), 12032 (1), 15104 (0), -tower 129: eta = -0.25, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 156.793 - sampling = 0, 10 SCIndices: 6721 (1), 8065 (2), 8129 (0), 8193 (1), 8257 (1), 11841 (2), 11905 (0), 11969 (1), 12033 (1), 15105 (0), -tower 130: eta = -0.25, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 205.214 - sampling = 0, 10 SCIndices: 6722 (1), 8066 (2), 8130 (0), 8194 (1), 8258 (1), 11842 (2), 11906 (0), 11970 (1), 12034 (1), 15106 (0), -tower 131: eta = -0.25, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 282.013 - sampling = 0, 10 SCIndices: 6723 (1), 8067 (2), 8131 (0), 8195 (1), 8259 (1), 11843 (2), 11907 (0), 11971 (1), 12035 (1), 15107 (0), -tower 132: eta = -0.25, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 78.0349 - sampling = 0, 10 SCIndices: 6724 (1), 8068 (2), 8132 (0), 8196 (1), 8260 (1), 11844 (2), 11908 (0), 11972 (1), 12036 (1), 15108 (0), -tower 133: eta = -0.25, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6725 (1), 8069 (2), 8133 (0), 8197 (1), 8261 (1), 11845 (2), 11909 (0), 11973 (1), 12037 (1), 15109 (0), -tower 134: eta = -0.25, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6726 (1), 8070 (2), 8134 (0), 8198 (1), 8262 (1), 11846 (2), 11910 (0), 11974 (1), 12038 (2), 15110 (1), -tower 135: eta = -0.25, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 342.115 - sampling = 0, 10 SCIndices: 6727 (1), 8071 (2), 8135 (0), 8199 (1), 8263 (1), 11847 (2), 11911 (0), 11975 (1), 12039 (2), 15111 (1), -tower 136: eta = -0.25, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 281.034 - sampling = 0, 10 SCIndices: 6728 (1), 8072 (2), 8136 (0), 8200 (1), 8264 (1), 11848 (2), 11912 (0), 11976 (1), 12040 (2), 15112 (1), -tower 137: eta = -0.25, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 365.783 - sampling = 0, 10 SCIndices: 6729 (1), 8073 (2), 8137 (0), 8201 (1), 8265 (1), 11849 (2), 11913 (0), 11977 (1), 12041 (2), 15113 (1), -tower 138: eta = -0.25, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 151.524 - sampling = 0, 10 SCIndices: 6730 (1), 8074 (2), 8138 (0), 8202 (1), 8266 (1), 11850 (2), 11914 (0), 11978 (1), 12042 (2), 15114 (1), -tower 139: eta = -0.25, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 350.953 - sampling = 0, 10 SCIndices: 6731 (1), 8075 (2), 8139 (0), 8203 (1), 8267 (1), 11851 (2), 11915 (0), 11979 (1), 12043 (2), 15115 (1), -tower 140: eta = -0.25, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 701.768 - sampling = 0, 10 SCIndices: 6732 (1), 8076 (2), 8140 (0), 8204 (1), 8268 (2), 11852 (2), 11916 (0), 11980 (1), 12044 (2), 15116 (1), -tower 141: eta = -0.25, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6733 (1), 8077 (2), 8141 (0), 8205 (1), 8269 (2), 11853 (2), 11917 (0), 11981 (1), 12045 (2), 15117 (1), -tower 142: eta = -0.25, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 375.341 - sampling = 0, 10 SCIndices: 6734 (1), 8078 (2), 8142 (0), 8206 (1), 8270 (2), 11854 (2), 11918 (0), 11982 (1), 12046 (2), 15118 (1), -tower 143: eta = -0.25, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 91.8051 - sampling = 0, 10 SCIndices: 6735 (1), 8079 (2), 8143 (0), 8207 (1), 8271 (2), 11855 (2), 11919 (0), 11983 (1), 12047 (2), 15119 (1), -tower 144: eta = -0.25, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 329.507 - sampling = 0, 10 SCIndices: 6736 (1), 8080 (2), 8144 (0), 8208 (1), 8272 (2), 11856 (2), 11920 (1), 11984 (1), 12048 (2), 15120 (1), -tower 145: eta = -0.25, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 1089.42 - sampling = 0, 10 SCIndices: 6737 (1), 8081 (2), 8145 (0), 8209 (1), 8273 (2), 11857 (2), 11921 (1), 11985 (1), 12049 (2), 15121 (1), -tower 146: eta = -0.25, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 505.912 - sampling = 0, 10 SCIndices: 6738 (1), 8082 (2), 8146 (0), 8210 (1), 8274 (2), 11858 (2), 11922 (1), 11986 (1), 12050 (2), 15122 (1), -tower 147: eta = -0.25, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 1461.39 - sampling = 0, 10 SCIndices: 6739 (1), 8083 (2), 8147 (0), 8211 (1), 8275 (2), 11859 (2), 11923 (1), 11987 (1), 12051 (2), 15123 (1), -tower 148: eta = -0.25, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = -0.978132 - sampling = 0, 10 SCIndices: 6740 (1), 8084 (2), 8148 (0), 8212 (1), 8276 (2), 11860 (2), 11924 (1), 11988 (1), 12052 (2), 15124 (1), -tower 149: eta = -0.25, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 186.279 - sampling = 0, 10 SCIndices: 6741 (1), 8085 (2), 8149 (0), 8213 (1), 8277 (2), 11861 (2), 11925 (1), 11989 (1), 12053 (2), 15125 (1), -tower 150: eta = -0.25, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 619.167 - sampling = 0, 10 SCIndices: 6742 (1), 8086 (2), 8150 (1), 8214 (1), 8278 (2), 11862 (3), 11926 (1), 11990 (1), 12054 (2), 15126 (1), -tower 151: eta = -0.25, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 98.0646 - sampling = 0, 10 SCIndices: 6743 (1), 8087 (2), 8151 (1), 8215 (1), 8279 (2), 11863 (3), 11927 (1), 11991 (1), 12055 (2), 15127 (1), -tower 152: eta = -0.25, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 53.2183 - sampling = 0, 10 SCIndices: 6744 (1), 8088 (2), 8152 (1), 8216 (1), 8280 (2), 11864 (3), 11928 (1), 11992 (1), 12056 (2), 15128 (1), -tower 153: eta = -0.25, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 1036.97 - sampling = 0, 10 SCIndices: 6745 (1), 8089 (2), 8153 (1), 8217 (1), 8281 (2), 11865 (3), 11929 (1), 11993 (1), 12057 (2), 15129 (1), -tower 154: eta = -0.25, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 457.674 - sampling = 0, 10 SCIndices: 6746 (1), 8090 (2), 8154 (1), 8218 (1), 8282 (2), 11866 (3), 11930 (1), 11994 (1), 12058 (2), 15130 (1), -tower 155: eta = -0.25, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = -8.72784 - sampling = 0, 10 SCIndices: 6747 (1), 8091 (2), 8155 (1), 8219 (1), 8283 (2), 11867 (3), 11931 (1), 11995 (1), 12059 (2), 15131 (1), -tower 156: eta = -0.25, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 61.1484 - sampling = 0, 10 SCIndices: 6748 (1), 8092 (3), 8156 (1), 8220 (1), 8284 (2), 11868 (3), 11932 (1), 11996 (1), 12060 (2), 15132 (1), -tower 157: eta = -0.25, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = -18.2164 - sampling = 0, 10 SCIndices: 6749 (1), 8093 (3), 8157 (1), 8221 (1), 8285 (2), 11869 (3), 11933 (1), 11997 (1), 12061 (2), 15133 (1), -tower 158: eta = -0.25, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 181.41 - sampling = 0, 10 SCIndices: 6750 (1), 8094 (3), 8158 (1), 8222 (1), 8286 (2), 11870 (3), 11934 (1), 11998 (1), 12062 (2), 15134 (1), -tower 159: eta = -0.25, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 624.982 - sampling = 0, 10 SCIndices: 6751 (1), 8095 (3), 8159 (1), 8223 (1), 8287 (2), 11871 (3), 11935 (1), 11999 (1), 12063 (2), 15135 (1), -tower 160: eta = -0.25, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 217.136 - sampling = 0, 10 SCIndices: 6752 (1), 8096 (3), 8160 (1), 8224 (1), 8288 (2), 11872 (3), 11936 (1), 12000 (1), 12064 (2), 15136 (1), -tower 161: eta = -0.25, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 475.612 - sampling = 0, 10 SCIndices: 6753 (1), 8097 (3), 8161 (1), 8225 (1), 8289 (2), 11873 (3), 11937 (1), 12001 (1), 12065 (2), 15137 (1), -tower 162: eta = -0.25, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6754 (1), 8098 (3), 8162 (1), 8226 (1), 8290 (2), 11874 (3), 11938 (1), 12002 (1), 12066 (2), 15138 (1), -tower 163: eta = -0.25, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 142.072 - sampling = 0, 10 SCIndices: 6755 (1), 8099 (3), 8163 (1), 8227 (1), 8291 (2), 11875 (3), 11939 (1), 12003 (1), 12067 (2), 15139 (1), -tower 164: eta = -0.25, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 385.55 - sampling = 0, 10 SCIndices: 6756 (1), 8100 (3), 8164 (1), 8228 (1), 8292 (2), 11876 (3), 11940 (1), 12004 (1), 12068 (2), 15140 (1), -tower 165: eta = -0.25, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 149.487 - sampling = 0, 10 SCIndices: 6757 (1), 8101 (3), 8165 (1), 8229 (1), 8293 (2), 11877 (3), 11941 (1), 12005 (1), 12069 (2), 15141 (1), -tower 166: eta = -0.25, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 523.492 - sampling = 0, 10 SCIndices: 6758 (1), 8102 (3), 8166 (1), 8230 (1), 8294 (2), 11878 (3), 11942 (1), 12006 (1), 12070 (2), 15142 (1), -tower 167: eta = -0.25, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6759 (1), 8103 (3), 8167 (1), 8231 (1), 8295 (2), 11879 (3), 11943 (1), 12007 (1), 12071 (2), 15143 (1), -tower 168: eta = -0.25, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 852.965 - sampling = 0, 10 SCIndices: 6760 (1), 8104 (3), 8168 (1), 8232 (1), 8296 (2), 11880 (3), 11944 (1), 12008 (1), 12072 (2), 15144 (1), -tower 169: eta = -0.25, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6761 (1), 8105 (3), 8169 (1), 8233 (1), 8297 (2), 11881 (3), 11945 (1), 12009 (1), 12073 (2), 15145 (1), -tower 170: eta = -0.25, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 455.125 - sampling = 0, 10 SCIndices: 6762 (1), 8106 (3), 8170 (1), 8234 (1), 8298 (2), 11882 (3), 11946 (1), 12010 (1), 12074 (2), 15146 (1), -tower 171: eta = -0.25, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 181.427 - sampling = 0, 10 SCIndices: 6763 (1), 8107 (3), 8171 (1), 8235 (1), 8299 (2), 11883 (3), 11947 (1), 12011 (1), 12075 (2), 15147 (1), -tower 172: eta = -0.25, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 239.319 - sampling = 0, 10 SCIndices: 6764 (1), 8108 (3), 8172 (1), 8236 (1), 8300 (2), 11884 (3), 11948 (1), 12012 (1), 12076 (2), 15148 (1), -tower 173: eta = -0.25, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 461.537 - sampling = 0, 10 SCIndices: 6765 (1), 8109 (3), 8173 (1), 8237 (1), 8301 (2), 11885 (3), 11949 (1), 12013 (1), 12077 (2), 15149 (1), -tower 174: eta = -0.25, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 1145.54 - sampling = 0, 10 SCIndices: 6766 (1), 8110 (3), 8174 (1), 8238 (1), 8302 (2), 11886 (3), 11950 (1), 12014 (1), 12078 (2), 15150 (1), -tower 175: eta = -0.25, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 120.321 - sampling = 0, 10 SCIndices: 6767 (1), 8111 (3), 8175 (1), 8239 (1), 8303 (2), 11887 (3), 11951 (1), 12015 (1), 12079 (2), 15151 (1), -tower 176: eta = -0.25, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6768 (1), 8112 (3), 8176 (1), 8240 (1), 8304 (2), 11888 (3), 11952 (1), 12016 (1), 12080 (2), 15152 (1), -tower 177: eta = -0.25, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = -15.1409 - sampling = 0, 10 SCIndices: 6769 (1), 8113 (3), 8177 (1), 8241 (1), 8305 (2), 11889 (3), 11953 (1), 12017 (1), 12081 (2), 15153 (1), -tower 178: eta = -0.25, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6770 (1), 8114 (3), 8178 (1), 8242 (1), 8306 (2), 11890 (0), 11954 (1), 12018 (1), 12082 (2), 15154 (1), -tower 179: eta = -0.25, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 639.037 - sampling = 0, 10 SCIndices: 6771 (1), 8115 (3), 8179 (1), 8243 (1), 8307 (2), 11891 (0), 11955 (1), 12019 (1), 12083 (2), 15155 (1), -tower 180: eta = -0.25, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 212.435 - sampling = 0, 10 SCIndices: 6772 (1), 8116 (3), 8180 (1), 8244 (1), 8308 (2), 11892 (0), 11956 (1), 12020 (1), 12084 (2), 15156 (1), -tower 181: eta = -0.25, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 114.897 - sampling = 0, 10 SCIndices: 6773 (1), 8117 (3), 8181 (1), 8245 (1), 8309 (2), 11893 (0), 11957 (1), 12021 (1), 12085 (2), 15157 (1), -tower 182: eta = -0.25, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 453.393 - sampling = 0, 10 SCIndices: 6774 (1), 8118 (3), 8182 (1), 8246 (1), 8310 (2), 11894 (0), 11958 (1), 12022 (1), 12086 (2), 15158 (1), -tower 183: eta = -0.25, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 551.469 - sampling = 0, 10 SCIndices: 6775 (1), 8119 (3), 8183 (1), 8247 (1), 8311 (2), 11895 (0), 11959 (1), 12023 (1), 12087 (2), 15159 (1), -tower 184: eta = -0.25, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 72.5694 - sampling = 0, 10 SCIndices: 6776 (1), 8120 (0), 8184 (1), 8248 (1), 8312 (2), 11896 (0), 11960 (1), 12024 (1), 12088 (2), 15160 (1), -tower 185: eta = -0.25, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 321.597 - sampling = 0, 10 SCIndices: 6777 (1), 8121 (0), 8185 (1), 8249 (1), 8313 (2), 11897 (0), 11961 (1), 12025 (1), 12089 (2), 15161 (1), -tower 186: eta = -0.25, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 599.341 - sampling = 0, 10 SCIndices: 6778 (1), 8122 (0), 8186 (1), 8250 (1), 8314 (2), 11898 (0), 11962 (1), 12026 (1), 12090 (2), 15162 (1), -tower 187: eta = -0.25, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 54.3645 - sampling = 0, 10 SCIndices: 6779 (1), 8123 (0), 8187 (1), 8251 (1), 8315 (2), 11899 (0), 11963 (1), 12027 (1), 12091 (2), 15163 (1), -tower 188: eta = -0.25, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6780 (1), 8124 (0), 8188 (1), 8252 (1), 8316 (2), 11900 (0), 11964 (1), 12028 (1), 12092 (2), 15164 (1), -tower 189: eta = -0.25, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6781 (1), 8125 (0), 8189 (1), 8253 (1), 8317 (2), 11901 (0), 11965 (1), 12029 (1), 12093 (2), 15165 (1), -tower 190: eta = -0.25, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 96.1089 - sampling = 0, 10 SCIndices: 6782 (1), 8126 (0), 8190 (1), 8254 (1), 8318 (2), 11902 (0), 11966 (1), 12030 (1), 12094 (2), 15166 (1), -tower 191: eta = -0.25, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 167.775 - sampling = 0, 10 SCIndices: 6783 (1), 8127 (0), 8191 (1), 8255 (1), 8319 (2), 11903 (0), 11967 (1), 12031 (1), 12095 (2), 15167 (1), -tower 192: eta = -0.35, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 370.506 - sampling = 0, 10 SCIndices: 6784 (1), 8320 (2), 8384 (3), 8448 (1), 8512 (1), 12096 (2), 12160 (3), 12224 (1), 12288 (1), 15168 (1), -tower 193: eta = -0.35, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 504.578 - sampling = 0, 10 SCIndices: 6785 (1), 8321 (2), 8385 (3), 8449 (1), 8513 (1), 12097 (2), 12161 (3), 12225 (1), 12289 (1), 15169 (1), -tower 194: eta = -0.35, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 116.868 - sampling = 0, 10 SCIndices: 6786 (1), 8322 (2), 8386 (3), 8450 (1), 8514 (1), 12098 (2), 12162 (3), 12226 (1), 12290 (1), 15170 (1), -tower 195: eta = -0.35, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 512.579 - sampling = 0, 10 SCIndices: 6787 (1), 8323 (2), 8387 (3), 8451 (1), 8515 (1), 12099 (2), 12163 (3), 12227 (1), 12291 (1), 15171 (1), -tower 196: eta = -0.35, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 528.208 - sampling = 0, 10 SCIndices: 6788 (1), 8324 (2), 8388 (3), 8452 (1), 8516 (1), 12100 (2), 12164 (3), 12228 (1), 12292 (1), 15172 (1), -tower 197: eta = -0.35, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 586.237 - sampling = 0, 10 SCIndices: 6789 (1), 8325 (2), 8389 (3), 8453 (1), 8517 (1), 12101 (2), 12165 (3), 12229 (1), 12293 (1), 15173 (1), -tower 198: eta = -0.35, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 239.482 - sampling = 0, 10 SCIndices: 6790 (1), 8326 (2), 8390 (3), 8454 (1), 8518 (1), 12102 (2), 12166 (3), 12230 (1), 12294 (1), 15174 (1), -tower 199: eta = -0.35, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 526.014 - sampling = 0, 10 SCIndices: 6791 (1), 8327 (2), 8391 (3), 8455 (1), 8519 (1), 12103 (2), 12167 (3), 12231 (1), 12295 (1), 15175 (1), -tower 200: eta = -0.35, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6792 (1), 8328 (2), 8392 (3), 8456 (1), 8520 (1), 12104 (2), 12168 (3), 12232 (1), 12296 (1), 15176 (1), -tower 201: eta = -0.35, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 237.891 - sampling = 0, 10 SCIndices: 6793 (1), 8329 (2), 8393 (3), 8457 (1), 8521 (1), 12105 (2), 12169 (3), 12233 (1), 12297 (1), 15177 (1), -tower 202: eta = -0.35, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 752.326 - sampling = 0, 10 SCIndices: 6794 (1), 8330 (2), 8394 (3), 8458 (1), 8522 (1), 12106 (2), 12170 (3), 12234 (1), 12298 (1), 15178 (1), -tower 203: eta = -0.35, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 305.822 - sampling = 0, 10 SCIndices: 6795 (1), 8331 (2), 8395 (3), 8459 (1), 8523 (1), 12107 (2), 12171 (3), 12235 (1), 12299 (1), 15179 (1), -tower 204: eta = -0.35, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 26.8256 - sampling = 0, 10 SCIndices: 6796 (1), 8332 (2), 8396 (3), 8460 (1), 8524 (1), 12108 (2), 12172 (3), 12236 (1), 12300 (1), 15180 (1), -tower 205: eta = -0.35, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 471.046 - sampling = 0, 10 SCIndices: 6797 (1), 8333 (2), 8397 (3), 8461 (1), 8525 (1), 12109 (2), 12173 (3), 12237 (1), 12301 (1), 15181 (1), -tower 206: eta = -0.35, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 95.588 - sampling = 0, 10 SCIndices: 6798 (1), 8334 (2), 8398 (3), 8462 (1), 8526 (1), 12110 (2), 12174 (3), 12238 (1), 12302 (1), 15182 (1), -tower 207: eta = -0.35, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 372.423 - sampling = 0, 10 SCIndices: 6799 (1), 8335 (2), 8399 (3), 8463 (1), 8527 (1), 12111 (2), 12175 (3), 12239 (1), 12303 (1), 15183 (1), -tower 208: eta = -0.35, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 86.298 - sampling = 0, 10 SCIndices: 6800 (1), 8336 (2), 8400 (3), 8464 (1), 8528 (1), 12112 (2), 12176 (3), 12240 (1), 12304 (1), 15184 (1), -tower 209: eta = -0.35, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 599.464 - sampling = 0, 10 SCIndices: 6801 (1), 8337 (2), 8401 (3), 8465 (1), 8529 (1), 12113 (2), 12177 (3), 12241 (1), 12305 (1), 15185 (1), -tower 210: eta = -0.35, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 287.417 - sampling = 0, 10 SCIndices: 6802 (1), 8338 (2), 8402 (3), 8466 (1), 8530 (1), 12114 (2), 12178 (3), 12242 (1), 12306 (1), 15186 (1), -tower 211: eta = -0.35, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6803 (1), 8339 (2), 8403 (3), 8467 (1), 8531 (1), 12115 (2), 12179 (3), 12243 (1), 12307 (1), 15187 (1), -tower 212: eta = -0.35, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 1074.18 - sampling = 0, 10 SCIndices: 6804 (1), 8340 (2), 8404 (3), 8468 (1), 8532 (1), 12116 (2), 12180 (0), 12244 (1), 12308 (1), 15188 (1), -tower 213: eta = -0.35, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 178.498 - sampling = 0, 10 SCIndices: 6805 (1), 8341 (2), 8405 (3), 8469 (1), 8533 (1), 12117 (2), 12181 (0), 12245 (1), 12309 (1), 15189 (1), -tower 214: eta = -0.35, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 391.007 - sampling = 0, 10 SCIndices: 6806 (1), 8342 (2), 8406 (3), 8470 (1), 8534 (1), 12118 (2), 12182 (0), 12246 (1), 12310 (1), 15190 (1), -tower 215: eta = -0.35, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 104.747 - sampling = 0, 10 SCIndices: 6807 (1), 8343 (2), 8407 (3), 8471 (1), 8535 (1), 12119 (2), 12183 (0), 12247 (1), 12311 (1), 15191 (1), -tower 216: eta = -0.35, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 213.153 - sampling = 0, 10 SCIndices: 6808 (1), 8344 (2), 8408 (3), 8472 (1), 8536 (1), 12120 (2), 12184 (0), 12248 (1), 12312 (1), 15192 (1), -tower 217: eta = -0.35, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 529.768 - sampling = 0, 10 SCIndices: 6809 (1), 8345 (2), 8409 (3), 8473 (1), 8537 (1), 12121 (2), 12185 (0), 12249 (1), 12313 (1), 15193 (1), -tower 218: eta = -0.35, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 327.575 - sampling = 0, 10 SCIndices: 6810 (1), 8346 (2), 8410 (0), 8474 (1), 8538 (1), 12122 (2), 12186 (0), 12250 (1), 12314 (1), 15194 (1), -tower 219: eta = -0.35, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6811 (1), 8347 (2), 8411 (0), 8475 (1), 8539 (1), 12123 (2), 12187 (0), 12251 (1), 12315 (1), 15195 (1), -tower 220: eta = -0.35, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = -119.924 - sampling = 0, 10 SCIndices: 6812 (1), 8348 (2), 8412 (0), 8476 (1), 8540 (1), 12124 (2), 12188 (0), 12252 (1), 12316 (1), 15196 (1), -tower 221: eta = -0.35, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 101.337 - sampling = 0, 10 SCIndices: 6813 (1), 8349 (2), 8413 (0), 8477 (1), 8541 (1), 12125 (2), 12189 (0), 12253 (1), 12317 (1), 15197 (1), -tower 222: eta = -0.35, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 98.503 - sampling = 0, 10 SCIndices: 6814 (1), 8350 (2), 8414 (0), 8478 (1), 8542 (1), 12126 (2), 12190 (0), 12254 (1), 12318 (1), 15198 (1), -tower 223: eta = -0.35, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 434.51 - sampling = 0, 10 SCIndices: 6815 (1), 8351 (2), 8415 (0), 8479 (1), 8543 (1), 12127 (2), 12191 (0), 12255 (1), 12319 (1), 15199 (1), -tower 224: eta = -0.35, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 203.973 - sampling = 0, 10 SCIndices: 6816 (1), 8352 (2), 8416 (0), 8480 (1), 8544 (1), 12128 (2), 12192 (0), 12256 (1), 12320 (1), 15200 (1), -tower 225: eta = -0.35, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 243.612 - sampling = 0, 10 SCIndices: 6817 (1), 8353 (2), 8417 (0), 8481 (1), 8545 (1), 12129 (2), 12193 (0), 12257 (1), 12321 (1), 15201 (1), -tower 226: eta = -0.35, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 161.658 - sampling = 0, 10 SCIndices: 6818 (2), 8354 (2), 8418 (0), 8482 (1), 8546 (1), 12130 (2), 12194 (0), 12258 (1), 12322 (1), 15202 (1), -tower 227: eta = -0.35, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 409.488 - sampling = 0, 10 SCIndices: 6819 (2), 8355 (2), 8419 (0), 8483 (1), 8547 (1), 12131 (2), 12195 (0), 12259 (1), 12323 (1), 15203 (1), -tower 228: eta = -0.35, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 125.238 - sampling = 0, 10 SCIndices: 6820 (2), 8356 (2), 8420 (0), 8484 (1), 8548 (1), 12132 (2), 12196 (0), 12260 (1), 12324 (1), 15204 (1), -tower 229: eta = -0.35, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6821 (2), 8357 (2), 8421 (0), 8485 (1), 8549 (1), 12133 (2), 12197 (0), 12261 (1), 12325 (1), 15205 (1), -tower 230: eta = -0.35, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 170.916 - sampling = 0, 10 SCIndices: 6822 (2), 8358 (2), 8422 (0), 8486 (1), 8550 (1), 12134 (2), 12198 (0), 12262 (1), 12326 (1), 15206 (1), -tower 231: eta = -0.35, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 353.503 - sampling = 0, 10 SCIndices: 6823 (2), 8359 (2), 8423 (0), 8487 (1), 8551 (1), 12135 (2), 12199 (0), 12263 (1), 12327 (1), 15207 (1), -tower 232: eta = -0.35, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 423.916 - sampling = 0, 10 SCIndices: 6824 (2), 8360 (2), 8424 (0), 8488 (1), 8552 (1), 12136 (2), 12200 (0), 12264 (1), 12328 (2), 15208 (1), -tower 233: eta = -0.35, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 32.2549 - sampling = 0, 10 SCIndices: 6825 (2), 8361 (2), 8425 (0), 8489 (1), 8553 (1), 12137 (2), 12201 (0), 12265 (1), 12329 (2), 15209 (1), -tower 234: eta = -0.35, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 141.463 - sampling = 0, 10 SCIndices: 6826 (2), 8362 (2), 8426 (0), 8490 (1), 8554 (1), 12138 (2), 12202 (0), 12266 (1), 12330 (2), 15210 (1), -tower 235: eta = -0.35, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 134.334 - sampling = 0, 10 SCIndices: 6827 (2), 8363 (2), 8427 (0), 8491 (1), 8555 (1), 12139 (2), 12203 (0), 12267 (1), 12331 (2), 15211 (1), -tower 236: eta = -0.35, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 359.98 - sampling = 0, 10 SCIndices: 6828 (2), 8364 (2), 8428 (0), 8492 (1), 8556 (1), 12140 (2), 12204 (0), 12268 (1), 12332 (2), 15212 (1), -tower 237: eta = -0.35, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6829 (2), 8365 (2), 8429 (0), 8493 (1), 8557 (1), 12141 (2), 12205 (0), 12269 (1), 12333 (2), 15213 (1), -tower 238: eta = -0.35, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6830 (2), 8366 (2), 8430 (0), 8494 (1), 8558 (2), 12142 (2), 12206 (0), 12270 (1), 12334 (2), 15214 (1), -tower 239: eta = -0.35, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 674.01 - sampling = 0, 10 SCIndices: 6831 (2), 8367 (2), 8431 (0), 8495 (1), 8559 (2), 12143 (2), 12207 (0), 12271 (1), 12335 (2), 15215 (1), -tower 240: eta = -0.35, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 137.039 - sampling = 0, 10 SCIndices: 6832 (2), 8368 (2), 8432 (0), 8496 (1), 8560 (2), 12144 (2), 12208 (0), 12272 (1), 12336 (2), 15216 (1), -tower 241: eta = -0.35, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 183.176 - sampling = 0, 10 SCIndices: 6833 (2), 8369 (2), 8433 (0), 8497 (1), 8561 (2), 12145 (2), 12209 (0), 12273 (1), 12337 (2), 15217 (1), -tower 242: eta = -0.35, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = -10.3511 - sampling = 0, 10 SCIndices: 6834 (2), 8370 (2), 8434 (0), 8498 (1), 8562 (2), 12146 (2), 12210 (1), 12274 (1), 12338 (2), 15218 (1), -tower 243: eta = -0.35, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6835 (2), 8371 (2), 8435 (0), 8499 (1), 8563 (2), 12147 (2), 12211 (1), 12275 (1), 12339 (2), 15219 (1), -tower 244: eta = -0.35, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 109.842 - sampling = 0, 10 SCIndices: 6836 (2), 8372 (2), 8436 (0), 8500 (1), 8564 (2), 12148 (2), 12212 (1), 12276 (1), 12340 (2), 15220 (1), -tower 245: eta = -0.35, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 99.6534 - sampling = 0, 10 SCIndices: 6837 (2), 8373 (2), 8437 (0), 8501 (1), 8565 (2), 12149 (2), 12213 (1), 12277 (1), 12341 (2), 15221 (1), -tower 246: eta = -0.35, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 590.614 - sampling = 0, 10 SCIndices: 6838 (2), 8374 (2), 8438 (0), 8502 (1), 8566 (2), 12150 (2), 12214 (1), 12278 (1), 12342 (2), 15222 (1), -tower 247: eta = -0.35, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6839 (2), 8375 (2), 8439 (0), 8503 (1), 8567 (2), 12151 (2), 12215 (1), 12279 (1), 12343 (2), 15223 (1), -tower 248: eta = -0.35, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = -15.7465 - sampling = 0, 10 SCIndices: 6840 (2), 8376 (2), 8440 (1), 8504 (1), 8568 (2), 12152 (3), 12216 (1), 12280 (1), 12344 (2), 15224 (1), -tower 249: eta = -0.35, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 150.863 - sampling = 0, 10 SCIndices: 6841 (2), 8377 (2), 8441 (1), 8505 (1), 8569 (2), 12153 (3), 12217 (1), 12281 (1), 12345 (2), 15225 (1), -tower 250: eta = -0.35, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6842 (2), 8378 (2), 8442 (1), 8506 (1), 8570 (2), 12154 (3), 12218 (1), 12282 (1), 12346 (2), 15226 (1), -tower 251: eta = -0.35, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 281.392 - sampling = 0, 10 SCIndices: 6843 (2), 8379 (2), 8443 (1), 8507 (1), 8571 (2), 12155 (3), 12219 (1), 12283 (1), 12347 (2), 15227 (1), -tower 252: eta = -0.35, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 987.083 - sampling = 0, 10 SCIndices: 6844 (2), 8380 (2), 8444 (1), 8508 (1), 8572 (2), 12156 (3), 12220 (1), 12284 (1), 12348 (2), 15228 (2), -tower 253: eta = -0.35, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 183.368 - sampling = 0, 10 SCIndices: 6845 (2), 8381 (2), 8445 (1), 8509 (1), 8573 (2), 12157 (3), 12221 (1), 12285 (1), 12349 (2), 15229 (2), -tower 254: eta = -0.35, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = -57.8363 - sampling = 0, 10 SCIndices: 6846 (2), 8382 (3), 8446 (1), 8510 (1), 8574 (2), 12158 (3), 12222 (1), 12286 (1), 12350 (2), 15230 (2), -tower 255: eta = -0.35, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 180.285 - sampling = 0, 10 SCIndices: 6847 (2), 8383 (3), 8447 (1), 8511 (1), 8575 (2), 12159 (3), 12223 (1), 12287 (1), 12351 (2), 15231 (2), -tower 256: eta = -0.45, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 333.076 - sampling = 0, 10 SCIndices: 6848 (2), 8576 (2), 8640 (2), 8704 (0), 8768 (1), 12352 (2), 12416 (2), 12480 (0), 12544 (1), 15232 (2), -tower 257: eta = -0.45, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 175.977 - sampling = 0, 10 SCIndices: 6849 (2), 8577 (2), 8641 (2), 8705 (0), 8769 (1), 12353 (2), 12417 (2), 12481 (0), 12545 (1), 15233 (2), -tower 258: eta = -0.45, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 50.8422 - sampling = 0, 10 SCIndices: 6850 (2), 8578 (2), 8642 (2), 8706 (0), 8770 (1), 12354 (2), 12418 (2), 12482 (0), 12546 (1), 15234 (2), -tower 259: eta = -0.45, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 872.609 - sampling = 0, 10 SCIndices: 6851 (2), 8579 (2), 8643 (2), 8707 (0), 8771 (1), 12355 (2), 12419 (2), 12483 (0), 12547 (1), 15235 (2), -tower 260: eta = -0.45, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6852 (2), 8580 (2), 8644 (2), 8708 (0), 8772 (1), 12356 (2), 12420 (2), 12484 (0), 12548 (1), 15236 (2), -tower 261: eta = -0.45, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 994.393 - sampling = 0, 10 SCIndices: 6853 (2), 8581 (2), 8645 (2), 8709 (0), 8773 (1), 12357 (2), 12421 (2), 12485 (0), 12549 (1), 15237 (2), -tower 262: eta = -0.45, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6854 (2), 8582 (2), 8646 (2), 8710 (0), 8774 (1), 12358 (2), 12422 (2), 12486 (0), 12550 (1), 15238 (2), -tower 263: eta = -0.45, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 124.798 - sampling = 0, 10 SCIndices: 6855 (2), 8583 (2), 8647 (2), 8711 (0), 8775 (1), 12359 (2), 12423 (2), 12487 (0), 12551 (1), 15239 (2), -tower 264: eta = -0.45, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 327.338 - sampling = 0, 10 SCIndices: 6856 (2), 8584 (2), 8648 (2), 8712 (0), 8776 (1), 12360 (2), 12424 (2), 12488 (0), 12552 (1), 15240 (2), -tower 265: eta = -0.45, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 98.5595 - sampling = 0, 10 SCIndices: 6857 (2), 8585 (2), 8649 (2), 8713 (0), 8777 (1), 12361 (2), 12425 (2), 12489 (0), 12553 (1), 15241 (2), -tower 266: eta = -0.45, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 507.639 - sampling = 0, 10 SCIndices: 6858 (2), 8586 (2), 8650 (2), 8714 (0), 8778 (1), 12362 (2), 12426 (2), 12490 (0), 12554 (1), 15242 (2), -tower 267: eta = -0.45, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6859 (2), 8587 (2), 8651 (2), 8715 (0), 8779 (1), 12363 (2), 12427 (2), 12491 (0), 12555 (1), 15243 (2), -tower 268: eta = -0.45, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 109.372 - sampling = 0, 10 SCIndices: 6860 (2), 8588 (2), 8652 (2), 8716 (0), 8780 (1), 12364 (2), 12428 (2), 12492 (0), 12556 (1), 15244 (2), -tower 269: eta = -0.45, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 834.162 - sampling = 0, 10 SCIndices: 6861 (2), 8589 (2), 8653 (2), 8717 (0), 8781 (1), 12365 (2), 12429 (2), 12493 (0), 12557 (1), 15245 (2), -tower 270: eta = -0.45, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 172.986 - sampling = 0, 10 SCIndices: 6862 (2), 8590 (2), 8654 (2), 8718 (0), 8782 (1), 12366 (2), 12430 (2), 12494 (0), 12558 (1), 15246 (2), -tower 271: eta = -0.45, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 281.038 - sampling = 0, 10 SCIndices: 6863 (2), 8591 (2), 8655 (2), 8719 (0), 8783 (1), 12367 (2), 12431 (2), 12495 (0), 12559 (1), 15247 (2), -tower 272: eta = -0.45, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 83.5777 - sampling = 0, 10 SCIndices: 6864 (2), 8592 (2), 8656 (2), 8720 (0), 8784 (1), 12368 (2), 12432 (2), 12496 (0), 12560 (1), 15248 (2), -tower 273: eta = -0.45, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 50.0331 - sampling = 0, 10 SCIndices: 6865 (2), 8593 (2), 8657 (2), 8721 (0), 8785 (1), 12369 (2), 12433 (2), 12497 (0), 12561 (1), 15249 (2), -tower 274: eta = -0.45, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 1185.6 - sampling = 0, 10 SCIndices: 6866 (2), 8594 (2), 8658 (2), 8722 (0), 8786 (1), 12370 (2), 12434 (2), 12498 (0), 12562 (1), 15250 (2), -tower 275: eta = -0.45, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 715.017 - sampling = 0, 10 SCIndices: 6867 (2), 8595 (2), 8659 (2), 8723 (0), 8787 (1), 12371 (2), 12435 (2), 12499 (0), 12563 (1), 15251 (2), -tower 276: eta = -0.45, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 310.586 - sampling = 0, 10 SCIndices: 6868 (2), 8596 (2), 8660 (2), 8724 (0), 8788 (1), 12372 (2), 12436 (2), 12500 (1), 12564 (1), 15252 (2), -tower 277: eta = -0.45, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 229.986 - sampling = 0, 10 SCIndices: 6869 (2), 8597 (2), 8661 (2), 8725 (0), 8789 (1), 12373 (2), 12437 (2), 12501 (1), 12565 (1), 15253 (2), -tower 278: eta = -0.45, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 343.107 - sampling = 0, 10 SCIndices: 6870 (2), 8598 (2), 8662 (2), 8726 (0), 8790 (1), 12374 (2), 12438 (2), 12502 (1), 12566 (1), 15254 (2), -tower 279: eta = -0.45, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 8.91896 - sampling = 0, 10 SCIndices: 6871 (2), 8599 (2), 8663 (2), 8727 (0), 8791 (1), 12375 (2), 12439 (2), 12503 (1), 12567 (1), 15255 (2), -tower 280: eta = -0.45, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 121.27 - sampling = 0, 10 SCIndices: 6872 (2), 8600 (2), 8664 (2), 8728 (0), 8792 (1), 12376 (2), 12440 (2), 12504 (1), 12568 (1), 15256 (2), -tower 281: eta = -0.45, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 359.98 - sampling = 0, 10 SCIndices: 6873 (2), 8601 (2), 8665 (2), 8729 (0), 8793 (1), 12377 (2), 12441 (2), 12505 (1), 12569 (1), 15257 (2), -tower 282: eta = -0.45, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 64.787 - sampling = 0, 10 SCIndices: 6874 (2), 8602 (2), 8666 (2), 8730 (1), 8794 (1), 12378 (2), 12442 (3), 12506 (1), 12570 (1), 15258 (2), -tower 283: eta = -0.45, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 230.01 - sampling = 0, 10 SCIndices: 6875 (2), 8603 (2), 8667 (2), 8731 (1), 8795 (1), 12379 (2), 12443 (3), 12507 (1), 12571 (1), 15259 (2), -tower 284: eta = -0.45, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 923.914 - sampling = 0, 10 SCIndices: 6876 (2), 8604 (2), 8668 (2), 8732 (1), 8796 (1), 12380 (2), 12444 (3), 12508 (1), 12572 (1), 15260 (2), -tower 285: eta = -0.45, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 267.219 - sampling = 0, 10 SCIndices: 6877 (2), 8605 (2), 8669 (2), 8733 (1), 8797 (1), 12381 (2), 12445 (3), 12509 (1), 12573 (1), 15261 (2), -tower 286: eta = -0.45, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 190.067 - sampling = 0, 10 SCIndices: 6878 (2), 8606 (2), 8670 (2), 8734 (1), 8798 (1), 12382 (2), 12446 (3), 12510 (1), 12574 (1), 15262 (2), -tower 287: eta = -0.45, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 855.307 - sampling = 0, 10 SCIndices: 6879 (2), 8607 (2), 8671 (2), 8735 (1), 8799 (1), 12383 (2), 12447 (3), 12511 (1), 12575 (1), 15263 (2), -tower 288: eta = -0.45, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 932.064 - sampling = 0, 10 SCIndices: 6880 (2), 8608 (2), 8672 (3), 8736 (1), 8800 (1), 12384 (2), 12448 (3), 12512 (1), 12576 (1), 15264 (2), -tower 289: eta = -0.45, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 445.913 - sampling = 0, 10 SCIndices: 6881 (2), 8609 (2), 8673 (3), 8737 (1), 8801 (1), 12385 (2), 12449 (3), 12513 (1), 12577 (1), 15265 (2), -tower 290: eta = -0.45, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 187.068 - sampling = 0, 10 SCIndices: 6882 (2), 8610 (2), 8674 (3), 8738 (1), 8802 (1), 12386 (2), 12450 (3), 12514 (1), 12578 (1), 15266 (2), -tower 291: eta = -0.45, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 259.744 - sampling = 0, 10 SCIndices: 6883 (2), 8611 (2), 8675 (3), 8739 (1), 8803 (1), 12387 (2), 12451 (3), 12515 (1), 12579 (1), 15267 (2), -tower 292: eta = -0.45, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 352.932 - sampling = 0, 10 SCIndices: 6884 (2), 8612 (2), 8676 (3), 8740 (1), 8804 (1), 12388 (2), 12452 (3), 12516 (1), 12580 (1), 15268 (2), -tower 293: eta = -0.45, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 415.336 - sampling = 0, 10 SCIndices: 6885 (2), 8613 (2), 8677 (3), 8741 (1), 8805 (1), 12389 (2), 12453 (3), 12517 (1), 12581 (1), 15269 (2), -tower 294: eta = -0.45, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 479.694 - sampling = 0, 10 SCIndices: 6886 (2), 8614 (2), 8678 (3), 8742 (1), 8806 (1), 12390 (2), 12454 (3), 12518 (1), 12582 (1), 15270 (2), -tower 295: eta = -0.45, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 1024.69 - sampling = 0, 10 SCIndices: 6887 (2), 8615 (2), 8679 (3), 8743 (1), 8807 (1), 12391 (2), 12455 (3), 12519 (1), 12583 (1), 15271 (2), -tower 296: eta = -0.45, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 198.414 - sampling = 0, 10 SCIndices: 6888 (2), 8616 (2), 8680 (3), 8744 (1), 8808 (1), 12392 (2), 12456 (3), 12520 (1), 12584 (1), 15272 (2), -tower 297: eta = -0.45, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 209.563 - sampling = 0, 10 SCIndices: 6889 (2), 8617 (2), 8681 (3), 8745 (1), 8809 (1), 12393 (2), 12457 (3), 12521 (1), 12585 (1), 15273 (2), -tower 298: eta = -0.45, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 40.8389 - sampling = 0, 10 SCIndices: 6890 (2), 8618 (2), 8682 (3), 8746 (1), 8810 (1), 12394 (2), 12458 (3), 12522 (1), 12586 (1), 15274 (2), -tower 299: eta = -0.45, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 963.408 - sampling = 0, 10 SCIndices: 6891 (2), 8619 (2), 8683 (3), 8747 (1), 8811 (1), 12395 (2), 12459 (3), 12523 (1), 12587 (1), 15275 (2), -tower 300: eta = -0.45, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 1454.2 - sampling = 0, 10 SCIndices: 6892 (2), 8620 (2), 8684 (3), 8748 (1), 8812 (1), 12396 (2), 12460 (3), 12524 (1), 12588 (1), 15276 (2), -tower 301: eta = -0.45, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 237.994 - sampling = 0, 10 SCIndices: 6893 (2), 8621 (2), 8685 (3), 8749 (1), 8813 (1), 12397 (2), 12461 (3), 12525 (1), 12589 (1), 15277 (2), -tower 302: eta = -0.45, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 298.28 - sampling = 0, 10 SCIndices: 6894 (2), 8622 (2), 8686 (3), 8750 (1), 8814 (1), 12398 (2), 12462 (3), 12526 (1), 12590 (1), 15278 (2), -tower 303: eta = -0.45, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 92.5562 - sampling = 0, 10 SCIndices: 6895 (2), 8623 (2), 8687 (3), 8751 (1), 8815 (1), 12399 (2), 12463 (3), 12527 (1), 12591 (1), 15279 (2), -tower 304: eta = -0.45, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 922.915 - sampling = 0, 10 SCIndices: 6896 (2), 8624 (2), 8688 (3), 8752 (1), 8816 (1), 12400 (2), 12464 (3), 12528 (1), 12592 (1), 15280 (2), -tower 305: eta = -0.45, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6897 (2), 8625 (2), 8689 (3), 8753 (1), 8817 (1), 12401 (2), 12465 (3), 12529 (1), 12593 (1), 15281 (2), -tower 306: eta = -0.45, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 182.114 - sampling = 0, 10 SCIndices: 6898 (2), 8626 (2), 8690 (3), 8754 (1), 8818 (1), 12402 (2), 12466 (3), 12530 (1), 12594 (1), 15282 (2), -tower 307: eta = -0.45, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 90.966 - sampling = 0, 10 SCIndices: 6899 (2), 8627 (2), 8691 (3), 8755 (1), 8819 (1), 12403 (2), 12467 (3), 12531 (1), 12595 (1), 15283 (2), -tower 308: eta = -0.45, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 69.8659 - sampling = 0, 10 SCIndices: 6900 (2), 8628 (2), 8692 (3), 8756 (1), 8820 (1), 12404 (2), 12468 (3), 12532 (1), 12596 (1), 15284 (2), -tower 309: eta = -0.45, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 354.905 - sampling = 0, 10 SCIndices: 6901 (2), 8629 (2), 8693 (3), 8757 (1), 8821 (1), 12405 (2), 12469 (3), 12533 (1), 12597 (1), 15285 (2), -tower 310: eta = -0.45, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 461.681 - sampling = 0, 10 SCIndices: 6902 (2), 8630 (2), 8694 (3), 8758 (1), 8822 (1), 12406 (2), 12470 (0), 12534 (1), 12598 (1), 15286 (2), -tower 311: eta = -0.45, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 357.175 - sampling = 0, 10 SCIndices: 6903 (2), 8631 (2), 8695 (3), 8759 (1), 8823 (1), 12407 (2), 12471 (0), 12535 (1), 12599 (1), 15287 (2), -tower 312: eta = -0.45, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 829.591 - sampling = 0, 10 SCIndices: 6904 (2), 8632 (2), 8696 (3), 8760 (1), 8824 (1), 12408 (2), 12472 (0), 12536 (1), 12600 (1), 15288 (2), -tower 313: eta = -0.45, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 267.124 - sampling = 0, 10 SCIndices: 6905 (2), 8633 (2), 8697 (3), 8761 (1), 8825 (1), 12409 (2), 12473 (0), 12537 (1), 12601 (1), 15289 (2), -tower 314: eta = -0.45, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 263.352 - sampling = 0, 10 SCIndices: 6906 (2), 8634 (2), 8698 (3), 8762 (1), 8826 (1), 12410 (2), 12474 (0), 12538 (1), 12602 (1), 15290 (2), -tower 315: eta = -0.45, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 404.75 - sampling = 0, 10 SCIndices: 6907 (2), 8635 (2), 8699 (3), 8763 (1), 8827 (1), 12411 (2), 12475 (0), 12539 (1), 12603 (1), 15291 (2), -tower 316: eta = -0.45, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 880.52 - sampling = 0, 10 SCIndices: 6908 (2), 8636 (2), 8700 (0), 8764 (1), 8828 (1), 12412 (2), 12476 (0), 12540 (1), 12604 (1), 15292 (2), -tower 317: eta = -0.45, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 396.422 - sampling = 0, 10 SCIndices: 6909 (2), 8637 (2), 8701 (0), 8765 (1), 8829 (1), 12413 (2), 12477 (0), 12541 (1), 12605 (1), 15293 (2), -tower 318: eta = -0.45, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 64.8039 - sampling = 0, 10 SCIndices: 6910 (2), 8638 (2), 8702 (0), 8766 (1), 8830 (1), 12414 (2), 12478 (0), 12542 (1), 12606 (1), 15294 (2), -tower 319: eta = -0.45, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 497.209 - sampling = 0, 10 SCIndices: 6911 (2), 8639 (2), 8703 (0), 8767 (1), 8831 (1), 12415 (2), 12479 (0), 12543 (1), 12607 (1), 15295 (2), -tower 320: eta = -0.55, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6912 (2), 8832 (1), 8896 (2), 8960 (2), 9024 (1), 12608 (1), 12672 (2), 12736 (3), 12800 (1), 15296 (2), -tower 321: eta = -0.55, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 291.654 - sampling = 0, 10 SCIndices: 6913 (2), 8833 (1), 8897 (2), 8961 (2), 9025 (1), 12609 (1), 12673 (2), 12737 (3), 12801 (1), 15297 (2), -tower 322: eta = -0.55, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 47.7298 - sampling = 0, 10 SCIndices: 6914 (2), 8834 (1), 8898 (2), 8962 (3), 9026 (1), 12610 (1), 12674 (2), 12738 (3), 12802 (1), 15298 (2), -tower 323: eta = -0.55, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 864.03 - sampling = 0, 10 SCIndices: 6915 (2), 8835 (1), 8899 (2), 8963 (3), 9027 (1), 12611 (1), 12675 (2), 12739 (3), 12803 (1), 15299 (2), -tower 324: eta = -0.55, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 741.961 - sampling = 0, 10 SCIndices: 6916 (2), 8836 (1), 8900 (2), 8964 (3), 9028 (1), 12612 (1), 12676 (2), 12740 (3), 12804 (1), 15300 (2), -tower 325: eta = -0.55, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 261.673 - sampling = 0, 10 SCIndices: 6917 (2), 8837 (1), 8901 (2), 8965 (3), 9029 (1), 12613 (1), 12677 (2), 12741 (3), 12805 (1), 15301 (2), -tower 326: eta = -0.55, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 439.735 - sampling = 0, 10 SCIndices: 6918 (2), 8838 (1), 8902 (2), 8966 (3), 9030 (1), 12614 (1), 12678 (2), 12742 (3), 12806 (1), 15302 (2), -tower 327: eta = -0.55, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 429.93 - sampling = 0, 10 SCIndices: 6919 (2), 8839 (1), 8903 (2), 8967 (3), 9031 (1), 12615 (1), 12679 (2), 12743 (3), 12807 (1), 15303 (2), -tower 328: eta = -0.55, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 134.409 - sampling = 0, 10 SCIndices: 6920 (2), 8840 (1), 8904 (2), 8968 (3), 9032 (1), 12616 (1), 12680 (2), 12744 (3), 12808 (1), 15304 (2), -tower 329: eta = -0.55, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 740.163 - sampling = 0, 10 SCIndices: 6921 (2), 8841 (1), 8905 (2), 8969 (3), 9033 (1), 12617 (1), 12681 (2), 12745 (3), 12809 (1), 15305 (2), -tower 330: eta = -0.55, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = -122.165 - sampling = 0, 10 SCIndices: 6922 (2), 8842 (1), 8906 (2), 8970 (3), 9034 (1), 12618 (2), 12682 (2), 12746 (3), 12810 (1), 15306 (2), -tower 331: eta = -0.55, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 277.065 - sampling = 0, 10 SCIndices: 6923 (2), 8843 (1), 8907 (2), 8971 (3), 9035 (1), 12619 (2), 12683 (2), 12747 (3), 12811 (1), 15307 (2), -tower 332: eta = -0.55, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 303.659 - sampling = 0, 10 SCIndices: 6924 (2), 8844 (1), 8908 (2), 8972 (3), 9036 (1), 12620 (2), 12684 (2), 12748 (3), 12812 (1), 15308 (2), -tower 333: eta = -0.55, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 483.214 - sampling = 0, 10 SCIndices: 6925 (2), 8845 (1), 8909 (2), 8973 (3), 9037 (1), 12621 (2), 12685 (2), 12749 (3), 12813 (1), 15309 (2), -tower 334: eta = -0.55, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 139.745 - sampling = 0, 10 SCIndices: 6926 (2), 8846 (1), 8910 (2), 8974 (3), 9038 (1), 12622 (2), 12686 (2), 12750 (3), 12814 (1), 15310 (2), -tower 335: eta = -0.55, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 371.117 - sampling = 0, 10 SCIndices: 6927 (2), 8847 (1), 8911 (2), 8975 (3), 9039 (1), 12623 (2), 12687 (2), 12751 (3), 12815 (1), 15311 (2), -tower 336: eta = -0.55, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6928 (2), 8848 (2), 8912 (2), 8976 (3), 9040 (1), 12624 (2), 12688 (2), 12752 (3), 12816 (1), 15312 (2), -tower 337: eta = -0.55, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6929 (2), 8849 (2), 8913 (2), 8977 (3), 9041 (1), 12625 (2), 12689 (2), 12753 (3), 12817 (1), 15313 (2), -tower 338: eta = -0.55, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 630.202 - sampling = 0, 10 SCIndices: 6930 (2), 8850 (2), 8914 (2), 8978 (3), 9042 (1), 12626 (2), 12690 (2), 12754 (3), 12818 (1), 15314 (2), -tower 339: eta = -0.55, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 128.927 - sampling = 0, 10 SCIndices: 6931 (2), 8851 (2), 8915 (2), 8979 (3), 9043 (1), 12627 (2), 12691 (2), 12755 (3), 12819 (1), 15315 (2), -tower 340: eta = -0.55, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 170.381 - sampling = 0, 10 SCIndices: 6932 (3), 8852 (2), 8916 (2), 8980 (3), 9044 (1), 12628 (2), 12692 (2), 12756 (3), 12820 (1), 15316 (2), -tower 341: eta = -0.55, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 405.975 - sampling = 0, 10 SCIndices: 6933 (3), 8853 (2), 8917 (2), 8981 (3), 9045 (1), 12629 (2), 12693 (2), 12757 (3), 12821 (1), 15317 (2), -tower 342: eta = -0.55, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 428.047 - sampling = 0, 10 SCIndices: 6934 (3), 8854 (2), 8918 (2), 8982 (3), 9046 (1), 12630 (2), 12694 (2), 12758 (3), 12822 (1), 15318 (2), -tower 343: eta = -0.55, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 316.05 - sampling = 0, 10 SCIndices: 6935 (3), 8855 (2), 8919 (2), 8983 (3), 9047 (1), 12631 (2), 12695 (2), 12759 (3), 12823 (1), 15319 (2), -tower 344: eta = -0.55, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 1342.11 - sampling = 0, 10 SCIndices: 6936 (3), 8856 (2), 8920 (2), 8984 (3), 9048 (1), 12632 (2), 12696 (2), 12760 (0), 12824 (1), 15320 (2), -tower 345: eta = -0.55, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 272.329 - sampling = 0, 10 SCIndices: 6937 (3), 8857 (2), 8921 (2), 8985 (3), 9049 (1), 12633 (2), 12697 (2), 12761 (0), 12825 (1), 15321 (2), -tower 346: eta = -0.55, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = -32.6306 - sampling = 0, 10 SCIndices: 6938 (3), 8858 (2), 8922 (2), 8986 (3), 9050 (1), 12634 (2), 12698 (2), 12762 (0), 12826 (1), 15322 (2), -tower 347: eta = -0.55, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6939 (3), 8859 (2), 8923 (2), 8987 (3), 9051 (1), 12635 (2), 12699 (2), 12763 (0), 12827 (1), 15323 (2), -tower 348: eta = -0.55, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 539.74 - sampling = 0, 10 SCIndices: 6940 (3), 8860 (2), 8924 (2), 8988 (3), 9052 (1), 12636 (2), 12700 (2), 12764 (0), 12828 (1), 15324 (2), -tower 349: eta = -0.55, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 154.105 - sampling = 0, 10 SCIndices: 6941 (3), 8861 (2), 8925 (2), 8989 (3), 9053 (1), 12637 (2), 12701 (2), 12765 (0), 12829 (1), 15325 (2), -tower 350: eta = -0.55, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 1312.02 - sampling = 0, 10 SCIndices: 6942 (3), 8862 (2), 8926 (2), 8990 (0), 9054 (1), 12638 (2), 12702 (2), 12766 (0), 12830 (1), 15326 (2), -tower 351: eta = -0.55, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 501.354 - sampling = 0, 10 SCIndices: 6943 (3), 8863 (2), 8927 (2), 8991 (0), 9055 (1), 12639 (2), 12703 (2), 12767 (0), 12831 (1), 15327 (2), -tower 352: eta = -0.55, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 462.841 - sampling = 0, 10 SCIndices: 6944 (3), 8864 (2), 8928 (2), 8992 (0), 9056 (1), 12640 (2), 12704 (2), 12768 (0), 12832 (1), 15328 (2), -tower 353: eta = -0.55, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 389.274 - sampling = 0, 10 SCIndices: 6945 (3), 8865 (2), 8929 (2), 8993 (0), 9057 (1), 12641 (2), 12705 (2), 12769 (0), 12833 (1), 15329 (2), -tower 354: eta = -0.55, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 315.335 - sampling = 0, 10 SCIndices: 6946 (3), 8866 (2), 8930 (2), 8994 (0), 9058 (1), 12642 (2), 12706 (2), 12770 (0), 12834 (1), 15330 (2), -tower 355: eta = -0.55, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 78.5795 - sampling = 0, 10 SCIndices: 6947 (3), 8867 (2), 8931 (2), 8995 (0), 9059 (1), 12643 (2), 12707 (2), 12771 (0), 12835 (1), 15331 (2), -tower 356: eta = -0.55, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 257.069 - sampling = 0, 10 SCIndices: 6948 (3), 8868 (2), 8932 (2), 8996 (0), 9060 (1), 12644 (2), 12708 (2), 12772 (0), 12836 (1), 15332 (2), -tower 357: eta = -0.55, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 45.7223 - sampling = 0, 10 SCIndices: 6949 (3), 8869 (2), 8933 (2), 8997 (0), 9061 (1), 12645 (2), 12709 (2), 12773 (0), 12837 (1), 15333 (2), -tower 358: eta = -0.55, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 113.391 - sampling = 0, 10 SCIndices: 6950 (3), 8870 (2), 8934 (2), 8998 (0), 9062 (1), 12646 (2), 12710 (2), 12774 (0), 12838 (1), 15334 (2), -tower 359: eta = -0.55, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 82.9918 - sampling = 0, 10 SCIndices: 6951 (3), 8871 (2), 8935 (2), 8999 (0), 9063 (1), 12647 (2), 12711 (2), 12775 (0), 12839 (1), 15335 (2), -tower 360: eta = -0.55, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 298.537 - sampling = 0, 10 SCIndices: 6952 (3), 8872 (2), 8936 (2), 9000 (0), 9064 (1), 12648 (2), 12712 (2), 12776 (0), 12840 (1), 15336 (2), -tower 361: eta = -0.55, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6953 (3), 8873 (2), 8937 (2), 9001 (0), 9065 (1), 12649 (2), 12713 (2), 12777 (0), 12841 (1), 15337 (2), -tower 362: eta = -0.55, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 212.609 - sampling = 0, 10 SCIndices: 6954 (3), 8874 (2), 8938 (2), 9002 (0), 9066 (1), 12650 (2), 12714 (2), 12778 (0), 12842 (1), 15338 (2), -tower 363: eta = -0.55, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 398.466 - sampling = 0, 10 SCIndices: 6955 (3), 8875 (2), 8939 (2), 9003 (0), 9067 (1), 12651 (2), 12715 (2), 12779 (0), 12843 (1), 15339 (2), -tower 364: eta = -0.55, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6956 (3), 8876 (2), 8940 (2), 9004 (0), 9068 (1), 12652 (2), 12716 (2), 12780 (0), 12844 (1), 15340 (2), -tower 365: eta = -0.55, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 566.003 - sampling = 0, 10 SCIndices: 6957 (3), 8877 (2), 8941 (2), 9005 (0), 9069 (1), 12653 (2), 12717 (2), 12781 (0), 12845 (1), 15341 (2), -tower 366: eta = -0.55, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 269.934 - sampling = 0, 10 SCIndices: 6958 (3), 8878 (2), 8942 (2), 9006 (0), 9070 (1), 12654 (2), 12718 (2), 12782 (0), 12846 (1), 15342 (3), -tower 367: eta = -0.55, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 463.002 - sampling = 0, 10 SCIndices: 6959 (3), 8879 (2), 8943 (2), 9007 (0), 9071 (1), 12655 (2), 12719 (2), 12783 (0), 12847 (1), 15343 (3), -tower 368: eta = -0.55, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 254.546 - sampling = 0, 10 SCIndices: 6960 (0), 8880 (2), 8944 (2), 9008 (0), 9072 (1), 12656 (2), 12720 (2), 12784 (0), 12848 (1), 15344 (3), -tower 369: eta = -0.55, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 168.834 - sampling = 0, 10 SCIndices: 6961 (0), 8881 (2), 8945 (2), 9009 (0), 9073 (1), 12657 (2), 12721 (2), 12785 (0), 12849 (1), 15345 (3), -tower 370: eta = -0.55, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 538.859 - sampling = 0, 10 SCIndices: 6962 (0), 8882 (2), 8946 (2), 9010 (0), 9074 (1), 12658 (2), 12722 (2), 12786 (0), 12850 (1), 15346 (3), -tower 371: eta = -0.55, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 128.419 - sampling = 0, 10 SCIndices: 6963 (0), 8883 (2), 8947 (2), 9011 (0), 9075 (1), 12659 (2), 12723 (2), 12787 (0), 12851 (1), 15347 (3), -tower 372: eta = -0.55, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = -37.9428 - sampling = 0, 10 SCIndices: 6964 (0), 8884 (2), 8948 (2), 9012 (0), 9076 (1), 12660 (2), 12724 (2), 12788 (0), 12852 (1), 15348 (3), -tower 373: eta = -0.55, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6965 (0), 8885 (2), 8949 (2), 9013 (0), 9077 (1), 12661 (2), 12725 (2), 12789 (0), 12853 (1), 15349 (3), -tower 374: eta = -0.55, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 770.45 - sampling = 0, 10 SCIndices: 6966 (0), 8886 (2), 8950 (2), 9014 (0), 9078 (1), 12662 (2), 12726 (2), 12790 (1), 12854 (1), 15350 (3), -tower 375: eta = -0.55, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 20.4777 - sampling = 0, 10 SCIndices: 6967 (0), 8887 (2), 8951 (2), 9015 (0), 9079 (1), 12663 (2), 12727 (2), 12791 (1), 12855 (1), 15351 (3), -tower 376: eta = -0.55, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 301.651 - sampling = 0, 10 SCIndices: 6968 (0), 8888 (2), 8952 (2), 9016 (0), 9080 (1), 12664 (2), 12728 (2), 12792 (1), 12856 (1), 15352 (3), -tower 377: eta = -0.55, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 339.278 - sampling = 0, 10 SCIndices: 6969 (0), 8889 (2), 8953 (2), 9017 (0), 9081 (1), 12665 (2), 12729 (2), 12793 (1), 12857 (1), 15353 (3), -tower 378: eta = -0.55, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 832.726 - sampling = 0, 10 SCIndices: 6970 (0), 8890 (2), 8954 (2), 9018 (0), 9082 (1), 12666 (2), 12730 (2), 12794 (1), 12858 (1), 15354 (3), -tower 379: eta = -0.55, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 580.825 - sampling = 0, 10 SCIndices: 6971 (0), 8891 (2), 8955 (2), 9019 (0), 9083 (1), 12667 (2), 12731 (2), 12795 (1), 12859 (1), 15355 (3), -tower 380: eta = -0.55, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6972 (0), 8892 (2), 8956 (2), 9020 (1), 9084 (1), 12668 (2), 12732 (3), 12796 (1), 12860 (1), 15356 (3), -tower 381: eta = -0.55, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 529.769 - sampling = 0, 10 SCIndices: 6973 (0), 8893 (2), 8957 (2), 9021 (1), 9085 (1), 12669 (2), 12733 (3), 12797 (1), 12861 (1), 15357 (3), -tower 382: eta = -0.55, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 209.193 - sampling = 0, 10 SCIndices: 6974 (0), 8894 (2), 8958 (2), 9022 (1), 9086 (1), 12670 (2), 12734 (3), 12798 (1), 12862 (1), 15358 (3), -tower 383: eta = -0.55, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 274.13 - sampling = 0, 10 SCIndices: 6975 (0), 8895 (2), 8959 (2), 9023 (1), 9087 (1), 12671 (2), 12735 (3), 12799 (1), 12863 (1), 15359 (3), -tower 384: eta = -0.65, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 264.336 - sampling = 0, 10 SCIndices: 6976 (0), 9088 (1), 9152 (2), 9216 (2), 9280 (0), 12864 (1), 12928 (2), 12992 (2), 13056 (0), 15360 (3), -tower 385: eta = -0.65, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 324.152 - sampling = 0, 10 SCIndices: 6977 (0), 9089 (1), 9153 (2), 9217 (2), 9281 (0), 12865 (1), 12929 (2), 12993 (2), 13057 (0), 15361 (3), -tower 386: eta = -0.65, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6978 (0), 9090 (1), 9154 (2), 9218 (2), 9282 (0), 12866 (1), 12930 (2), 12994 (2), 13058 (0), 15362 (3), -tower 387: eta = -0.65, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 161.032 - sampling = 0, 10 SCIndices: 6979 (0), 9091 (1), 9155 (2), 9219 (2), 9283 (0), 12867 (1), 12931 (2), 12995 (2), 13059 (0), 15363 (3), -tower 388: eta = -0.65, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 667.136 - sampling = 0, 10 SCIndices: 6980 (0), 9092 (1), 9156 (2), 9220 (2), 9284 (0), 12868 (1), 12932 (2), 12996 (2), 13060 (0), 15364 (3), -tower 389: eta = -0.65, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 599.617 - sampling = 0, 10 SCIndices: 6981 (0), 9093 (1), 9157 (2), 9221 (2), 9285 (0), 12869 (1), 12933 (2), 12997 (2), 13061 (0), 15365 (3), -tower 390: eta = -0.65, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 144.321 - sampling = 0, 10 SCIndices: 6982 (0), 9094 (1), 9158 (2), 9222 (2), 9286 (0), 12870 (1), 12934 (2), 12998 (2), 13062 (0), 15366 (3), -tower 391: eta = -0.65, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 25.1002 - sampling = 0, 10 SCIndices: 6983 (0), 9095 (1), 9159 (2), 9223 (2), 9287 (0), 12871 (1), 12935 (2), 12999 (2), 13063 (0), 15367 (3), -tower 392: eta = -0.65, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 45.3501 - sampling = 0, 10 SCIndices: 6984 (0), 9096 (1), 9160 (2), 9224 (2), 9288 (0), 12872 (1), 12936 (2), 13000 (2), 13064 (0), 15368 (3), -tower 393: eta = -0.65, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6985 (0), 9097 (1), 9161 (2), 9225 (2), 9289 (0), 12873 (1), 12937 (2), 13001 (2), 13065 (0), 15369 (3), -tower 394: eta = -0.65, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = -118.262 - sampling = 0, 10 SCIndices: 6986 (0), 9098 (1), 9162 (2), 9226 (2), 9290 (0), 12874 (1), 12938 (2), 13002 (2), 13066 (0), 15370 (0), -tower 395: eta = -0.65, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 128.139 - sampling = 0, 10 SCIndices: 6987 (0), 9099 (1), 9163 (2), 9227 (2), 9291 (0), 12875 (1), 12939 (2), 13003 (2), 13067 (0), 15371 (0), -tower 396: eta = -0.65, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 628.246 - sampling = 0, 10 SCIndices: 6988 (0), 9100 (1), 9164 (2), 9228 (2), 9292 (0), 12876 (1), 12940 (2), 13004 (2), 13068 (0), 15372 (0), -tower 397: eta = -0.65, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 281.124 - sampling = 0, 10 SCIndices: 6989 (0), 9101 (1), 9165 (2), 9229 (2), 9293 (0), 12877 (1), 12941 (2), 13005 (2), 13069 (0), 15373 (0), -tower 398: eta = -0.65, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 163.042 - sampling = 0, 10 SCIndices: 6990 (1), 9102 (1), 9166 (2), 9230 (2), 9294 (0), 12878 (1), 12942 (2), 13006 (2), 13070 (0), 15374 (0), -tower 399: eta = -0.65, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6991 (1), 9103 (1), 9167 (2), 9231 (2), 9295 (0), 12879 (1), 12943 (2), 13007 (2), 13071 (0), 15375 (0), -tower 400: eta = -0.65, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 294.475 - sampling = 0, 10 SCIndices: 6992 (1), 9104 (1), 9168 (2), 9232 (2), 9296 (0), 12880 (1), 12944 (2), 13008 (2), 13072 (0), 15376 (0), -tower 401: eta = -0.65, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 236.852 - sampling = 0, 10 SCIndices: 6993 (1), 9105 (1), 9169 (2), 9233 (2), 9297 (0), 12881 (1), 12945 (2), 13009 (2), 13073 (0), 15377 (0), -tower 402: eta = -0.65, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 43.4524 - sampling = 0, 10 SCIndices: 6994 (1), 9106 (1), 9170 (2), 9234 (2), 9298 (0), 12882 (1), 12946 (2), 13010 (2), 13074 (0), 15378 (0), -tower 403: eta = -0.65, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 6995 (1), 9107 (1), 9171 (2), 9235 (2), 9299 (0), 12883 (1), 12947 (2), 13011 (2), 13075 (0), 15379 (0), -tower 404: eta = -0.65, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 369.478 - sampling = 0, 10 SCIndices: 6996 (1), 9108 (1), 9172 (2), 9236 (2), 9300 (0), 12884 (1), 12948 (2), 13012 (2), 13076 (0), 15380 (0), -tower 405: eta = -0.65, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 67.0204 - sampling = 0, 10 SCIndices: 6997 (1), 9109 (1), 9173 (2), 9237 (2), 9301 (0), 12885 (1), 12949 (2), 13013 (2), 13077 (0), 15381 (0), -tower 406: eta = -0.65, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 345.309 - sampling = 0, 10 SCIndices: 6998 (1), 9110 (1), 9174 (2), 9238 (2), 9302 (0), 12886 (1), 12950 (2), 13014 (2), 13078 (0), 15382 (0), -tower 407: eta = -0.65, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 278.175 - sampling = 0, 10 SCIndices: 6999 (1), 9111 (1), 9175 (2), 9239 (2), 9303 (0), 12887 (1), 12951 (2), 13015 (2), 13079 (0), 15383 (0), -tower 408: eta = -0.65, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 5.87584 - sampling = 0, 10 SCIndices: 7000 (1), 9112 (1), 9176 (2), 9240 (2), 9304 (0), 12888 (1), 12952 (2), 13016 (2), 13080 (1), 15384 (0), -tower 409: eta = -0.65, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 49.3263 - sampling = 0, 10 SCIndices: 7001 (1), 9113 (1), 9177 (2), 9241 (2), 9305 (0), 12889 (1), 12953 (2), 13017 (2), 13081 (1), 15385 (0), -tower 410: eta = -0.65, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 385.565 - sampling = 0, 10 SCIndices: 7002 (1), 9114 (1), 9178 (2), 9242 (2), 9306 (0), 12890 (1), 12954 (2), 13018 (2), 13082 (1), 15386 (0), -tower 411: eta = -0.65, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 300.073 - sampling = 0, 10 SCIndices: 7003 (1), 9115 (1), 9179 (2), 9243 (2), 9307 (0), 12891 (1), 12955 (2), 13019 (2), 13083 (1), 15387 (0), -tower 412: eta = -0.65, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 267.28 - sampling = 0, 10 SCIndices: 7004 (1), 9116 (1), 9180 (2), 9244 (2), 9308 (0), 12892 (1), 12956 (2), 13020 (2), 13084 (1), 15388 (0), -tower 413: eta = -0.65, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 137.245 - sampling = 0, 10 SCIndices: 7005 (1), 9117 (1), 9181 (2), 9245 (2), 9309 (0), 12893 (1), 12957 (2), 13021 (2), 13085 (1), 15389 (0), -tower 414: eta = -0.65, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = -31.7855 - sampling = 0, 10 SCIndices: 7006 (1), 9118 (1), 9182 (2), 9246 (2), 9310 (1), 12894 (1), 12958 (2), 13022 (3), 13086 (1), 15390 (0), -tower 415: eta = -0.65, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 105.182 - sampling = 0, 10 SCIndices: 7007 (1), 9119 (1), 9183 (2), 9247 (2), 9311 (1), 12895 (1), 12959 (2), 13023 (3), 13087 (1), 15391 (0), -tower 416: eta = -0.65, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 719.853 - sampling = 0, 10 SCIndices: 7008 (1), 9120 (1), 9184 (2), 9248 (2), 9312 (1), 12896 (1), 12960 (2), 13024 (3), 13088 (1), 15392 (0), -tower 417: eta = -0.65, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 548.295 - sampling = 0, 10 SCIndices: 7009 (1), 9121 (1), 9185 (2), 9249 (2), 9313 (1), 12897 (1), 12961 (2), 13025 (3), 13089 (1), 15393 (0), -tower 418: eta = -0.65, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 117.333 - sampling = 0, 10 SCIndices: 7010 (1), 9122 (1), 9186 (2), 9250 (2), 9314 (1), 12898 (1), 12962 (2), 13026 (3), 13090 (1), 15394 (0), -tower 419: eta = -0.65, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 147.682 - sampling = 0, 10 SCIndices: 7011 (1), 9123 (1), 9187 (2), 9251 (2), 9315 (1), 12899 (1), 12963 (2), 13027 (3), 13091 (1), 15395 (0), -tower 420: eta = -0.65, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 1546.25 - sampling = 0, 10 SCIndices: 7012 (1), 9124 (1), 9188 (2), 9252 (3), 9316 (1), 12900 (1), 12964 (2), 13028 (3), 13092 (1), 15396 (0), -tower 421: eta = -0.65, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = -74.4207 - sampling = 0, 10 SCIndices: 7013 (1), 9125 (1), 9189 (2), 9253 (3), 9317 (1), 12901 (1), 12965 (2), 13029 (3), 13093 (1), 15397 (0), -tower 422: eta = -0.65, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 457.141 - sampling = 0, 10 SCIndices: 7014 (1), 9126 (1), 9190 (2), 9254 (3), 9318 (1), 12902 (1), 12966 (2), 13030 (3), 13094 (1), 15398 (0), -tower 423: eta = -0.65, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7015 (1), 9127 (1), 9191 (2), 9255 (3), 9319 (1), 12903 (1), 12967 (2), 13031 (3), 13095 (1), 15399 (0), -tower 424: eta = -0.65, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 263.567 - sampling = 0, 10 SCIndices: 7016 (1), 9128 (1), 9192 (2), 9256 (3), 9320 (1), 12904 (1), 12968 (2), 13032 (3), 13096 (1), 15400 (1), -tower 425: eta = -0.65, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7017 (1), 9129 (1), 9193 (2), 9257 (3), 9321 (1), 12905 (1), 12969 (2), 13033 (3), 13097 (1), 15401 (1), -tower 426: eta = -0.65, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 179.474 - sampling = 0, 10 SCIndices: 7018 (1), 9130 (1), 9194 (2), 9258 (3), 9322 (1), 12906 (1), 12970 (2), 13034 (3), 13098 (1), 15402 (1), -tower 427: eta = -0.65, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 354.87 - sampling = 0, 10 SCIndices: 7019 (1), 9131 (1), 9195 (2), 9259 (3), 9323 (1), 12907 (1), 12971 (2), 13035 (3), 13099 (1), 15403 (1), -tower 428: eta = -0.65, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7020 (1), 9132 (1), 9196 (2), 9260 (3), 9324 (1), 12908 (2), 12972 (2), 13036 (3), 13100 (1), 15404 (1), -tower 429: eta = -0.65, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 532.226 - sampling = 0, 10 SCIndices: 7021 (1), 9133 (1), 9197 (2), 9261 (3), 9325 (1), 12909 (2), 12973 (2), 13037 (3), 13101 (1), 15405 (1), -tower 430: eta = -0.65, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 102.437 - sampling = 0, 10 SCIndices: 7022 (1), 9134 (1), 9198 (2), 9262 (3), 9326 (1), 12910 (2), 12974 (2), 13038 (3), 13102 (1), 15406 (1), -tower 431: eta = -0.65, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 396.589 - sampling = 0, 10 SCIndices: 7023 (1), 9135 (1), 9199 (2), 9263 (3), 9327 (1), 12911 (2), 12975 (2), 13039 (3), 13103 (1), 15407 (1), -tower 432: eta = -0.65, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 281.784 - sampling = 0, 10 SCIndices: 7024 (1), 9136 (1), 9200 (2), 9264 (3), 9328 (1), 12912 (2), 12976 (2), 13040 (3), 13104 (1), 15408 (1), -tower 433: eta = -0.65, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 194.392 - sampling = 0, 10 SCIndices: 7025 (1), 9137 (1), 9201 (2), 9265 (3), 9329 (1), 12913 (2), 12977 (2), 13041 (3), 13105 (1), 15409 (1), -tower 434: eta = -0.65, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 244.419 - sampling = 0, 10 SCIndices: 7026 (1), 9138 (2), 9202 (2), 9266 (3), 9330 (1), 12914 (2), 12978 (2), 13042 (3), 13106 (1), 15410 (1), -tower 435: eta = -0.65, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 643.374 - sampling = 0, 10 SCIndices: 7027 (1), 9139 (2), 9203 (2), 9267 (3), 9331 (1), 12915 (2), 12979 (2), 13043 (3), 13107 (1), 15411 (1), -tower 436: eta = -0.65, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 451.98 - sampling = 0, 10 SCIndices: 7028 (1), 9140 (2), 9204 (2), 9268 (3), 9332 (1), 12916 (2), 12980 (2), 13044 (3), 13108 (1), 15412 (1), -tower 437: eta = -0.65, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7029 (1), 9141 (2), 9205 (2), 9269 (3), 9333 (1), 12917 (2), 12981 (2), 13045 (3), 13109 (1), 15413 (1), -tower 438: eta = -0.65, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 436.575 - sampling = 0, 10 SCIndices: 7030 (1), 9142 (2), 9206 (2), 9270 (3), 9334 (1), 12918 (2), 12982 (2), 13046 (3), 13110 (1), 15414 (1), -tower 439: eta = -0.65, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 138.652 - sampling = 0, 10 SCIndices: 7031 (1), 9143 (2), 9207 (2), 9271 (3), 9335 (1), 12919 (2), 12983 (2), 13047 (3), 13111 (1), 15415 (1), -tower 440: eta = -0.65, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 397.02 - sampling = 0, 10 SCIndices: 7032 (1), 9144 (2), 9208 (2), 9272 (3), 9336 (1), 12920 (2), 12984 (2), 13048 (3), 13112 (1), 15416 (1), -tower 441: eta = -0.65, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 42.7622 - sampling = 0, 10 SCIndices: 7033 (1), 9145 (2), 9209 (2), 9273 (3), 9337 (1), 12921 (2), 12985 (2), 13049 (3), 13113 (1), 15417 (1), -tower 442: eta = -0.65, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 577.175 - sampling = 0, 10 SCIndices: 7034 (1), 9146 (2), 9210 (2), 9274 (3), 9338 (1), 12922 (2), 12986 (2), 13050 (0), 13114 (1), 15418 (1), -tower 443: eta = -0.65, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 934.048 - sampling = 0, 10 SCIndices: 7035 (1), 9147 (2), 9211 (2), 9275 (3), 9339 (1), 12923 (2), 12987 (2), 13051 (0), 13115 (1), 15419 (1), -tower 444: eta = -0.65, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7036 (1), 9148 (2), 9212 (2), 9276 (3), 9340 (1), 12924 (2), 12988 (2), 13052 (0), 13116 (1), 15420 (1), -tower 445: eta = -0.65, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 190.077 - sampling = 0, 10 SCIndices: 7037 (1), 9149 (2), 9213 (2), 9277 (3), 9341 (1), 12925 (2), 12989 (2), 13053 (0), 13117 (1), 15421 (1), -tower 446: eta = -0.65, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 110.373 - sampling = 0, 10 SCIndices: 7038 (1), 9150 (2), 9214 (2), 9278 (3), 9342 (1), 12926 (2), 12990 (2), 13054 (0), 13118 (1), 15422 (1), -tower 447: eta = -0.65, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 166.332 - sampling = 0, 10 SCIndices: 7039 (1), 9151 (2), 9215 (2), 9279 (3), 9343 (1), 12927 (2), 12991 (2), 13055 (0), 13119 (1), 15423 (1), -tower 448: eta = -0.75, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7040 (1), 9344 (1), 9408 (1), 9472 (2), 9536 (2), 13120 (1), 13184 (1), 13248 (2), 13312 (3), 15424 (1), -tower 449: eta = -0.75, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 961.113 - sampling = 0, 10 SCIndices: 7041 (1), 9345 (1), 9409 (1), 9473 (2), 9537 (2), 13121 (1), 13185 (1), 13249 (2), 13313 (3), 15425 (1), -tower 450: eta = -0.75, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 630.047 - sampling = 0, 10 SCIndices: 7042 (1), 9346 (1), 9410 (1), 9474 (2), 9538 (2), 13122 (1), 13186 (1), 13250 (2), 13314 (3), 15426 (1), -tower 451: eta = -0.75, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 687.237 - sampling = 0, 10 SCIndices: 7043 (1), 9347 (1), 9411 (1), 9475 (2), 9539 (2), 13123 (1), 13187 (1), 13251 (2), 13315 (3), 15427 (1), -tower 452: eta = -0.75, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7044 (1), 9348 (1), 9412 (1), 9476 (2), 9540 (2), 13124 (1), 13188 (1), 13252 (2), 13316 (3), 15428 (1), -tower 453: eta = -0.75, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 159.165 - sampling = 0, 10 SCIndices: 7045 (1), 9349 (1), 9413 (1), 9477 (2), 9541 (2), 13125 (1), 13189 (1), 13253 (2), 13317 (3), 15429 (1), -tower 454: eta = -0.75, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7046 (1), 9350 (1), 9414 (1), 9478 (2), 9542 (3), 13126 (1), 13190 (1), 13254 (2), 13318 (3), 15430 (1), -tower 455: eta = -0.75, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 206.54 - sampling = 0, 10 SCIndices: 7047 (1), 9351 (1), 9415 (1), 9479 (2), 9543 (3), 13127 (1), 13191 (1), 13255 (2), 13319 (3), 15431 (1), -tower 456: eta = -0.75, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7048 (1), 9352 (1), 9416 (1), 9480 (2), 9544 (3), 13128 (1), 13192 (1), 13256 (2), 13320 (3), 15432 (1), -tower 457: eta = -0.75, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 1091.26 - sampling = 0, 10 SCIndices: 7049 (1), 9353 (1), 9417 (1), 9481 (2), 9545 (3), 13129 (1), 13193 (1), 13257 (2), 13321 (3), 15433 (1), -tower 458: eta = -0.75, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 290.375 - sampling = 0, 10 SCIndices: 7050 (1), 9354 (1), 9418 (1), 9482 (2), 9546 (3), 13130 (1), 13194 (1), 13258 (2), 13322 (3), 15434 (1), -tower 459: eta = -0.75, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 191.133 - sampling = 0, 10 SCIndices: 7051 (1), 9355 (1), 9419 (1), 9483 (2), 9547 (3), 13131 (1), 13195 (1), 13259 (2), 13323 (3), 15435 (1), -tower 460: eta = -0.75, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7052 (1), 9356 (1), 9420 (1), 9484 (2), 9548 (3), 13132 (1), 13196 (1), 13260 (2), 13324 (3), 15436 (1), -tower 461: eta = -0.75, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 148.873 - sampling = 0, 10 SCIndices: 7053 (1), 9357 (1), 9421 (1), 9485 (2), 9549 (3), 13133 (1), 13197 (1), 13261 (2), 13325 (3), 15437 (1), -tower 462: eta = -0.75, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 36.8523 - sampling = 0, 10 SCIndices: 7054 (1), 9358 (1), 9422 (1), 9486 (2), 9550 (3), 13134 (1), 13198 (2), 13262 (2), 13326 (3), 15438 (1), -tower 463: eta = -0.75, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 187.602 - sampling = 0, 10 SCIndices: 7055 (1), 9359 (1), 9423 (1), 9487 (2), 9551 (3), 13135 (1), 13199 (2), 13263 (2), 13327 (3), 15439 (1), -tower 464: eta = -0.75, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 506.017 - sampling = 0, 10 SCIndices: 7056 (1), 9360 (1), 9424 (1), 9488 (2), 9552 (3), 13136 (1), 13200 (2), 13264 (2), 13328 (3), 15440 (1), -tower 465: eta = -0.75, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 174.782 - sampling = 0, 10 SCIndices: 7057 (1), 9361 (1), 9425 (1), 9489 (2), 9553 (3), 13137 (1), 13201 (2), 13265 (2), 13329 (3), 15441 (1), -tower 466: eta = -0.75, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 225.969 - sampling = 0, 10 SCIndices: 7058 (1), 9362 (1), 9426 (1), 9490 (2), 9554 (3), 13138 (1), 13202 (2), 13266 (2), 13330 (3), 15442 (1), -tower 467: eta = -0.75, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 169.847 - sampling = 0, 10 SCIndices: 7059 (1), 9363 (1), 9427 (1), 9491 (2), 9555 (3), 13139 (1), 13203 (2), 13267 (2), 13331 (3), 15443 (1), -tower 468: eta = -0.75, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 320.872 - sampling = 0, 10 SCIndices: 7060 (1), 9364 (1), 9428 (2), 9492 (2), 9556 (3), 13140 (1), 13204 (2), 13268 (2), 13332 (3), 15444 (1), -tower 469: eta = -0.75, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 307.704 - sampling = 0, 10 SCIndices: 7061 (1), 9365 (1), 9429 (2), 9493 (2), 9557 (3), 13141 (1), 13205 (2), 13269 (2), 13333 (3), 15445 (1), -tower 470: eta = -0.75, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 872.018 - sampling = 0, 10 SCIndices: 7062 (1), 9366 (1), 9430 (2), 9494 (2), 9558 (3), 13142 (1), 13206 (2), 13270 (2), 13334 (3), 15446 (1), -tower 471: eta = -0.75, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 417.449 - sampling = 0, 10 SCIndices: 7063 (1), 9367 (1), 9431 (2), 9495 (2), 9559 (3), 13143 (1), 13207 (2), 13271 (2), 13335 (3), 15447 (1), -tower 472: eta = -0.75, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 518.313 - sampling = 0, 10 SCIndices: 7064 (1), 9368 (1), 9432 (2), 9496 (2), 9560 (3), 13144 (1), 13208 (2), 13272 (2), 13336 (3), 15448 (1), -tower 473: eta = -0.75, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 304.801 - sampling = 0, 10 SCIndices: 7065 (1), 9369 (1), 9433 (2), 9497 (2), 9561 (3), 13145 (1), 13209 (2), 13273 (2), 13337 (3), 15449 (1), -tower 474: eta = -0.75, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 522.369 - sampling = 0, 10 SCIndices: 7066 (1), 9370 (1), 9434 (2), 9498 (2), 9562 (3), 13146 (1), 13210 (2), 13274 (2), 13338 (3), 15450 (1), -tower 475: eta = -0.75, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7067 (1), 9371 (1), 9435 (2), 9499 (2), 9563 (3), 13147 (1), 13211 (2), 13275 (2), 13339 (3), 15451 (1), -tower 476: eta = -0.75, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 687.558 - sampling = 0, 10 SCIndices: 7068 (1), 9372 (1), 9436 (2), 9500 (2), 9564 (3), 13148 (1), 13212 (2), 13276 (2), 13340 (0), 15452 (1), -tower 477: eta = -0.75, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7069 (1), 9373 (1), 9437 (2), 9501 (2), 9565 (3), 13149 (1), 13213 (2), 13277 (2), 13341 (0), 15453 (1), -tower 478: eta = -0.75, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 196.906 - sampling = 0, 10 SCIndices: 7070 (1), 9374 (1), 9438 (2), 9502 (2), 9566 (3), 13150 (1), 13214 (2), 13278 (2), 13342 (0), 15454 (1), -tower 479: eta = -0.75, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 275.252 - sampling = 0, 10 SCIndices: 7071 (1), 9375 (1), 9439 (2), 9503 (2), 9567 (3), 13151 (1), 13215 (2), 13279 (2), 13343 (0), 15455 (1), -tower 480: eta = -0.75, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 106.287 - sampling = 0, 10 SCIndices: 7072 (1), 9376 (1), 9440 (2), 9504 (2), 9568 (3), 13152 (1), 13216 (2), 13280 (2), 13344 (0), 15456 (1), -tower 481: eta = -0.75, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = -33.1982 - sampling = 0, 10 SCIndices: 7073 (1), 9377 (1), 9441 (2), 9505 (2), 9569 (3), 13153 (1), 13217 (2), 13281 (2), 13345 (0), 15457 (1), -tower 482: eta = -0.75, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 528.613 - sampling = 0, 10 SCIndices: 7074 (1), 9378 (1), 9442 (2), 9506 (2), 9570 (0), 13154 (1), 13218 (2), 13282 (2), 13346 (0), 15458 (1), -tower 483: eta = -0.75, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 409.739 - sampling = 0, 10 SCIndices: 7075 (1), 9379 (1), 9443 (2), 9507 (2), 9571 (0), 13155 (1), 13219 (2), 13283 (2), 13347 (0), 15459 (1), -tower 484: eta = -0.75, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 77.0513 - sampling = 0, 10 SCIndices: 7076 (1), 9380 (1), 9444 (2), 9508 (2), 9572 (0), 13156 (1), 13220 (2), 13284 (2), 13348 (0), 15460 (1), -tower 485: eta = -0.75, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 810.683 - sampling = 0, 10 SCIndices: 7077 (1), 9381 (1), 9445 (2), 9509 (2), 9573 (0), 13157 (1), 13221 (2), 13285 (2), 13349 (0), 15461 (1), -tower 486: eta = -0.75, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 297.483 - sampling = 0, 10 SCIndices: 7078 (1), 9382 (1), 9446 (2), 9510 (2), 9574 (0), 13158 (1), 13222 (2), 13286 (2), 13350 (0), 15462 (1), -tower 487: eta = -0.75, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7079 (1), 9383 (1), 9447 (2), 9511 (2), 9575 (0), 13159 (1), 13223 (2), 13287 (2), 13351 (0), 15463 (1), -tower 488: eta = -0.75, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 155.784 - sampling = 0, 10 SCIndices: 7080 (1), 9384 (1), 9448 (2), 9512 (2), 9576 (0), 13160 (1), 13224 (2), 13288 (2), 13352 (0), 15464 (1), -tower 489: eta = -0.75, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 697.004 - sampling = 0, 10 SCIndices: 7081 (1), 9385 (1), 9449 (2), 9513 (2), 9577 (0), 13161 (1), 13225 (2), 13289 (2), 13353 (0), 15465 (1), -tower 490: eta = -0.75, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7082 (1), 9386 (1), 9450 (2), 9514 (2), 9578 (0), 13162 (1), 13226 (2), 13290 (2), 13354 (0), 15466 (1), -tower 491: eta = -0.75, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 76.1998 - sampling = 0, 10 SCIndices: 7083 (1), 9387 (1), 9451 (2), 9515 (2), 9579 (0), 13163 (1), 13227 (2), 13291 (2), 13355 (0), 15467 (1), -tower 492: eta = -0.75, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 571.637 - sampling = 0, 10 SCIndices: 7084 (1), 9388 (1), 9452 (2), 9516 (2), 9580 (0), 13164 (1), 13228 (2), 13292 (2), 13356 (0), 15468 (1), -tower 493: eta = -0.75, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 227.857 - sampling = 0, 10 SCIndices: 7085 (1), 9389 (1), 9453 (2), 9517 (2), 9581 (0), 13165 (1), 13229 (2), 13293 (2), 13357 (0), 15469 (1), -tower 494: eta = -0.75, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 334.769 - sampling = 0, 10 SCIndices: 7086 (1), 9390 (1), 9454 (2), 9518 (2), 9582 (0), 13166 (1), 13230 (2), 13294 (2), 13358 (0), 15470 (1), -tower 495: eta = -0.75, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7087 (1), 9391 (1), 9455 (2), 9519 (2), 9583 (0), 13167 (1), 13231 (2), 13295 (2), 13359 (0), 15471 (1), -tower 496: eta = -0.75, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 459.162 - sampling = 0, 10 SCIndices: 7088 (1), 9392 (1), 9456 (2), 9520 (2), 9584 (0), 13168 (1), 13232 (2), 13296 (2), 13360 (0), 15472 (1), -tower 497: eta = -0.75, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 343.823 - sampling = 0, 10 SCIndices: 7089 (1), 9393 (1), 9457 (2), 9521 (2), 9585 (0), 13169 (1), 13233 (2), 13297 (2), 13361 (0), 15473 (1), -tower 498: eta = -0.75, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 696.074 - sampling = 0, 10 SCIndices: 7090 (1), 9394 (1), 9458 (2), 9522 (2), 9586 (0), 13170 (1), 13234 (2), 13298 (2), 13362 (0), 15474 (1), -tower 499: eta = -0.75, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 386.97 - sampling = 0, 10 SCIndices: 7091 (1), 9395 (1), 9459 (2), 9523 (2), 9587 (0), 13171 (1), 13235 (2), 13299 (2), 13363 (0), 15475 (1), -tower 500: eta = -0.75, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 188.46 - sampling = 0, 10 SCIndices: 7092 (1), 9396 (1), 9460 (2), 9524 (2), 9588 (0), 13172 (1), 13236 (2), 13300 (2), 13364 (0), 15476 (1), -tower 501: eta = -0.75, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 412.039 - sampling = 0, 10 SCIndices: 7093 (1), 9397 (1), 9461 (2), 9525 (2), 9589 (0), 13173 (1), 13237 (2), 13301 (2), 13365 (0), 15477 (1), -tower 502: eta = -0.75, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 106.337 - sampling = 0, 10 SCIndices: 7094 (1), 9398 (1), 9462 (2), 9526 (2), 9590 (0), 13174 (1), 13238 (2), 13302 (2), 13366 (0), 15478 (1), -tower 503: eta = -0.75, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 103.864 - sampling = 0, 10 SCIndices: 7095 (1), 9399 (1), 9463 (2), 9527 (2), 9591 (0), 13175 (1), 13239 (2), 13303 (2), 13367 (0), 15479 (1), -tower 504: eta = -0.75, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7096 (1), 9400 (1), 9464 (2), 9528 (2), 9592 (0), 13176 (1), 13240 (2), 13304 (2), 13368 (0), 15480 (1), -tower 505: eta = -0.75, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 372.698 - sampling = 0, 10 SCIndices: 7097 (1), 9401 (1), 9465 (2), 9529 (2), 9593 (0), 13177 (1), 13241 (2), 13305 (2), 13369 (0), 15481 (1), -tower 506: eta = -0.75, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 76.1816 - sampling = 0, 10 SCIndices: 7098 (1), 9402 (1), 9466 (2), 9530 (2), 9594 (0), 13178 (1), 13242 (2), 13306 (2), 13370 (1), 15482 (1), -tower 507: eta = -0.75, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 47.9041 - sampling = 0, 10 SCIndices: 7099 (1), 9403 (1), 9467 (2), 9531 (2), 9595 (0), 13179 (1), 13243 (2), 13307 (2), 13371 (1), 15483 (1), -tower 508: eta = -0.75, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 286.275 - sampling = 0, 10 SCIndices: 7100 (1), 9404 (1), 9468 (2), 9532 (2), 9596 (0), 13180 (1), 13244 (2), 13308 (2), 13372 (1), 15484 (1), -tower 509: eta = -0.75, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 113.495 - sampling = 0, 10 SCIndices: 7101 (1), 9405 (1), 9469 (2), 9533 (2), 9597 (0), 13181 (1), 13245 (2), 13309 (2), 13373 (1), 15485 (1), -tower 510: eta = -0.75, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 101.611 - sampling = 0, 10 SCIndices: 7102 (1), 9406 (1), 9470 (2), 9534 (2), 9598 (0), 13182 (1), 13246 (2), 13310 (2), 13374 (1), 15486 (1), -tower 511: eta = -0.75, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 247.153 - sampling = 0, 10 SCIndices: 7103 (1), 9407 (1), 9471 (2), 9535 (2), 9599 (0), 13183 (1), 13247 (2), 13311 (2), 13375 (1), 15487 (1), -tower 512: eta = -0.85, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 1.42204 - sampling = 0, 10 SCIndices: 7104 (1), 9600 (1), 9664 (1), 9728 (2), 9792 (2), 13376 (1), 13440 (1), 13504 (2), 13568 (2), 15488 (1), -tower 513: eta = -0.85, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7105 (1), 9601 (1), 9665 (1), 9729 (2), 9793 (2), 13377 (1), 13441 (1), 13505 (2), 13569 (2), 15489 (1), -tower 514: eta = -0.85, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7106 (1), 9602 (1), 9666 (1), 9730 (2), 9794 (2), 13378 (1), 13442 (1), 13506 (2), 13570 (2), 15490 (1), -tower 515: eta = -0.85, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 18.1489 - sampling = 0, 10 SCIndices: 7107 (1), 9603 (1), 9667 (1), 9731 (2), 9795 (2), 13379 (1), 13443 (1), 13507 (2), 13571 (2), 15491 (1), -tower 516: eta = -0.85, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7108 (2), 9604 (1), 9668 (1), 9732 (2), 9796 (2), 13380 (1), 13444 (1), 13508 (2), 13572 (2), 15492 (1), -tower 517: eta = -0.85, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 382.819 - sampling = 0, 10 SCIndices: 7109 (2), 9605 (1), 9669 (1), 9733 (2), 9797 (2), 13381 (1), 13445 (1), 13509 (2), 13573 (2), 15493 (1), -tower 518: eta = -0.85, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 393.228 - sampling = 0, 10 SCIndices: 7110 (2), 9606 (1), 9670 (1), 9734 (2), 9798 (2), 13382 (1), 13446 (1), 13510 (2), 13574 (2), 15494 (1), -tower 519: eta = -0.85, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 924.501 - sampling = 0, 10 SCIndices: 7111 (2), 9607 (1), 9671 (1), 9735 (2), 9799 (2), 13383 (1), 13447 (1), 13511 (2), 13575 (2), 15495 (1), -tower 520: eta = -0.85, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7112 (2), 9608 (1), 9672 (1), 9736 (2), 9800 (2), 13384 (1), 13448 (1), 13512 (2), 13576 (2), 15496 (1), -tower 521: eta = -0.85, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 257.876 - sampling = 0, 10 SCIndices: 7113 (2), 9609 (1), 9673 (1), 9737 (2), 9801 (2), 13385 (1), 13449 (1), 13513 (2), 13577 (2), 15497 (1), -tower 522: eta = -0.85, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 170.885 - sampling = 0, 10 SCIndices: 7114 (2), 9610 (1), 9674 (1), 9738 (2), 9802 (2), 13386 (1), 13450 (1), 13514 (2), 13578 (2), 15498 (1), -tower 523: eta = -0.85, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 288.951 - sampling = 0, 10 SCIndices: 7115 (2), 9611 (1), 9675 (1), 9739 (2), 9803 (2), 13387 (1), 13451 (1), 13515 (2), 13579 (2), 15499 (1), -tower 524: eta = -0.85, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 1135.99 - sampling = 0, 10 SCIndices: 7116 (2), 9612 (1), 9676 (1), 9740 (2), 9804 (2), 13388 (1), 13452 (1), 13516 (2), 13580 (2), 15500 (1), -tower 525: eta = -0.85, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 233.442 - sampling = 0, 10 SCIndices: 7117 (2), 9613 (1), 9677 (1), 9741 (2), 9805 (2), 13389 (1), 13453 (1), 13517 (2), 13581 (2), 15501 (1), -tower 526: eta = -0.85, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7118 (2), 9614 (1), 9678 (1), 9742 (2), 9806 (2), 13390 (1), 13454 (1), 13518 (2), 13582 (2), 15502 (1), -tower 527: eta = -0.85, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 440.739 - sampling = 0, 10 SCIndices: 7119 (2), 9615 (1), 9679 (1), 9743 (2), 9807 (2), 13391 (1), 13455 (1), 13519 (2), 13583 (2), 15503 (1), -tower 528: eta = -0.85, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7120 (2), 9616 (1), 9680 (1), 9744 (2), 9808 (2), 13392 (1), 13456 (1), 13520 (2), 13584 (2), 15504 (1), -tower 529: eta = -0.85, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 548.038 - sampling = 0, 10 SCIndices: 7121 (2), 9617 (1), 9681 (1), 9745 (2), 9809 (2), 13393 (1), 13457 (1), 13521 (2), 13585 (2), 15505 (1), -tower 530: eta = -0.85, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 243.543 - sampling = 0, 10 SCIndices: 7122 (2), 9618 (1), 9682 (1), 9746 (2), 9810 (2), 13394 (1), 13458 (1), 13522 (2), 13586 (2), 15506 (1), -tower 531: eta = -0.85, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = -78.9622 - sampling = 0, 10 SCIndices: 7123 (2), 9619 (1), 9683 (1), 9747 (2), 9811 (2), 13395 (1), 13459 (1), 13523 (2), 13587 (2), 15507 (1), -tower 532: eta = -0.85, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 337.757 - sampling = 0, 10 SCIndices: 7124 (2), 9620 (1), 9684 (1), 9748 (2), 9812 (2), 13396 (1), 13460 (1), 13524 (2), 13588 (2), 15508 (1), -tower 533: eta = -0.85, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 57.4929 - sampling = 0, 10 SCIndices: 7125 (2), 9621 (1), 9685 (1), 9749 (2), 9813 (2), 13397 (1), 13461 (1), 13525 (2), 13589 (2), 15509 (1), -tower 534: eta = -0.85, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 463.74 - sampling = 0, 10 SCIndices: 7126 (2), 9622 (1), 9686 (1), 9750 (2), 9814 (2), 13398 (1), 13462 (1), 13526 (2), 13590 (2), 15510 (1), -tower 535: eta = -0.85, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 117.499 - sampling = 0, 10 SCIndices: 7127 (2), 9623 (1), 9687 (1), 9751 (2), 9815 (2), 13399 (1), 13463 (1), 13527 (2), 13591 (2), 15511 (1), -tower 536: eta = -0.85, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 326.444 - sampling = 0, 10 SCIndices: 7128 (2), 9624 (1), 9688 (1), 9752 (2), 9816 (2), 13400 (1), 13464 (1), 13528 (2), 13592 (2), 15512 (1), -tower 537: eta = -0.85, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7129 (2), 9625 (1), 9689 (1), 9753 (2), 9817 (2), 13401 (1), 13465 (1), 13529 (2), 13593 (2), 15513 (1), -tower 538: eta = -0.85, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 532 - sampling = 0, 10 SCIndices: 7130 (2), 9626 (1), 9690 (1), 9754 (2), 9818 (2), 13402 (1), 13466 (1), 13530 (2), 13594 (2), 15514 (1), -tower 539: eta = -0.85, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = -48.4328 - sampling = 0, 10 SCIndices: 7131 (2), 9627 (1), 9691 (1), 9755 (2), 9819 (2), 13403 (1), 13467 (1), 13531 (2), 13595 (2), 15515 (1), -tower 540: eta = -0.85, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 103.448 - sampling = 0, 10 SCIndices: 7132 (2), 9628 (1), 9692 (1), 9756 (2), 9820 (2), 13404 (1), 13468 (1), 13532 (2), 13596 (2), 15516 (1), -tower 541: eta = -0.85, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7133 (2), 9629 (1), 9693 (1), 9757 (2), 9821 (2), 13405 (1), 13469 (1), 13533 (2), 13597 (2), 15517 (1), -tower 542: eta = -0.85, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 289.63 - sampling = 0, 10 SCIndices: 7134 (2), 9630 (1), 9694 (1), 9758 (2), 9822 (2), 13406 (1), 13470 (1), 13534 (2), 13598 (2), 15518 (2), -tower 543: eta = -0.85, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 276.903 - sampling = 0, 10 SCIndices: 7135 (2), 9631 (1), 9695 (1), 9759 (2), 9823 (2), 13407 (1), 13471 (1), 13535 (2), 13599 (2), 15519 (2), -tower 544: eta = -0.85, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 532.031 - sampling = 0, 10 SCIndices: 7136 (2), 9632 (1), 9696 (1), 9760 (2), 9824 (2), 13408 (1), 13472 (1), 13536 (2), 13600 (2), 15520 (2), -tower 545: eta = -0.85, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 33.1904 - sampling = 0, 10 SCIndices: 7137 (2), 9633 (1), 9697 (1), 9761 (2), 9825 (2), 13409 (1), 13473 (1), 13537 (2), 13601 (2), 15521 (2), -tower 546: eta = -0.85, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 226.456 - sampling = 0, 10 SCIndices: 7138 (2), 9634 (1), 9698 (1), 9762 (2), 9826 (2), 13410 (1), 13474 (1), 13538 (2), 13602 (3), 15522 (2), -tower 547: eta = -0.85, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7139 (2), 9635 (1), 9699 (1), 9763 (2), 9827 (2), 13411 (1), 13475 (1), 13539 (2), 13603 (3), 15523 (2), -tower 548: eta = -0.85, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 124.902 - sampling = 0, 10 SCIndices: 7140 (2), 9636 (1), 9700 (1), 9764 (2), 9828 (2), 13412 (1), 13476 (1), 13540 (2), 13604 (3), 15524 (2), -tower 549: eta = -0.85, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = -79.4013 - sampling = 0, 10 SCIndices: 7141 (2), 9637 (1), 9701 (1), 9765 (2), 9829 (2), 13413 (1), 13477 (1), 13541 (2), 13605 (3), 15525 (2), -tower 550: eta = -0.85, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = -52.0624 - sampling = 0, 10 SCIndices: 7142 (2), 9638 (1), 9702 (1), 9766 (2), 9830 (2), 13414 (1), 13478 (1), 13542 (2), 13606 (3), 15526 (2), -tower 551: eta = -0.85, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 115.234 - sampling = 0, 10 SCIndices: 7143 (2), 9639 (1), 9703 (1), 9767 (2), 9831 (2), 13415 (1), 13479 (1), 13543 (2), 13607 (3), 15527 (2), -tower 552: eta = -0.85, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 66.4345 - sampling = 0, 10 SCIndices: 7144 (2), 9640 (1), 9704 (1), 9768 (2), 9832 (3), 13416 (1), 13480 (1), 13544 (2), 13608 (3), 15528 (2), -tower 553: eta = -0.85, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 61.453 - sampling = 0, 10 SCIndices: 7145 (2), 9641 (1), 9705 (1), 9769 (2), 9833 (3), 13417 (1), 13481 (1), 13545 (2), 13609 (3), 15529 (2), -tower 554: eta = -0.85, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 428.439 - sampling = 0, 10 SCIndices: 7146 (2), 9642 (1), 9706 (1), 9770 (2), 9834 (3), 13418 (1), 13482 (1), 13546 (2), 13610 (3), 15530 (2), -tower 555: eta = -0.85, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 221.854 - sampling = 0, 10 SCIndices: 7147 (2), 9643 (1), 9707 (1), 9771 (2), 9835 (3), 13419 (1), 13483 (1), 13547 (2), 13611 (3), 15531 (2), -tower 556: eta = -0.85, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7148 (2), 9644 (1), 9708 (1), 9772 (2), 9836 (3), 13420 (1), 13484 (1), 13548 (2), 13612 (3), 15532 (2), -tower 557: eta = -0.85, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 621.914 - sampling = 0, 10 SCIndices: 7149 (2), 9645 (1), 9709 (1), 9773 (2), 9837 (3), 13421 (1), 13485 (1), 13549 (2), 13613 (3), 15533 (2), -tower 558: eta = -0.85, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 727.679 - sampling = 0, 10 SCIndices: 7150 (2), 9646 (1), 9710 (1), 9774 (2), 9838 (3), 13422 (1), 13486 (1), 13550 (2), 13614 (3), 15534 (2), -tower 559: eta = -0.85, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 159.305 - sampling = 0, 10 SCIndices: 7151 (2), 9647 (1), 9711 (1), 9775 (2), 9839 (3), 13423 (1), 13487 (1), 13551 (2), 13615 (3), 15535 (2), -tower 560: eta = -0.85, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 538.609 - sampling = 0, 10 SCIndices: 7152 (2), 9648 (1), 9712 (1), 9776 (2), 9840 (3), 13424 (1), 13488 (2), 13552 (2), 13616 (3), 15536 (2), -tower 561: eta = -0.85, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = -133.348 - sampling = 0, 10 SCIndices: 7153 (2), 9649 (1), 9713 (1), 9777 (2), 9841 (3), 13425 (1), 13489 (2), 13553 (2), 13617 (3), 15537 (2), -tower 562: eta = -0.85, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 156.68 - sampling = 0, 10 SCIndices: 7154 (2), 9650 (1), 9714 (1), 9778 (2), 9842 (3), 13426 (1), 13490 (2), 13554 (2), 13618 (3), 15538 (2), -tower 563: eta = -0.85, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 471.393 - sampling = 0, 10 SCIndices: 7155 (2), 9651 (1), 9715 (1), 9779 (2), 9843 (3), 13427 (1), 13491 (2), 13555 (2), 13619 (3), 15539 (2), -tower 564: eta = -0.85, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7156 (2), 9652 (1), 9716 (1), 9780 (2), 9844 (3), 13428 (1), 13492 (2), 13556 (2), 13620 (3), 15540 (2), -tower 565: eta = -0.85, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 76.642 - sampling = 0, 10 SCIndices: 7157 (2), 9653 (1), 9717 (1), 9781 (2), 9845 (3), 13429 (1), 13493 (2), 13557 (2), 13621 (3), 15541 (2), -tower 566: eta = -0.85, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 625.465 - sampling = 0, 10 SCIndices: 7158 (2), 9654 (1), 9718 (2), 9782 (2), 9846 (3), 13430 (1), 13494 (2), 13558 (2), 13622 (3), 15542 (2), -tower 567: eta = -0.85, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 298.427 - sampling = 0, 10 SCIndices: 7159 (2), 9655 (1), 9719 (2), 9783 (2), 9847 (3), 13431 (1), 13495 (2), 13559 (2), 13623 (3), 15543 (2), -tower 568: eta = -0.85, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 555.905 - sampling = 0, 10 SCIndices: 7160 (2), 9656 (1), 9720 (2), 9784 (2), 9848 (3), 13432 (1), 13496 (2), 13560 (2), 13624 (3), 15544 (2), -tower 569: eta = -0.85, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7161 (2), 9657 (1), 9721 (2), 9785 (2), 9849 (3), 13433 (1), 13497 (2), 13561 (2), 13625 (3), 15545 (2), -tower 570: eta = -0.85, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = -24.0326 - sampling = 0, 10 SCIndices: 7162 (2), 9658 (1), 9722 (2), 9786 (2), 9850 (3), 13434 (1), 13498 (2), 13562 (2), 13626 (3), 15546 (2), -tower 571: eta = -0.85, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 794.921 - sampling = 0, 10 SCIndices: 7163 (2), 9659 (1), 9723 (2), 9787 (2), 9851 (3), 13435 (1), 13499 (2), 13563 (2), 13627 (3), 15547 (2), -tower 572: eta = -0.85, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 452.184 - sampling = 0, 10 SCIndices: 7164 (2), 9660 (1), 9724 (2), 9788 (2), 9852 (3), 13436 (1), 13500 (2), 13564 (2), 13628 (3), 15548 (2), -tower 573: eta = -0.85, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 61.4275 - sampling = 0, 10 SCIndices: 7165 (2), 9661 (1), 9725 (2), 9789 (2), 9853 (3), 13437 (1), 13501 (2), 13565 (2), 13629 (3), 15549 (2), -tower 574: eta = -0.85, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7166 (2), 9662 (1), 9726 (2), 9790 (2), 9854 (3), 13438 (1), 13502 (2), 13566 (2), 13630 (0), 15550 (2), -tower 575: eta = -0.85, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 190.552 - sampling = 0, 10 SCIndices: 7167 (2), 9663 (1), 9727 (2), 9791 (2), 9855 (3), 13439 (1), 13503 (2), 13567 (2), 13631 (0), 15551 (2), -tower 576: eta = -0.95, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 584.718 - sampling = 0, 10 SCIndices: 7168 (2), 9856 (3), 9920 (1), 9984 (1), 10048 (2), 13632 (0), 13696 (1), 13760 (1), 13824 (2), 15552 (2), -tower 577: eta = -0.95, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 249.128 - sampling = 0, 10 SCIndices: 7169 (2), 9857 (3), 9921 (1), 9985 (1), 10049 (2), 13633 (0), 13697 (1), 13761 (1), 13825 (2), 15553 (2), -tower 578: eta = -0.95, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 1019.87 - sampling = 0, 10 SCIndices: 7170 (2), 9858 (3), 9922 (1), 9986 (1), 10050 (2), 13634 (0), 13698 (1), 13762 (1), 13826 (2), 15554 (2), -tower 579: eta = -0.95, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 328.736 - sampling = 0, 10 SCIndices: 7171 (2), 9859 (3), 9923 (1), 9987 (1), 10051 (2), 13635 (0), 13699 (1), 13763 (1), 13827 (2), 15555 (2), -tower 580: eta = -0.95, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 23.1616 - sampling = 0, 10 SCIndices: 7172 (2), 9860 (0), 9924 (1), 9988 (1), 10052 (2), 13636 (0), 13700 (1), 13764 (1), 13828 (2), 15556 (2), -tower 581: eta = -0.95, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 304.156 - sampling = 0, 10 SCIndices: 7173 (2), 9861 (0), 9925 (1), 9989 (1), 10053 (2), 13637 (0), 13701 (1), 13765 (1), 13829 (2), 15557 (2), -tower 582: eta = -0.95, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7174 (2), 9862 (0), 9926 (1), 9990 (1), 10054 (2), 13638 (0), 13702 (1), 13766 (1), 13830 (2), 15558 (2), -tower 583: eta = -0.95, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 298.474 - sampling = 0, 10 SCIndices: 7175 (2), 9863 (0), 9927 (1), 9991 (1), 10055 (2), 13639 (0), 13703 (1), 13767 (1), 13831 (2), 15559 (2), -tower 584: eta = -0.95, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 89.3301 - sampling = 0, 10 SCIndices: 7176 (2), 9864 (0), 9928 (1), 9992 (1), 10056 (2), 13640 (0), 13704 (1), 13768 (1), 13832 (2), 15560 (2), -tower 585: eta = -0.95, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 291.552 - sampling = 0, 10 SCIndices: 7177 (2), 9865 (0), 9929 (1), 9993 (1), 10057 (2), 13641 (0), 13705 (1), 13769 (1), 13833 (2), 15561 (2), -tower 586: eta = -0.95, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7178 (2), 9866 (0), 9930 (1), 9994 (1), 10058 (2), 13642 (0), 13706 (1), 13770 (1), 13834 (2), 15562 (2), -tower 587: eta = -0.95, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 161.087 - sampling = 0, 10 SCIndices: 7179 (2), 9867 (0), 9931 (1), 9995 (1), 10059 (2), 13643 (0), 13707 (1), 13771 (1), 13835 (2), 15563 (2), -tower 588: eta = -0.95, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 340.695 - sampling = 0, 10 SCIndices: 7180 (2), 9868 (0), 9932 (1), 9996 (1), 10060 (2), 13644 (0), 13708 (1), 13772 (1), 13836 (2), 15564 (2), -tower 589: eta = -0.95, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 54.1488 - sampling = 0, 10 SCIndices: 7181 (2), 9869 (0), 9933 (1), 9997 (1), 10061 (2), 13645 (0), 13709 (1), 13773 (1), 13837 (2), 15565 (2), -tower 590: eta = -0.95, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 164.088 - sampling = 0, 10 SCIndices: 7182 (2), 9870 (0), 9934 (1), 9998 (1), 10062 (2), 13646 (0), 13710 (1), 13774 (1), 13838 (2), 15566 (2), -tower 591: eta = -0.95, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7183 (2), 9871 (0), 9935 (1), 9999 (1), 10063 (2), 13647 (0), 13711 (1), 13775 (1), 13839 (2), 15567 (2), -tower 592: eta = -0.95, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7184 (2), 9872 (0), 9936 (1), 10000 (1), 10064 (2), 13648 (0), 13712 (1), 13776 (1), 13840 (2), 15568 (2), -tower 593: eta = -0.95, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 210.247 - sampling = 0, 10 SCIndices: 7185 (2), 9873 (0), 9937 (1), 10001 (1), 10065 (2), 13649 (0), 13713 (1), 13777 (1), 13841 (2), 15569 (2), -tower 594: eta = -0.95, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 363.46 - sampling = 0, 10 SCIndices: 7186 (2), 9874 (0), 9938 (1), 10002 (1), 10066 (2), 13650 (0), 13714 (1), 13778 (2), 13842 (2), 15570 (2), -tower 595: eta = -0.95, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 444.581 - sampling = 0, 10 SCIndices: 7187 (2), 9875 (0), 9939 (1), 10003 (1), 10067 (2), 13651 (0), 13715 (1), 13779 (2), 13843 (2), 15571 (2), -tower 596: eta = -0.95, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 541.252 - sampling = 0, 10 SCIndices: 7188 (2), 9876 (0), 9940 (1), 10004 (1), 10068 (2), 13652 (0), 13716 (1), 13780 (2), 13844 (2), 15572 (2), -tower 597: eta = -0.95, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 97.0333 - sampling = 0, 10 SCIndices: 7189 (2), 9877 (0), 9941 (1), 10005 (1), 10069 (2), 13653 (0), 13717 (1), 13781 (2), 13845 (2), 15573 (2), -tower 598: eta = -0.95, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = -98.4473 - sampling = 0, 10 SCIndices: 7190 (2), 9878 (0), 9942 (1), 10006 (1), 10070 (2), 13654 (0), 13718 (1), 13782 (2), 13846 (2), 15574 (2), -tower 599: eta = -0.95, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7191 (2), 9879 (0), 9943 (1), 10007 (1), 10071 (2), 13655 (0), 13719 (1), 13783 (2), 13847 (2), 15575 (2), -tower 600: eta = -0.95, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 520.528 - sampling = 0, 10 SCIndices: 7192 (2), 9880 (0), 9944 (1), 10008 (2), 10072 (2), 13656 (0), 13720 (1), 13784 (2), 13848 (2), 15576 (2), -tower 601: eta = -0.95, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 371.434 - sampling = 0, 10 SCIndices: 7193 (2), 9881 (0), 9945 (1), 10009 (2), 10073 (2), 13657 (0), 13721 (1), 13785 (2), 13849 (2), 15577 (2), -tower 602: eta = -0.95, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 326.775 - sampling = 0, 10 SCIndices: 7194 (2), 9882 (0), 9946 (1), 10010 (2), 10074 (2), 13658 (0), 13722 (1), 13786 (2), 13850 (2), 15578 (2), -tower 603: eta = -0.95, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 222.573 - sampling = 0, 10 SCIndices: 7195 (2), 9883 (0), 9947 (1), 10011 (2), 10075 (2), 13659 (0), 13723 (1), 13787 (2), 13851 (2), 15579 (2), -tower 604: eta = -0.95, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = -329.232 - sampling = 0, 10 SCIndices: 7196 (2), 9884 (0), 9948 (1), 10012 (2), 10076 (2), 13660 (1), 13724 (1), 13788 (2), 13852 (2), 15580 (2), -tower 605: eta = -0.95, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 962.521 - sampling = 0, 10 SCIndices: 7197 (2), 9885 (0), 9949 (1), 10013 (2), 10077 (2), 13661 (1), 13725 (1), 13789 (2), 13853 (2), 15581 (2), -tower 606: eta = -0.95, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 340.764 - sampling = 0, 10 SCIndices: 7198 (2), 9886 (0), 9950 (1), 10014 (2), 10078 (2), 13662 (1), 13726 (1), 13790 (2), 13854 (2), 15582 (2), -tower 607: eta = -0.95, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 453.765 - sampling = 0, 10 SCIndices: 7199 (2), 9887 (0), 9951 (1), 10015 (2), 10079 (2), 13663 (1), 13727 (1), 13791 (2), 13855 (2), 15583 (2), -tower 608: eta = -0.95, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 210.403 - sampling = 0, 10 SCIndices: 7200 (2), 9888 (0), 9952 (1), 10016 (2), 10080 (2), 13664 (1), 13728 (1), 13792 (2), 13856 (2), 15584 (2), -tower 609: eta = -0.95, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 698.812 - sampling = 0, 10 SCIndices: 7201 (2), 9889 (0), 9953 (1), 10017 (2), 10081 (2), 13665 (1), 13729 (1), 13793 (2), 13857 (2), 15585 (2), -tower 610: eta = -0.95, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7202 (2), 9890 (1), 9954 (1), 10018 (2), 10082 (2), 13666 (1), 13730 (1), 13794 (2), 13858 (2), 15586 (2), -tower 611: eta = -0.95, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 167.425 - sampling = 0, 10 SCIndices: 7203 (2), 9891 (1), 9955 (1), 10019 (2), 10083 (2), 13667 (1), 13731 (1), 13795 (2), 13859 (2), 15587 (2), -tower 612: eta = -0.95, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7204 (2), 9892 (1), 9956 (1), 10020 (2), 10084 (2), 13668 (1), 13732 (1), 13796 (2), 13860 (2), 15588 (2), -tower 613: eta = -0.95, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 115.002 - sampling = 0, 10 SCIndices: 7205 (2), 9893 (1), 9957 (1), 10021 (2), 10085 (2), 13669 (1), 13733 (1), 13797 (2), 13861 (2), 15589 (2), -tower 614: eta = -0.95, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7206 (2), 9894 (1), 9958 (1), 10022 (2), 10086 (2), 13670 (1), 13734 (1), 13798 (2), 13862 (2), 15590 (2), -tower 615: eta = -0.95, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7207 (2), 9895 (1), 9959 (1), 10023 (2), 10087 (2), 13671 (1), 13735 (1), 13799 (2), 13863 (2), 15591 (2), -tower 616: eta = -0.95, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 80.1502 - sampling = 0, 10 SCIndices: 7208 (2), 9896 (1), 9960 (1), 10024 (2), 10088 (2), 13672 (1), 13736 (1), 13800 (2), 13864 (2), 15592 (2), -tower 617: eta = -0.95, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 331.359 - sampling = 0, 10 SCIndices: 7209 (2), 9897 (1), 9961 (1), 10025 (2), 10089 (2), 13673 (1), 13737 (1), 13801 (2), 13865 (2), 15593 (2), -tower 618: eta = -0.95, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 246.054 - sampling = 0, 10 SCIndices: 7210 (2), 9898 (1), 9962 (1), 10026 (2), 10090 (2), 13674 (1), 13738 (1), 13802 (2), 13866 (2), 15594 (2), -tower 619: eta = -0.95, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 228.734 - sampling = 0, 10 SCIndices: 7211 (2), 9899 (1), 9963 (1), 10027 (2), 10091 (2), 13675 (1), 13739 (1), 13803 (2), 13867 (2), 15595 (2), -tower 620: eta = -0.95, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 74.8399 - sampling = 0, 10 SCIndices: 7212 (2), 9900 (1), 9964 (1), 10028 (2), 10092 (2), 13676 (1), 13740 (1), 13804 (2), 13868 (2), 15596 (2), -tower 621: eta = -0.95, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 925.834 - sampling = 0, 10 SCIndices: 7213 (2), 9901 (1), 9965 (1), 10029 (2), 10093 (2), 13677 (1), 13741 (1), 13805 (2), 13869 (2), 15597 (2), -tower 622: eta = -0.95, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7214 (2), 9902 (1), 9966 (1), 10030 (2), 10094 (2), 13678 (1), 13742 (1), 13806 (2), 13870 (2), 15598 (2), -tower 623: eta = -0.95, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 139.745 - sampling = 0, 10 SCIndices: 7215 (2), 9903 (1), 9967 (1), 10031 (2), 10095 (2), 13679 (1), 13743 (1), 13807 (2), 13871 (2), 15599 (2), -tower 624: eta = -0.95, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 347.318 - sampling = 0, 10 SCIndices: 7216 (2), 9904 (1), 9968 (1), 10032 (2), 10096 (2), 13680 (1), 13744 (1), 13808 (2), 13872 (2), 15600 (2), -tower 625: eta = -0.95, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 156.288 - sampling = 0, 10 SCIndices: 7217 (2), 9905 (1), 9969 (1), 10033 (2), 10097 (2), 13681 (1), 13745 (1), 13809 (2), 13873 (2), 15601 (2), -tower 626: eta = -0.95, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 533.535 - sampling = 0, 10 SCIndices: 7218 (2), 9906 (1), 9970 (1), 10034 (2), 10098 (2), 13682 (1), 13746 (1), 13810 (2), 13874 (2), 15602 (2), -tower 627: eta = -0.95, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 971.827 - sampling = 0, 10 SCIndices: 7219 (2), 9907 (1), 9971 (1), 10035 (2), 10099 (2), 13683 (1), 13747 (1), 13811 (2), 13875 (2), 15603 (2), -tower 628: eta = -0.95, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = -24.7058 - sampling = 0, 10 SCIndices: 7220 (2), 9908 (1), 9972 (1), 10036 (2), 10100 (2), 13684 (1), 13748 (1), 13812 (2), 13876 (2), 15604 (2), -tower 629: eta = -0.95, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 164.324 - sampling = 0, 10 SCIndices: 7221 (2), 9909 (1), 9973 (1), 10037 (2), 10101 (2), 13685 (1), 13749 (1), 13813 (2), 13877 (2), 15605 (2), -tower 630: eta = -0.95, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = -23.3353 - sampling = 0, 10 SCIndices: 7222 (3), 9910 (1), 9974 (1), 10038 (2), 10102 (2), 13686 (1), 13750 (1), 13814 (2), 13878 (2), 15606 (2), -tower 631: eta = -0.95, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = -76.1062 - sampling = 0, 10 SCIndices: 7223 (3), 9911 (1), 9975 (1), 10039 (2), 10103 (2), 13687 (1), 13751 (1), 13815 (2), 13879 (2), 15607 (2), -tower 632: eta = -0.95, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 322.328 - sampling = 0, 10 SCIndices: 7224 (3), 9912 (1), 9976 (1), 10040 (2), 10104 (2), 13688 (1), 13752 (1), 13816 (2), 13880 (2), 15608 (2), -tower 633: eta = -0.95, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 263.351 - sampling = 0, 10 SCIndices: 7225 (3), 9913 (1), 9977 (1), 10041 (2), 10105 (2), 13689 (1), 13753 (1), 13817 (2), 13881 (2), 15609 (2), -tower 634: eta = -0.95, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7226 (3), 9914 (1), 9978 (1), 10042 (2), 10106 (2), 13690 (1), 13754 (1), 13818 (2), 13882 (2), 15610 (2), -tower 635: eta = -0.95, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 287.896 - sampling = 0, 10 SCIndices: 7227 (3), 9915 (1), 9979 (1), 10043 (2), 10107 (2), 13691 (1), 13755 (1), 13819 (2), 13883 (2), 15611 (2), -tower 636: eta = -0.95, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 302.096 - sampling = 0, 10 SCIndices: 7228 (3), 9916 (1), 9980 (1), 10044 (2), 10108 (2), 13692 (1), 13756 (1), 13820 (2), 13884 (2), 15612 (2), -tower 637: eta = -0.95, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 525.074 - sampling = 0, 10 SCIndices: 7229 (3), 9917 (1), 9981 (1), 10045 (2), 10109 (2), 13693 (1), 13757 (1), 13821 (2), 13885 (2), 15613 (2), -tower 638: eta = -0.95, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 487.485 - sampling = 0, 10 SCIndices: 7230 (3), 9918 (1), 9982 (1), 10046 (2), 10110 (2), 13694 (1), 13758 (1), 13822 (2), 13886 (2), 15614 (2), -tower 639: eta = -0.95, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7231 (3), 9919 (1), 9983 (1), 10047 (2), 10111 (2), 13695 (1), 13759 (1), 13823 (2), 13887 (2), 15615 (2), -tower 640: eta = -1.05, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 1702.7 - sampling = 0, 10 SCIndices: 7232 (3), 10112 (2), 10176 (0), 10240 (1), 10304 (2), 13888 (2), 13952 (1), 14016 (1), 14080 (2), 15616 (2), -tower 641: eta = -1.05, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 47.3887 - sampling = 0, 10 SCIndices: 7233 (3), 10113 (2), 10177 (0), 10241 (1), 10305 (2), 13889 (2), 13953 (1), 14017 (1), 14081 (2), 15617 (2), -tower 642: eta = -1.05, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 37.5709 - sampling = 0, 10 SCIndices: 7234 (3), 10114 (2), 10178 (0), 10242 (1), 10306 (2), 13890 (2), 13954 (1), 14018 (1), 14082 (2), 15618 (2), -tower 643: eta = -1.05, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = -2.03866 - sampling = 0, 10 SCIndices: 7235 (3), 10115 (2), 10179 (0), 10243 (1), 10307 (2), 13891 (2), 13955 (1), 14019 (1), 14083 (2), 15619 (2), -tower 644: eta = -1.05, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 401.905 - sampling = 0, 10 SCIndices: 7236 (3), 10116 (2), 10180 (1), 10244 (1), 10308 (2), 13892 (3), 13956 (1), 14020 (1), 14084 (2), 15620 (2), -tower 645: eta = -1.05, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 77.5164 - sampling = 0, 10 SCIndices: 7237 (3), 10117 (2), 10181 (1), 10245 (1), 10309 (2), 13893 (3), 13957 (1), 14021 (1), 14085 (2), 15621 (2), -tower 646: eta = -1.05, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 94.2569 - sampling = 0, 10 SCIndices: 7238 (3), 10118 (2), 10182 (1), 10246 (1), 10310 (2), 13894 (3), 13958 (1), 14022 (1), 14086 (2), 15622 (2), -tower 647: eta = -1.05, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 119.556 - sampling = 0, 10 SCIndices: 7239 (3), 10119 (2), 10183 (1), 10247 (1), 10311 (2), 13895 (3), 13959 (1), 14023 (1), 14087 (2), 15623 (2), -tower 648: eta = -1.05, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7240 (3), 10120 (2), 10184 (1), 10248 (1), 10312 (2), 13896 (3), 13960 (1), 14024 (1), 14088 (2), 15624 (2), -tower 649: eta = -1.05, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 121.8 - sampling = 0, 10 SCIndices: 7241 (3), 10121 (2), 10185 (1), 10249 (1), 10313 (2), 13897 (3), 13961 (1), 14025 (1), 14089 (2), 15625 (2), -tower 650: eta = -1.05, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 149.519 - sampling = 0, 10 SCIndices: 7242 (3), 10122 (3), 10186 (1), 10250 (1), 10314 (2), 13898 (3), 13962 (1), 14026 (1), 14090 (2), 15626 (2), -tower 651: eta = -1.05, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 794.072 - sampling = 0, 10 SCIndices: 7243 (3), 10123 (3), 10187 (1), 10251 (1), 10315 (2), 13899 (3), 13963 (1), 14027 (1), 14091 (2), 15627 (2), -tower 652: eta = -1.05, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 266.465 - sampling = 0, 10 SCIndices: 7244 (3), 10124 (3), 10188 (1), 10252 (1), 10316 (2), 13900 (3), 13964 (1), 14028 (1), 14092 (2), 15628 (2), -tower 653: eta = -1.05, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 220.027 - sampling = 0, 10 SCIndices: 7245 (3), 10125 (3), 10189 (1), 10253 (1), 10317 (2), 13901 (3), 13965 (1), 14029 (1), 14093 (2), 15629 (2), -tower 654: eta = -1.05, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 46.7873 - sampling = 0, 10 SCIndices: 7246 (3), 10126 (3), 10190 (1), 10254 (1), 10318 (2), 13902 (3), 13966 (1), 14030 (1), 14094 (2), 15630 (2), -tower 655: eta = -1.05, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 192.299 - sampling = 0, 10 SCIndices: 7247 (3), 10127 (3), 10191 (1), 10255 (1), 10319 (2), 13903 (3), 13967 (1), 14031 (1), 14095 (2), 15631 (2), -tower 656: eta = -1.05, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 147.242 - sampling = 0, 10 SCIndices: 7248 (3), 10128 (3), 10192 (1), 10256 (1), 10320 (2), 13904 (3), 13968 (1), 14032 (1), 14096 (2), 15632 (3), -tower 657: eta = -1.05, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 319.97 - sampling = 0, 10 SCIndices: 7249 (3), 10129 (3), 10193 (1), 10257 (1), 10321 (2), 13905 (3), 13969 (1), 14033 (1), 14097 (2), 15633 (3), -tower 658: eta = -1.05, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = -148.755 - sampling = 0, 10 SCIndices: 7250 (0), 10130 (3), 10194 (1), 10258 (1), 10322 (2), 13906 (3), 13970 (1), 14034 (1), 14098 (2), 15634 (3), -tower 659: eta = -1.05, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 230.929 - sampling = 0, 10 SCIndices: 7251 (0), 10131 (3), 10195 (1), 10259 (1), 10323 (2), 13907 (3), 13971 (1), 14035 (1), 14099 (2), 15635 (3), -tower 660: eta = -1.05, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = -124.939 - sampling = 0, 10 SCIndices: 7252 (0), 10132 (3), 10196 (1), 10260 (1), 10324 (2), 13908 (3), 13972 (1), 14036 (1), 14100 (2), 15636 (3), -tower 661: eta = -1.05, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 888.69 - sampling = 0, 10 SCIndices: 7253 (0), 10133 (3), 10197 (1), 10261 (1), 10325 (2), 13909 (3), 13973 (1), 14037 (1), 14101 (2), 15637 (3), -tower 662: eta = -1.05, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 556.137 - sampling = 0, 10 SCIndices: 7254 (0), 10134 (3), 10198 (1), 10262 (1), 10326 (2), 13910 (3), 13974 (1), 14038 (1), 14102 (2), 15638 (3), -tower 663: eta = -1.05, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 57.2294 - sampling = 0, 10 SCIndices: 7255 (0), 10135 (3), 10199 (1), 10263 (1), 10327 (2), 13911 (3), 13975 (1), 14039 (1), 14103 (2), 15639 (3), -tower 664: eta = -1.05, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = -22.0074 - sampling = 0, 10 SCIndices: 7256 (0), 10136 (3), 10200 (1), 10264 (1), 10328 (2), 13912 (3), 13976 (1), 14040 (1), 14104 (2), 15640 (3), -tower 665: eta = -1.05, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 1031.19 - sampling = 0, 10 SCIndices: 7257 (0), 10137 (3), 10201 (1), 10265 (1), 10329 (2), 13913 (3), 13977 (1), 14041 (1), 14105 (2), 15641 (3), -tower 666: eta = -1.05, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 938.794 - sampling = 0, 10 SCIndices: 7258 (0), 10138 (3), 10202 (1), 10266 (1), 10330 (2), 13914 (3), 13978 (1), 14042 (1), 14106 (2), 15642 (3), -tower 667: eta = -1.05, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 261.454 - sampling = 0, 10 SCIndices: 7259 (0), 10139 (3), 10203 (1), 10267 (1), 10331 (2), 13915 (3), 13979 (1), 14043 (1), 14107 (2), 15643 (3), -tower 668: eta = -1.05, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7260 (0), 10140 (3), 10204 (1), 10268 (1), 10332 (2), 13916 (3), 13980 (1), 14044 (1), 14108 (2), 15644 (3), -tower 669: eta = -1.05, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 938.27 - sampling = 0, 10 SCIndices: 7261 (0), 10141 (3), 10205 (1), 10269 (1), 10333 (2), 13917 (3), 13981 (1), 14045 (1), 14109 (2), 15645 (3), -tower 670: eta = -1.05, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 402.596 - sampling = 0, 10 SCIndices: 7262 (0), 10142 (3), 10206 (1), 10270 (1), 10334 (2), 13918 (3), 13982 (1), 14046 (1), 14110 (2), 15646 (3), -tower 671: eta = -1.05, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 231.094 - sampling = 0, 10 SCIndices: 7263 (0), 10143 (3), 10207 (1), 10271 (1), 10335 (2), 13919 (3), 13983 (1), 14047 (1), 14111 (2), 15647 (3), -tower 672: eta = -1.05, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 247.451 - sampling = 0, 10 SCIndices: 7264 (0), 10144 (3), 10208 (1), 10272 (1), 10336 (2), 13920 (0), 13984 (1), 14048 (1), 14112 (2), 15648 (3), -tower 673: eta = -1.05, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = -164 - sampling = 0, 10 SCIndices: 7265 (0), 10145 (3), 10209 (1), 10273 (1), 10337 (2), 13921 (0), 13985 (1), 14049 (1), 14113 (2), 15649 (3), -tower 674: eta = -1.05, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 103.832 - sampling = 0, 10 SCIndices: 7266 (0), 10146 (3), 10210 (1), 10274 (1), 10338 (2), 13922 (0), 13986 (1), 14050 (1), 14114 (2), 15650 (3), -tower 675: eta = -1.05, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 249.027 - sampling = 0, 10 SCIndices: 7267 (0), 10147 (3), 10211 (1), 10275 (1), 10339 (2), 13923 (0), 13987 (1), 14051 (1), 14115 (2), 15651 (3), -tower 676: eta = -1.05, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 149.689 - sampling = 0, 10 SCIndices: 7268 (0), 10148 (3), 10212 (1), 10276 (1), 10340 (2), 13924 (0), 13988 (1), 14052 (1), 14116 (2), 15652 (3), -tower 677: eta = -1.05, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 221.777 - sampling = 0, 10 SCIndices: 7269 (0), 10149 (3), 10213 (1), 10277 (1), 10341 (2), 13925 (0), 13989 (1), 14053 (1), 14117 (2), 15653 (3), -tower 678: eta = -1.05, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 1172.99 - sampling = 0, 10 SCIndices: 7270 (0), 10150 (0), 10214 (1), 10278 (1), 10342 (2), 13926 (0), 13990 (1), 14054 (1), 14118 (2), 15654 (3), -tower 679: eta = -1.05, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 1248.91 - sampling = 0, 10 SCIndices: 7271 (0), 10151 (0), 10215 (1), 10279 (1), 10343 (2), 13927 (0), 13991 (1), 14055 (1), 14119 (2), 15655 (3), -tower 680: eta = -1.05, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7272 (0), 10152 (0), 10216 (1), 10280 (1), 10344 (2), 13928 (0), 13992 (1), 14056 (1), 14120 (2), 15656 (3), -tower 681: eta = -1.05, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 495.363 - sampling = 0, 10 SCIndices: 7273 (0), 10153 (0), 10217 (1), 10281 (1), 10345 (2), 13929 (0), 13993 (1), 14057 (1), 14121 (2), 15657 (3), -tower 682: eta = -1.05, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 432.754 - sampling = 0, 10 SCIndices: 7274 (0), 10154 (0), 10218 (1), 10282 (1), 10346 (2), 13930 (0), 13994 (1), 14058 (1), 14122 (2), 15658 (3), -tower 683: eta = -1.05, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 760.127 - sampling = 0, 10 SCIndices: 7275 (0), 10155 (0), 10219 (1), 10283 (1), 10347 (2), 13931 (0), 13995 (1), 14059 (1), 14123 (2), 15659 (3), -tower 684: eta = -1.05, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 135.068 - sampling = 0, 10 SCIndices: 7276 (0), 10156 (0), 10220 (1), 10284 (1), 10348 (2), 13932 (0), 13996 (1), 14060 (1), 14124 (2), 15660 (0), -tower 685: eta = -1.05, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7277 (0), 10157 (0), 10221 (1), 10285 (1), 10349 (2), 13933 (0), 13997 (1), 14061 (1), 14125 (2), 15661 (0), -tower 686: eta = -1.05, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 198.843 - sampling = 0, 10 SCIndices: 7278 (0), 10158 (0), 10222 (1), 10286 (1), 10350 (2), 13934 (0), 13998 (1), 14062 (1), 14126 (2), 15662 (0), -tower 687: eta = -1.05, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 17.1198 - sampling = 0, 10 SCIndices: 7279 (0), 10159 (0), 10223 (1), 10287 (1), 10351 (2), 13935 (0), 13999 (1), 14063 (1), 14127 (2), 15663 (0), -tower 688: eta = -1.05, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 102.22 - sampling = 0, 10 SCIndices: 7280 (1), 10160 (0), 10224 (1), 10288 (1), 10352 (2), 13936 (0), 14000 (1), 14064 (1), 14128 (2), 15664 (0), -tower 689: eta = -1.05, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 800.624 - sampling = 0, 10 SCIndices: 7281 (1), 10161 (0), 10225 (1), 10289 (1), 10353 (2), 13937 (0), 14001 (1), 14065 (1), 14129 (2), 15665 (0), -tower 690: eta = -1.05, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 57.3318 - sampling = 0, 10 SCIndices: 7282 (1), 10162 (0), 10226 (1), 10290 (1), 10354 (2), 13938 (0), 14002 (1), 14066 (1), 14130 (2), 15666 (0), -tower 691: eta = -1.05, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 407.314 - sampling = 0, 10 SCIndices: 7283 (1), 10163 (0), 10227 (1), 10291 (1), 10355 (2), 13939 (0), 14003 (1), 14067 (1), 14131 (2), 15667 (0), -tower 692: eta = -1.05, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 149.472 - sampling = 0, 10 SCIndices: 7284 (1), 10164 (0), 10228 (1), 10292 (1), 10356 (2), 13940 (0), 14004 (1), 14068 (2), 14132 (2), 15668 (0), -tower 693: eta = -1.05, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 231.261 - sampling = 0, 10 SCIndices: 7285 (1), 10165 (0), 10229 (1), 10293 (1), 10357 (2), 13941 (0), 14005 (1), 14069 (2), 14133 (2), 15669 (0), -tower 694: eta = -1.05, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 172.318 - sampling = 0, 10 SCIndices: 7286 (1), 10166 (0), 10230 (1), 10294 (1), 10358 (2), 13942 (0), 14006 (1), 14070 (2), 14134 (2), 15670 (0), -tower 695: eta = -1.05, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 290.623 - sampling = 0, 10 SCIndices: 7287 (1), 10167 (0), 10231 (1), 10295 (1), 10359 (2), 13943 (0), 14007 (1), 14071 (2), 14135 (2), 15671 (0), -tower 696: eta = -1.05, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 405.884 - sampling = 0, 10 SCIndices: 7288 (1), 10168 (0), 10232 (1), 10296 (1), 10360 (2), 13944 (0), 14008 (1), 14072 (2), 14136 (2), 15672 (0), -tower 697: eta = -1.05, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 630.611 - sampling = 0, 10 SCIndices: 7289 (1), 10169 (0), 10233 (1), 10297 (1), 10361 (2), 13945 (0), 14009 (1), 14073 (2), 14137 (2), 15673 (0), -tower 698: eta = -1.05, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 652.544 - sampling = 0, 10 SCIndices: 7290 (1), 10170 (0), 10234 (1), 10298 (2), 10362 (2), 13946 (0), 14010 (1), 14074 (2), 14138 (2), 15674 (0), -tower 699: eta = -1.05, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 457.384 - sampling = 0, 10 SCIndices: 7291 (1), 10171 (0), 10235 (1), 10299 (2), 10363 (2), 13947 (0), 14011 (1), 14075 (2), 14139 (2), 15675 (0), -tower 700: eta = -1.05, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 106.217 - sampling = 0, 10 SCIndices: 7292 (1), 10172 (0), 10236 (1), 10300 (2), 10364 (2), 13948 (0), 14012 (1), 14076 (2), 14140 (2), 15676 (0), -tower 701: eta = -1.05, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 305.346 - sampling = 0, 10 SCIndices: 7293 (1), 10173 (0), 10237 (1), 10301 (2), 10365 (2), 13949 (0), 14013 (1), 14077 (2), 14141 (2), 15677 (0), -tower 702: eta = -1.05, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 546.362 - sampling = 0, 10 SCIndices: 7294 (1), 10174 (0), 10238 (1), 10302 (2), 10366 (2), 13950 (1), 14014 (1), 14078 (2), 14142 (2), 15678 (0), -tower 703: eta = -1.05, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 166.771 - sampling = 0, 10 SCIndices: 7295 (1), 10175 (0), 10239 (1), 10303 (2), 10367 (2), 13951 (1), 14015 (1), 14079 (2), 14143 (2), 15679 (0), -tower 704: eta = -1.15, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 692.85 - sampling = 0, 10 SCIndices: 7296 (1), 10368 (2), 10432 (3), 10496 (1), 10560 (1), 14144 (2), 14208 (3), 14272 (1), 14336 (1), 15680 (0), -tower 705: eta = -1.15, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7297 (1), 10369 (2), 10433 (3), 10497 (1), 10561 (1), 14145 (2), 14209 (3), 14273 (1), 14337 (1), 15681 (0), -tower 706: eta = -1.15, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 79.4301 - sampling = 0, 10 SCIndices: 7298 (1), 10370 (2), 10434 (3), 10498 (1), 10562 (1), 14146 (2), 14210 (0), 14274 (1), 14338 (1), 15682 (0), -tower 707: eta = -1.15, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = -60.3032 - sampling = 0, 10 SCIndices: 7299 (1), 10371 (2), 10435 (3), 10499 (1), 10563 (1), 14147 (2), 14211 (0), 14275 (1), 14339 (1), 15683 (0), -tower 708: eta = -1.15, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 210.177 - sampling = 0, 10 SCIndices: 7300 (1), 10372 (2), 10436 (3), 10500 (1), 10564 (1), 14148 (2), 14212 (0), 14276 (1), 14340 (1), 15684 (0), -tower 709: eta = -1.15, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 541.676 - sampling = 0, 10 SCIndices: 7301 (1), 10373 (2), 10437 (3), 10501 (1), 10565 (1), 14149 (2), 14213 (0), 14277 (1), 14341 (1), 15685 (0), -tower 710: eta = -1.15, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 237.842 - sampling = 0, 10 SCIndices: 7302 (1), 10374 (2), 10438 (3), 10502 (1), 10566 (1), 14150 (2), 14214 (0), 14278 (1), 14342 (1), 15686 (0), -tower 711: eta = -1.15, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 521.481 - sampling = 0, 10 SCIndices: 7303 (1), 10375 (2), 10439 (3), 10503 (1), 10567 (1), 14151 (2), 14215 (0), 14279 (1), 14343 (1), 15687 (0), -tower 712: eta = -1.15, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 342.175 - sampling = 0, 10 SCIndices: 7304 (1), 10376 (2), 10440 (0), 10504 (1), 10568 (1), 14152 (2), 14216 (0), 14280 (1), 14344 (1), 15688 (0), -tower 713: eta = -1.15, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 108.729 - sampling = 0, 10 SCIndices: 7305 (1), 10377 (2), 10441 (0), 10505 (1), 10569 (1), 14153 (2), 14217 (0), 14281 (1), 14345 (1), 15689 (0), -tower 714: eta = -1.15, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 292.736 - sampling = 0, 10 SCIndices: 7306 (1), 10378 (2), 10442 (0), 10506 (1), 10570 (1), 14154 (2), 14218 (0), 14282 (1), 14346 (1), 15690 (1), -tower 715: eta = -1.15, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 149.813 - sampling = 0, 10 SCIndices: 7307 (1), 10379 (2), 10443 (0), 10507 (1), 10571 (1), 14155 (2), 14219 (0), 14283 (1), 14347 (1), 15691 (1), -tower 716: eta = -1.15, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 658.827 - sampling = 0, 10 SCIndices: 7308 (1), 10380 (2), 10444 (0), 10508 (1), 10572 (1), 14156 (2), 14220 (0), 14284 (1), 14348 (1), 15692 (1), -tower 717: eta = -1.15, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 866.328 - sampling = 0, 10 SCIndices: 7309 (1), 10381 (2), 10445 (0), 10509 (1), 10573 (1), 14157 (2), 14221 (0), 14285 (1), 14349 (1), 15693 (1), -tower 718: eta = -1.15, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 65.076 - sampling = 0, 10 SCIndices: 7310 (1), 10382 (2), 10446 (0), 10510 (1), 10574 (1), 14158 (2), 14222 (0), 14286 (1), 14350 (1), 15694 (1), -tower 719: eta = -1.15, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 265.056 - sampling = 0, 10 SCIndices: 7311 (1), 10383 (2), 10447 (0), 10511 (1), 10575 (1), 14159 (2), 14223 (0), 14287 (1), 14351 (1), 15695 (1), -tower 720: eta = -1.15, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 493.597 - sampling = 0, 10 SCIndices: 7312 (1), 10384 (2), 10448 (0), 10512 (1), 10576 (1), 14160 (2), 14224 (0), 14288 (1), 14352 (1), 15696 (1), -tower 721: eta = -1.15, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = -39.8291 - sampling = 0, 10 SCIndices: 7313 (1), 10385 (2), 10449 (0), 10513 (1), 10577 (1), 14161 (2), 14225 (0), 14289 (1), 14353 (1), 15697 (1), -tower 722: eta = -1.15, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 402.499 - sampling = 0, 10 SCIndices: 7314 (1), 10386 (2), 10450 (0), 10514 (1), 10578 (1), 14162 (2), 14226 (0), 14290 (1), 14354 (1), 15698 (1), -tower 723: eta = -1.15, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 45.4852 - sampling = 0, 10 SCIndices: 7315 (1), 10387 (2), 10451 (0), 10515 (1), 10579 (1), 14163 (2), 14227 (0), 14291 (1), 14355 (1), 15699 (1), -tower 724: eta = -1.15, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 272.502 - sampling = 0, 10 SCIndices: 7316 (1), 10388 (2), 10452 (0), 10516 (1), 10580 (1), 14164 (2), 14228 (0), 14292 (1), 14356 (1), 15700 (1), -tower 725: eta = -1.15, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 2050.87 - sampling = 0, 10 SCIndices: 7317 (1), 10389 (2), 10453 (0), 10517 (1), 10581 (1), 14165 (2), 14229 (0), 14293 (1), 14357 (1), 15701 (1), -tower 726: eta = -1.15, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 441.457 - sampling = 0, 10 SCIndices: 7318 (1), 10390 (2), 10454 (0), 10518 (1), 10582 (1), 14166 (2), 14230 (0), 14294 (1), 14358 (2), 15702 (1), -tower 727: eta = -1.15, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 457.242 - sampling = 0, 10 SCIndices: 7319 (1), 10391 (2), 10455 (0), 10519 (1), 10583 (1), 14167 (2), 14231 (0), 14295 (1), 14359 (2), 15703 (1), -tower 728: eta = -1.15, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 99.2145 - sampling = 0, 10 SCIndices: 7320 (1), 10392 (2), 10456 (0), 10520 (1), 10584 (1), 14168 (2), 14232 (0), 14296 (1), 14360 (2), 15704 (1), -tower 729: eta = -1.15, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 160.285 - sampling = 0, 10 SCIndices: 7321 (1), 10393 (2), 10457 (0), 10521 (1), 10585 (1), 14169 (2), 14233 (0), 14297 (1), 14361 (2), 15705 (1), -tower 730: eta = -1.15, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 555.818 - sampling = 0, 10 SCIndices: 7322 (1), 10394 (2), 10458 (0), 10522 (1), 10586 (1), 14170 (2), 14234 (0), 14298 (1), 14362 (2), 15706 (1), -tower 731: eta = -1.15, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 376.139 - sampling = 0, 10 SCIndices: 7323 (1), 10395 (2), 10459 (0), 10523 (1), 10587 (1), 14171 (2), 14235 (0), 14299 (1), 14363 (2), 15707 (1), -tower 732: eta = -1.15, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 161.932 - sampling = 0, 10 SCIndices: 7324 (1), 10396 (2), 10460 (0), 10524 (1), 10588 (2), 14172 (2), 14236 (0), 14300 (1), 14364 (2), 15708 (1), -tower 733: eta = -1.15, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 365.204 - sampling = 0, 10 SCIndices: 7325 (1), 10397 (2), 10461 (0), 10525 (1), 10589 (2), 14173 (2), 14237 (0), 14301 (1), 14365 (2), 15709 (1), -tower 734: eta = -1.15, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 158.255 - sampling = 0, 10 SCIndices: 7326 (1), 10398 (2), 10462 (0), 10526 (1), 10590 (2), 14174 (2), 14238 (0), 14302 (1), 14366 (2), 15710 (1), -tower 735: eta = -1.15, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7327 (1), 10399 (2), 10463 (0), 10527 (1), 10591 (2), 14175 (2), 14239 (0), 14303 (1), 14367 (2), 15711 (1), -tower 736: eta = -1.15, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 245.271 - sampling = 0, 10 SCIndices: 7328 (1), 10400 (2), 10464 (0), 10528 (1), 10592 (2), 14176 (2), 14240 (1), 14304 (1), 14368 (2), 15712 (1), -tower 737: eta = -1.15, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = -552.863 - sampling = 0, 10 SCIndices: 7329 (1), 10401 (2), 10465 (0), 10529 (1), 10593 (2), 14177 (2), 14241 (1), 14305 (1), 14369 (2), 15713 (1), -tower 738: eta = -1.15, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 495.098 - sampling = 0, 10 SCIndices: 7330 (1), 10402 (2), 10466 (0), 10530 (1), 10594 (2), 14178 (2), 14242 (1), 14306 (1), 14370 (2), 15714 (1), -tower 739: eta = -1.15, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 362.52 - sampling = 0, 10 SCIndices: 7331 (1), 10403 (2), 10467 (0), 10531 (1), 10595 (2), 14179 (2), 14243 (1), 14307 (1), 14371 (2), 15715 (1), -tower 740: eta = -1.15, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7332 (1), 10404 (2), 10468 (0), 10532 (1), 10596 (2), 14180 (2), 14244 (1), 14308 (1), 14372 (2), 15716 (1), -tower 741: eta = -1.15, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 21.0291 - sampling = 0, 10 SCIndices: 7333 (1), 10405 (2), 10469 (0), 10533 (1), 10597 (2), 14181 (2), 14245 (1), 14309 (1), 14373 (2), 15717 (1), -tower 742: eta = -1.15, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 269.112 - sampling = 0, 10 SCIndices: 7334 (1), 10406 (2), 10470 (1), 10534 (1), 10598 (2), 14182 (3), 14246 (1), 14310 (1), 14374 (2), 15718 (1), -tower 743: eta = -1.15, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7335 (1), 10407 (2), 10471 (1), 10535 (1), 10599 (2), 14183 (3), 14247 (1), 14311 (1), 14375 (2), 15719 (1), -tower 744: eta = -1.15, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 177.597 - sampling = 0, 10 SCIndices: 7336 (1), 10408 (2), 10472 (1), 10536 (1), 10600 (2), 14184 (3), 14248 (1), 14312 (1), 14376 (2), 15720 (1), -tower 745: eta = -1.15, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7337 (1), 10409 (2), 10473 (1), 10537 (1), 10601 (2), 14185 (3), 14249 (1), 14313 (1), 14377 (2), 15721 (1), -tower 746: eta = -1.15, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 131.053 - sampling = 0, 10 SCIndices: 7338 (1), 10410 (2), 10474 (1), 10538 (1), 10602 (2), 14186 (3), 14250 (1), 14314 (1), 14378 (2), 15722 (1), -tower 747: eta = -1.15, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 221.611 - sampling = 0, 10 SCIndices: 7339 (1), 10411 (2), 10475 (1), 10539 (1), 10603 (2), 14187 (3), 14251 (1), 14315 (1), 14379 (2), 15723 (1), -tower 748: eta = -1.15, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = -21.1223 - sampling = 0, 10 SCIndices: 7340 (1), 10412 (3), 10476 (1), 10540 (1), 10604 (2), 14188 (3), 14252 (1), 14316 (1), 14380 (2), 15724 (1), -tower 749: eta = -1.15, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 267.511 - sampling = 0, 10 SCIndices: 7341 (1), 10413 (3), 10477 (1), 10541 (1), 10605 (2), 14189 (3), 14253 (1), 14317 (1), 14381 (2), 15725 (1), -tower 750: eta = -1.15, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 135.921 - sampling = 0, 10 SCIndices: 7342 (1), 10414 (3), 10478 (1), 10542 (1), 10606 (2), 14190 (3), 14254 (1), 14318 (1), 14382 (2), 15726 (1), -tower 751: eta = -1.15, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7343 (1), 10415 (3), 10479 (1), 10543 (1), 10607 (2), 14191 (3), 14255 (1), 14319 (1), 14383 (2), 15727 (1), -tower 752: eta = -1.15, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 23.3313 - sampling = 0, 10 SCIndices: 7344 (1), 10416 (3), 10480 (1), 10544 (1), 10608 (2), 14192 (3), 14256 (1), 14320 (1), 14384 (2), 15728 (1), -tower 753: eta = -1.15, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 242.378 - sampling = 0, 10 SCIndices: 7345 (1), 10417 (3), 10481 (1), 10545 (1), 10609 (2), 14193 (3), 14257 (1), 14321 (1), 14385 (2), 15729 (1), -tower 754: eta = -1.15, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 204.93 - sampling = 0, 10 SCIndices: 7346 (1), 10418 (3), 10482 (1), 10546 (1), 10610 (2), 14194 (3), 14258 (1), 14322 (1), 14386 (2), 15730 (1), -tower 755: eta = -1.15, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 535.207 - sampling = 0, 10 SCIndices: 7347 (1), 10419 (3), 10483 (1), 10547 (1), 10611 (2), 14195 (3), 14259 (1), 14323 (1), 14387 (2), 15731 (1), -tower 756: eta = -1.15, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 93.5485 - sampling = 0, 10 SCIndices: 7348 (1), 10420 (3), 10484 (1), 10548 (1), 10612 (2), 14196 (3), 14260 (1), 14324 (1), 14388 (2), 15732 (1), -tower 757: eta = -1.15, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 238.602 - sampling = 0, 10 SCIndices: 7349 (1), 10421 (3), 10485 (1), 10549 (1), 10613 (2), 14197 (3), 14261 (1), 14325 (1), 14389 (2), 15733 (1), -tower 758: eta = -1.15, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 402.631 - sampling = 0, 10 SCIndices: 7350 (1), 10422 (3), 10486 (1), 10550 (1), 10614 (2), 14198 (3), 14262 (1), 14326 (1), 14390 (2), 15734 (1), -tower 759: eta = -1.15, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 1071.8 - sampling = 0, 10 SCIndices: 7351 (1), 10423 (3), 10487 (1), 10551 (1), 10615 (2), 14199 (3), 14263 (1), 14327 (1), 14391 (2), 15735 (1), -tower 760: eta = -1.15, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 43.1758 - sampling = 0, 10 SCIndices: 7352 (1), 10424 (3), 10488 (1), 10552 (1), 10616 (2), 14200 (3), 14264 (1), 14328 (1), 14392 (2), 15736 (1), -tower 761: eta = -1.15, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 317.448 - sampling = 0, 10 SCIndices: 7353 (1), 10425 (3), 10489 (1), 10553 (1), 10617 (2), 14201 (3), 14265 (1), 14329 (1), 14393 (2), 15737 (1), -tower 762: eta = -1.15, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 124.227 - sampling = 0, 10 SCIndices: 7354 (1), 10426 (3), 10490 (1), 10554 (1), 10618 (2), 14202 (3), 14266 (1), 14330 (1), 14394 (2), 15738 (1), -tower 763: eta = -1.15, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = -202.648 - sampling = 0, 10 SCIndices: 7355 (1), 10427 (3), 10491 (1), 10555 (1), 10619 (2), 14203 (3), 14267 (1), 14331 (1), 14395 (2), 15739 (1), -tower 764: eta = -1.15, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 151.667 - sampling = 0, 10 SCIndices: 7356 (1), 10428 (3), 10492 (1), 10556 (1), 10620 (2), 14204 (3), 14268 (1), 14332 (1), 14396 (2), 15740 (1), -tower 765: eta = -1.15, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7357 (1), 10429 (3), 10493 (1), 10557 (1), 10621 (2), 14205 (3), 14269 (1), 14333 (1), 14397 (2), 15741 (1), -tower 766: eta = -1.15, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7358 (1), 10430 (3), 10494 (1), 10558 (1), 10622 (2), 14206 (3), 14270 (1), 14334 (1), 14398 (2), 15742 (1), -tower 767: eta = -1.15, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7359 (1), 10431 (3), 10495 (1), 10559 (1), 10623 (2), 14207 (3), 14271 (1), 14335 (1), 14399 (2), 15743 (1), -tower 768: eta = -1.25, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 321.702 - sampling = 0, 10 SCIndices: 7360 (1), 10624 (2), 10688 (2), 10752 (0), 10816 (1), 14400 (2), 14464 (2), 14528 (0), 14592 (1), 15744 (1), -tower 769: eta = -1.25, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 117.97 - sampling = 0, 10 SCIndices: 7361 (1), 10625 (2), 10689 (2), 10753 (0), 10817 (1), 14401 (2), 14465 (2), 14529 (0), 14593 (1), 15745 (1), -tower 770: eta = -1.25, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7362 (1), 10626 (2), 10690 (2), 10754 (0), 10818 (1), 14402 (2), 14466 (2), 14530 (1), 14594 (1), 15746 (1), -tower 771: eta = -1.25, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = -22.44 - sampling = 0, 10 SCIndices: 7363 (1), 10627 (2), 10691 (2), 10755 (0), 10819 (1), 14403 (2), 14467 (2), 14531 (1), 14595 (1), 15747 (1), -tower 772: eta = -1.25, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 61.1668 - sampling = 0, 10 SCIndices: 7364 (1), 10628 (2), 10692 (2), 10756 (0), 10820 (1), 14404 (2), 14468 (2), 14532 (1), 14596 (1), 15748 (1), -tower 773: eta = -1.25, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7365 (1), 10629 (2), 10693 (2), 10757 (0), 10821 (1), 14405 (2), 14469 (2), 14533 (1), 14597 (1), 15749 (1), -tower 774: eta = -1.25, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 279.402 - sampling = 0, 10 SCIndices: 7366 (1), 10630 (2), 10694 (2), 10758 (0), 10822 (1), 14406 (2), 14470 (2), 14534 (1), 14598 (1), 15750 (1), -tower 775: eta = -1.25, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7367 (1), 10631 (2), 10695 (2), 10759 (0), 10823 (1), 14407 (2), 14471 (2), 14535 (1), 14599 (1), 15751 (1), -tower 776: eta = -1.25, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 184.337 - sampling = 0, 10 SCIndices: 7368 (1), 10632 (2), 10696 (2), 10760 (1), 10824 (1), 14408 (2), 14472 (3), 14536 (1), 14600 (1), 15752 (1), -tower 777: eta = -1.25, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 231.195 - sampling = 0, 10 SCIndices: 7369 (1), 10633 (2), 10697 (2), 10761 (1), 10825 (1), 14409 (2), 14473 (3), 14537 (1), 14601 (1), 15753 (1), -tower 778: eta = -1.25, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 1127.97 - sampling = 0, 10 SCIndices: 7370 (1), 10634 (2), 10698 (2), 10762 (1), 10826 (1), 14410 (2), 14474 (3), 14538 (1), 14602 (1), 15754 (1), -tower 779: eta = -1.25, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 406.538 - sampling = 0, 10 SCIndices: 7371 (1), 10635 (2), 10699 (2), 10763 (1), 10827 (1), 14411 (2), 14475 (3), 14539 (1), 14603 (1), 15755 (1), -tower 780: eta = -1.25, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 483.618 - sampling = 0, 10 SCIndices: 7372 (1), 10636 (2), 10700 (2), 10764 (1), 10828 (1), 14412 (2), 14476 (3), 14540 (1), 14604 (1), 15756 (1), -tower 781: eta = -1.25, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 511.989 - sampling = 0, 10 SCIndices: 7373 (1), 10637 (2), 10701 (2), 10765 (1), 10829 (1), 14413 (2), 14477 (3), 14541 (1), 14605 (1), 15757 (1), -tower 782: eta = -1.25, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 143.726 - sampling = 0, 10 SCIndices: 7374 (1), 10638 (2), 10702 (3), 10766 (1), 10830 (1), 14414 (2), 14478 (3), 14542 (1), 14606 (1), 15758 (1), -tower 783: eta = -1.25, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 222.011 - sampling = 0, 10 SCIndices: 7375 (1), 10639 (2), 10703 (3), 10767 (1), 10831 (1), 14415 (2), 14479 (3), 14543 (1), 14607 (1), 15759 (1), -tower 784: eta = -1.25, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7376 (1), 10640 (2), 10704 (3), 10768 (1), 10832 (1), 14416 (2), 14480 (3), 14544 (1), 14608 (1), 15760 (1), -tower 785: eta = -1.25, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7377 (1), 10641 (2), 10705 (3), 10769 (1), 10833 (1), 14417 (2), 14481 (3), 14545 (1), 14609 (1), 15761 (1), -tower 786: eta = -1.25, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 593.339 - sampling = 0, 10 SCIndices: 7378 (1), 10642 (2), 10706 (3), 10770 (1), 10834 (1), 14418 (2), 14482 (3), 14546 (1), 14610 (1), 15762 (1), -tower 787: eta = -1.25, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7379 (1), 10643 (2), 10707 (3), 10771 (1), 10835 (1), 14419 (2), 14483 (3), 14547 (1), 14611 (1), 15763 (1), -tower 788: eta = -1.25, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 1818.16 - sampling = 0, 10 SCIndices: 7380 (1), 10644 (2), 10708 (3), 10772 (1), 10836 (1), 14420 (2), 14484 (3), 14548 (1), 14612 (1), 15764 (1), -tower 789: eta = -1.25, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 587.797 - sampling = 0, 10 SCIndices: 7381 (1), 10645 (2), 10709 (3), 10773 (1), 10837 (1), 14421 (2), 14485 (3), 14549 (1), 14613 (1), 15765 (1), -tower 790: eta = -1.25, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 273.873 - sampling = 0, 10 SCIndices: 7382 (1), 10646 (2), 10710 (3), 10774 (1), 10838 (1), 14422 (2), 14486 (3), 14550 (1), 14614 (1), 15766 (1), -tower 791: eta = -1.25, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 380.681 - sampling = 0, 10 SCIndices: 7383 (1), 10647 (2), 10711 (3), 10775 (1), 10839 (1), 14423 (2), 14487 (3), 14551 (1), 14615 (1), 15767 (1), -tower 792: eta = -1.25, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 263.82 - sampling = 0, 10 SCIndices: 7384 (1), 10648 (2), 10712 (3), 10776 (1), 10840 (1), 14424 (2), 14488 (3), 14552 (1), 14616 (1), 15768 (1), -tower 793: eta = -1.25, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7385 (1), 10649 (2), 10713 (3), 10777 (1), 10841 (1), 14425 (2), 14489 (3), 14553 (1), 14617 (1), 15769 (1), -tower 794: eta = -1.25, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7386 (1), 10650 (2), 10714 (3), 10778 (1), 10842 (1), 14426 (2), 14490 (3), 14554 (1), 14618 (1), 15770 (1), -tower 795: eta = -1.25, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 300.33 - sampling = 0, 10 SCIndices: 7387 (1), 10651 (2), 10715 (3), 10779 (1), 10843 (1), 14427 (2), 14491 (3), 14555 (1), 14619 (1), 15771 (1), -tower 796: eta = -1.25, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 449.393 - sampling = 0, 10 SCIndices: 7388 (1), 10652 (2), 10716 (3), 10780 (1), 10844 (1), 14428 (2), 14492 (3), 14556 (1), 14620 (1), 15772 (1), -tower 797: eta = -1.25, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 40.4932 - sampling = 0, 10 SCIndices: 7389 (1), 10653 (2), 10717 (3), 10781 (1), 10845 (1), 14429 (2), 14493 (3), 14557 (1), 14621 (1), 15773 (1), -tower 798: eta = -1.25, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 578.074 - sampling = 0, 10 SCIndices: 7390 (1), 10654 (2), 10718 (3), 10782 (1), 10846 (1), 14430 (2), 14494 (3), 14558 (1), 14622 (1), 15774 (1), -tower 799: eta = -1.25, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 35.3937 - sampling = 0, 10 SCIndices: 7391 (1), 10655 (2), 10719 (3), 10783 (1), 10847 (1), 14431 (2), 14495 (3), 14559 (1), 14623 (1), 15775 (1), -tower 800: eta = -1.25, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 649.355 - sampling = 0, 10 SCIndices: 7392 (1), 10656 (2), 10720 (3), 10784 (1), 10848 (1), 14432 (2), 14496 (3), 14560 (1), 14624 (1), 15776 (1), -tower 801: eta = -1.25, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 337.859 - sampling = 0, 10 SCIndices: 7393 (1), 10657 (2), 10721 (3), 10785 (1), 10849 (1), 14433 (2), 14497 (3), 14561 (1), 14625 (1), 15777 (1), -tower 802: eta = -1.25, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 356.24 - sampling = 0, 10 SCIndices: 7394 (1), 10658 (2), 10722 (3), 10786 (1), 10850 (1), 14434 (2), 14498 (3), 14562 (1), 14626 (1), 15778 (1), -tower 803: eta = -1.25, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 40.1686 - sampling = 0, 10 SCIndices: 7395 (1), 10659 (2), 10723 (3), 10787 (1), 10851 (1), 14435 (2), 14499 (3), 14563 (1), 14627 (1), 15779 (1), -tower 804: eta = -1.25, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 574.822 - sampling = 0, 10 SCIndices: 7396 (1), 10660 (2), 10724 (3), 10788 (1), 10852 (1), 14436 (2), 14500 (0), 14564 (1), 14628 (1), 15780 (1), -tower 805: eta = -1.25, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 122.768 - sampling = 0, 10 SCIndices: 7397 (1), 10661 (2), 10725 (3), 10789 (1), 10853 (1), 14437 (2), 14501 (0), 14565 (1), 14629 (1), 15781 (1), -tower 806: eta = -1.25, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 652.077 - sampling = 0, 10 SCIndices: 7398 (2), 10662 (2), 10726 (3), 10790 (1), 10854 (1), 14438 (2), 14502 (0), 14566 (1), 14630 (1), 15782 (1), -tower 807: eta = -1.25, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 559.918 - sampling = 0, 10 SCIndices: 7399 (2), 10663 (2), 10727 (3), 10791 (1), 10855 (1), 14439 (2), 14503 (0), 14567 (1), 14631 (1), 15783 (1), -tower 808: eta = -1.25, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 375.815 - sampling = 0, 10 SCIndices: 7400 (2), 10664 (2), 10728 (3), 10792 (1), 10856 (1), 14440 (2), 14504 (0), 14568 (1), 14632 (1), 15784 (1), -tower 809: eta = -1.25, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 125.2 - sampling = 0, 10 SCIndices: 7401 (2), 10665 (2), 10729 (3), 10793 (1), 10857 (1), 14441 (2), 14505 (0), 14569 (1), 14633 (1), 15785 (1), -tower 810: eta = -1.25, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7402 (2), 10666 (2), 10730 (0), 10794 (1), 10858 (1), 14442 (2), 14506 (0), 14570 (1), 14634 (1), 15786 (1), -tower 811: eta = -1.25, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 434.274 - sampling = 0, 10 SCIndices: 7403 (2), 10667 (2), 10731 (0), 10795 (1), 10859 (1), 14443 (2), 14507 (0), 14571 (1), 14635 (1), 15787 (1), -tower 812: eta = -1.25, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 83.9395 - sampling = 0, 10 SCIndices: 7404 (2), 10668 (2), 10732 (0), 10796 (1), 10860 (1), 14444 (2), 14508 (0), 14572 (1), 14636 (1), 15788 (1), -tower 813: eta = -1.25, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 93.0052 - sampling = 0, 10 SCIndices: 7405 (2), 10669 (2), 10733 (0), 10797 (1), 10861 (1), 14445 (2), 14509 (0), 14573 (1), 14637 (1), 15789 (1), -tower 814: eta = -1.25, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 350.552 - sampling = 0, 10 SCIndices: 7406 (2), 10670 (2), 10734 (0), 10798 (1), 10862 (1), 14446 (2), 14510 (0), 14574 (1), 14638 (1), 15790 (1), -tower 815: eta = -1.25, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = -34.4156 - sampling = 0, 10 SCIndices: 7407 (2), 10671 (2), 10735 (0), 10799 (1), 10863 (1), 14447 (2), 14511 (0), 14575 (1), 14639 (1), 15791 (1), -tower 816: eta = -1.25, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 56.4599 - sampling = 0, 10 SCIndices: 7408 (2), 10672 (2), 10736 (0), 10800 (1), 10864 (1), 14448 (2), 14512 (0), 14576 (1), 14640 (1), 15792 (1), -tower 817: eta = -1.25, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = -24.4326 - sampling = 0, 10 SCIndices: 7409 (2), 10673 (2), 10737 (0), 10801 (1), 10865 (1), 14449 (2), 14513 (0), 14577 (1), 14641 (1), 15793 (1), -tower 818: eta = -1.25, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7410 (2), 10674 (2), 10738 (0), 10802 (1), 10866 (1), 14450 (2), 14514 (0), 14578 (1), 14642 (1), 15794 (1), -tower 819: eta = -1.25, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = -72.3706 - sampling = 0, 10 SCIndices: 7411 (2), 10675 (2), 10739 (0), 10803 (1), 10867 (1), 14451 (2), 14515 (0), 14579 (1), 14643 (1), 15795 (1), -tower 820: eta = -1.25, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 359.063 - sampling = 0, 10 SCIndices: 7412 (2), 10676 (2), 10740 (0), 10804 (1), 10868 (1), 14452 (2), 14516 (0), 14580 (1), 14644 (1), 15796 (1), -tower 821: eta = -1.25, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 254.227 - sampling = 0, 10 SCIndices: 7413 (2), 10677 (2), 10741 (0), 10805 (1), 10869 (1), 14453 (2), 14517 (0), 14581 (1), 14645 (1), 15797 (1), -tower 822: eta = -1.25, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7414 (2), 10678 (2), 10742 (0), 10806 (1), 10870 (1), 14454 (2), 14518 (0), 14582 (1), 14646 (1), 15798 (1), -tower 823: eta = -1.25, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 443.569 - sampling = 0, 10 SCIndices: 7415 (2), 10679 (2), 10743 (0), 10807 (1), 10871 (1), 14455 (2), 14519 (0), 14583 (1), 14647 (1), 15799 (1), -tower 824: eta = -1.25, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 960.675 - sampling = 0, 10 SCIndices: 7416 (2), 10680 (2), 10744 (0), 10808 (1), 10872 (1), 14456 (2), 14520 (0), 14584 (1), 14648 (2), 15800 (1), -tower 825: eta = -1.25, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 219.35 - sampling = 0, 10 SCIndices: 7417 (2), 10681 (2), 10745 (0), 10809 (1), 10873 (1), 14457 (2), 14521 (0), 14585 (1), 14649 (2), 15801 (1), -tower 826: eta = -1.25, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 81.9845 - sampling = 0, 10 SCIndices: 7418 (2), 10682 (2), 10746 (0), 10810 (1), 10874 (1), 14458 (2), 14522 (0), 14586 (1), 14650 (2), 15802 (1), -tower 827: eta = -1.25, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 428.604 - sampling = 0, 10 SCIndices: 7419 (2), 10683 (2), 10747 (0), 10811 (1), 10875 (1), 14459 (2), 14523 (0), 14587 (1), 14651 (2), 15803 (1), -tower 828: eta = -1.25, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 128.947 - sampling = 0, 10 SCIndices: 7420 (2), 10684 (2), 10748 (0), 10812 (1), 10876 (1), 14460 (2), 14524 (0), 14588 (1), 14652 (2), 15804 (1), -tower 829: eta = -1.25, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7421 (2), 10685 (2), 10749 (0), 10813 (1), 10877 (1), 14461 (2), 14525 (0), 14589 (1), 14653 (2), 15805 (1), -tower 830: eta = -1.25, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 296.073 - sampling = 0, 10 SCIndices: 7422 (2), 10686 (2), 10750 (0), 10814 (1), 10878 (2), 14462 (2), 14526 (0), 14590 (1), 14654 (2), 15806 (1), -tower 831: eta = -1.25, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7423 (2), 10687 (2), 10751 (0), 10815 (1), 10879 (2), 14463 (2), 14527 (0), 14591 (1), 14655 (2), 15807 (1), -tower 832: eta = -1.35, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 86.4538 - sampling = 0, 10 SCIndices: 7424 (2), 10880 (2), 10944 (2), 11008 (3), 11072 (1), 14656 (2), 14720 (2), 14784 (3), 14848 (1), 15808 (2), -tower 833: eta = -1.35, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 265.046 - sampling = 0, 10 SCIndices: 7425 (2), 10881 (2), 10945 (2), 11009 (3), 11073 (1), 14657 (2), 14721 (2), 14785 (3), 14849 (1), 15809 (2), -tower 834: eta = -1.35, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7426 (2), 10882 (2), 10946 (2), 11010 (3), 11074 (1), 14658 (2), 14722 (2), 14786 (3), 14850 (1), 15810 (2), -tower 835: eta = -1.35, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 521.666 - sampling = 0, 10 SCIndices: 7427 (2), 10883 (2), 10947 (2), 11011 (3), 11075 (1), 14659 (2), 14723 (2), 14787 (3), 14851 (1), 15811 (2), -tower 836: eta = -1.35, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 870.3 - sampling = 0, 10 SCIndices: 7428 (2), 10884 (2), 10948 (2), 11012 (3), 11076 (1), 14660 (2), 14724 (2), 14788 (3), 14852 (1), 15812 (2), -tower 837: eta = -1.35, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7429 (2), 10885 (2), 10949 (2), 11013 (3), 11077 (1), 14661 (2), 14725 (2), 14789 (3), 14853 (1), 15813 (2), -tower 838: eta = -1.35, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 89.5771 - sampling = 0, 10 SCIndices: 7430 (2), 10886 (2), 10950 (2), 11014 (3), 11078 (1), 14662 (2), 14726 (2), 14790 (0), 14854 (1), 15814 (2), -tower 839: eta = -1.35, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 91.432 - sampling = 0, 10 SCIndices: 7431 (2), 10887 (2), 10951 (2), 11015 (3), 11079 (1), 14663 (2), 14727 (2), 14791 (0), 14855 (1), 15815 (2), -tower 840: eta = -1.35, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 93.9236 - sampling = 0, 10 SCIndices: 7432 (2), 10888 (2), 10952 (2), 11016 (3), 11080 (1), 14664 (2), 14728 (2), 14792 (0), 14856 (1), 15816 (2), -tower 841: eta = -1.35, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = -55.8914 - sampling = 0, 10 SCIndices: 7433 (2), 10889 (2), 10953 (2), 11017 (3), 11081 (1), 14665 (2), 14729 (2), 14793 (0), 14857 (1), 15817 (2), -tower 842: eta = -1.35, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 887.054 - sampling = 0, 10 SCIndices: 7434 (2), 10890 (2), 10954 (2), 11018 (3), 11082 (1), 14666 (2), 14730 (2), 14794 (0), 14858 (1), 15818 (2), -tower 843: eta = -1.35, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 124.649 - sampling = 0, 10 SCIndices: 7435 (2), 10891 (2), 10955 (2), 11019 (3), 11083 (1), 14667 (2), 14731 (2), 14795 (0), 14859 (1), 15819 (2), -tower 844: eta = -1.35, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7436 (2), 10892 (2), 10956 (2), 11020 (0), 11084 (1), 14668 (2), 14732 (2), 14796 (0), 14860 (1), 15820 (2), -tower 845: eta = -1.35, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 261.492 - sampling = 0, 10 SCIndices: 7437 (2), 10893 (2), 10957 (2), 11021 (0), 11085 (1), 14669 (2), 14733 (2), 14797 (0), 14861 (1), 15821 (2), -tower 846: eta = -1.35, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 256.781 - sampling = 0, 10 SCIndices: 7438 (2), 10894 (2), 10958 (2), 11022 (0), 11086 (1), 14670 (2), 14734 (2), 14798 (0), 14862 (1), 15822 (2), -tower 847: eta = -1.35, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 212.787 - sampling = 0, 10 SCIndices: 7439 (2), 10895 (2), 10959 (2), 11023 (0), 11087 (1), 14671 (2), 14735 (2), 14799 (0), 14863 (1), 15823 (2), -tower 848: eta = -1.35, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 37.2051 - sampling = 0, 10 SCIndices: 7440 (2), 10896 (2), 10960 (2), 11024 (0), 11088 (1), 14672 (2), 14736 (2), 14800 (0), 14864 (1), 15824 (2), -tower 849: eta = -1.35, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 187.33 - sampling = 0, 10 SCIndices: 7441 (2), 10897 (2), 10961 (2), 11025 (0), 11089 (1), 14673 (2), 14737 (2), 14801 (0), 14865 (1), 15825 (2), -tower 850: eta = -1.35, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7442 (2), 10898 (2), 10962 (2), 11026 (0), 11090 (1), 14674 (2), 14738 (2), 14802 (0), 14866 (1), 15826 (2), -tower 851: eta = -1.35, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = -26.7114 - sampling = 0, 10 SCIndices: 7443 (2), 10899 (2), 10963 (2), 11027 (0), 11091 (1), 14675 (2), 14739 (2), 14803 (0), 14867 (1), 15827 (2), -tower 852: eta = -1.35, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7444 (2), 10900 (2), 10964 (2), 11028 (0), 11092 (1), 14676 (2), 14740 (2), 14804 (0), 14868 (1), 15828 (2), -tower 853: eta = -1.35, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 240.48 - sampling = 0, 10 SCIndices: 7445 (2), 10901 (2), 10965 (2), 11029 (0), 11093 (1), 14677 (2), 14741 (2), 14805 (0), 14869 (1), 15829 (2), -tower 854: eta = -1.35, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 13.1011 - sampling = 0, 10 SCIndices: 7446 (2), 10902 (2), 10966 (2), 11030 (0), 11094 (1), 14678 (2), 14742 (2), 14806 (0), 14870 (1), 15830 (2), -tower 855: eta = -1.35, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 1487.7 - sampling = 0, 10 SCIndices: 7447 (2), 10903 (2), 10967 (2), 11031 (0), 11095 (1), 14679 (2), 14743 (2), 14807 (0), 14871 (1), 15831 (2), -tower 856: eta = -1.35, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 99.894 - sampling = 0, 10 SCIndices: 7448 (2), 10904 (2), 10968 (2), 11032 (0), 11096 (1), 14680 (2), 14744 (2), 14808 (0), 14872 (1), 15832 (2), -tower 857: eta = -1.35, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 662.862 - sampling = 0, 10 SCIndices: 7449 (2), 10905 (2), 10969 (2), 11033 (0), 11097 (1), 14681 (2), 14745 (2), 14809 (0), 14873 (1), 15833 (2), -tower 858: eta = -1.35, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 91.4492 - sampling = 0, 10 SCIndices: 7450 (2), 10906 (2), 10970 (2), 11034 (0), 11098 (1), 14682 (2), 14746 (2), 14810 (0), 14874 (1), 15834 (2), -tower 859: eta = -1.35, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 304.684 - sampling = 0, 10 SCIndices: 7451 (2), 10907 (2), 10971 (2), 11035 (0), 11099 (1), 14683 (2), 14747 (2), 14811 (0), 14875 (1), 15835 (2), -tower 860: eta = -1.35, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 82.323 - sampling = 0, 10 SCIndices: 7452 (2), 10908 (2), 10972 (2), 11036 (0), 11100 (1), 14684 (2), 14748 (2), 14812 (0), 14876 (1), 15836 (2), -tower 861: eta = -1.35, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 102.55 - sampling = 0, 10 SCIndices: 7453 (2), 10909 (2), 10973 (2), 11037 (0), 11101 (1), 14685 (2), 14749 (2), 14813 (0), 14877 (1), 15837 (2), -tower 862: eta = -1.35, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 122.271 - sampling = 0, 10 SCIndices: 7454 (2), 10910 (2), 10974 (2), 11038 (0), 11102 (1), 14686 (2), 14750 (2), 14814 (0), 14878 (1), 15838 (2), -tower 863: eta = -1.35, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7455 (2), 10911 (2), 10975 (2), 11039 (0), 11103 (1), 14687 (2), 14751 (2), 14815 (0), 14879 (1), 15839 (2), -tower 864: eta = -1.35, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7456 (2), 10912 (2), 10976 (2), 11040 (0), 11104 (1), 14688 (2), 14752 (2), 14816 (0), 14880 (1), 15840 (2), -tower 865: eta = -1.35, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 11.0766 - sampling = 0, 10 SCIndices: 7457 (2), 10913 (2), 10977 (2), 11041 (0), 11105 (1), 14689 (2), 14753 (2), 14817 (0), 14881 (1), 15841 (2), -tower 866: eta = -1.35, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 134.404 - sampling = 0, 10 SCIndices: 7458 (2), 10914 (2), 10978 (2), 11042 (0), 11106 (1), 14690 (2), 14754 (2), 14818 (0), 14882 (1), 15842 (2), -tower 867: eta = -1.35, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7459 (2), 10915 (2), 10979 (2), 11043 (0), 11107 (1), 14691 (2), 14755 (2), 14819 (0), 14883 (1), 15843 (2), -tower 868: eta = -1.35, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 234.387 - sampling = 0, 10 SCIndices: 7460 (2), 10916 (2), 10980 (2), 11044 (0), 11108 (1), 14692 (2), 14756 (2), 14820 (1), 14884 (1), 15844 (2), -tower 869: eta = -1.35, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 273.614 - sampling = 0, 10 SCIndices: 7461 (2), 10917 (2), 10981 (2), 11045 (0), 11109 (1), 14693 (2), 14757 (2), 14821 (1), 14885 (1), 15845 (2), -tower 870: eta = -1.35, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 109.51 - sampling = 0, 10 SCIndices: 7462 (2), 10918 (2), 10982 (2), 11046 (0), 11110 (1), 14694 (2), 14758 (2), 14822 (1), 14886 (1), 15846 (2), -tower 871: eta = -1.35, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 213.255 - sampling = 0, 10 SCIndices: 7463 (2), 10919 (2), 10983 (2), 11047 (0), 11111 (1), 14695 (2), 14759 (2), 14823 (1), 14887 (1), 15847 (2), -tower 872: eta = -1.35, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 128.011 - sampling = 0, 10 SCIndices: 7464 (2), 10920 (2), 10984 (2), 11048 (0), 11112 (1), 14696 (2), 14760 (2), 14824 (1), 14888 (1), 15848 (2), -tower 873: eta = -1.35, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7465 (2), 10921 (2), 10985 (2), 11049 (0), 11113 (1), 14697 (2), 14761 (2), 14825 (1), 14889 (1), 15849 (2), -tower 874: eta = -1.35, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 249.009 - sampling = 0, 10 SCIndices: 7466 (2), 10922 (2), 10986 (2), 11050 (1), 11114 (1), 14698 (2), 14762 (3), 14826 (1), 14890 (1), 15850 (2), -tower 875: eta = -1.35, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 199.923 - sampling = 0, 10 SCIndices: 7467 (2), 10923 (2), 10987 (2), 11051 (1), 11115 (1), 14699 (2), 14763 (3), 14827 (1), 14891 (1), 15851 (2), -tower 876: eta = -1.35, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = -15.0919 - sampling = 0, 10 SCIndices: 7468 (2), 10924 (2), 10988 (2), 11052 (1), 11116 (1), 14700 (2), 14764 (3), 14828 (1), 14892 (1), 15852 (2), -tower 877: eta = -1.35, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 253.226 - sampling = 0, 10 SCIndices: 7469 (2), 10925 (2), 10989 (2), 11053 (1), 11117 (1), 14701 (2), 14765 (3), 14829 (1), 14893 (1), 15853 (2), -tower 878: eta = -1.35, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 94.0391 - sampling = 0, 10 SCIndices: 7470 (2), 10926 (2), 10990 (2), 11054 (1), 11118 (1), 14702 (2), 14766 (3), 14830 (1), 14894 (1), 15854 (2), -tower 879: eta = -1.35, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = -126.166 - sampling = 0, 10 SCIndices: 7471 (2), 10927 (2), 10991 (2), 11055 (1), 11119 (1), 14703 (2), 14767 (3), 14831 (1), 14895 (1), 15855 (2), -tower 880: eta = -1.35, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 950.396 - sampling = 0, 10 SCIndices: 7472 (2), 10928 (2), 10992 (3), 11056 (1), 11120 (1), 14704 (2), 14768 (3), 14832 (1), 14896 (1), 15856 (2), -tower 881: eta = -1.35, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 171.296 - sampling = 0, 10 SCIndices: 7473 (2), 10929 (2), 10993 (3), 11057 (1), 11121 (1), 14705 (2), 14769 (3), 14833 (1), 14897 (1), 15857 (2), -tower 882: eta = -1.35, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 593.08 - sampling = 0, 10 SCIndices: 7474 (2), 10930 (2), 10994 (3), 11058 (1), 11122 (1), 14706 (2), 14770 (3), 14834 (1), 14898 (1), 15858 (2), -tower 883: eta = -1.35, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 682.707 - sampling = 0, 10 SCIndices: 7475 (2), 10931 (2), 10995 (3), 11059 (1), 11123 (1), 14707 (2), 14771 (3), 14835 (1), 14899 (1), 15859 (2), -tower 884: eta = -1.35, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 528.199 - sampling = 0, 10 SCIndices: 7476 (2), 10932 (2), 10996 (3), 11060 (1), 11124 (1), 14708 (2), 14772 (3), 14836 (1), 14900 (1), 15860 (2), -tower 885: eta = -1.35, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7477 (2), 10933 (2), 10997 (3), 11061 (1), 11125 (1), 14709 (2), 14773 (3), 14837 (1), 14901 (1), 15861 (2), -tower 886: eta = -1.35, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 100.066 - sampling = 0, 10 SCIndices: 7478 (2), 10934 (2), 10998 (3), 11062 (1), 11126 (1), 14710 (2), 14774 (3), 14838 (1), 14902 (1), 15862 (2), -tower 887: eta = -1.35, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 288.984 - sampling = 0, 10 SCIndices: 7479 (2), 10935 (2), 10999 (3), 11063 (1), 11127 (1), 14711 (2), 14775 (3), 14839 (1), 14903 (1), 15863 (2), -tower 888: eta = -1.35, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7480 (2), 10936 (2), 11000 (3), 11064 (1), 11128 (1), 14712 (2), 14776 (3), 14840 (1), 14904 (1), 15864 (2), -tower 889: eta = -1.35, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 238.614 - sampling = 0, 10 SCIndices: 7481 (2), 10937 (2), 11001 (3), 11065 (1), 11129 (1), 14713 (2), 14777 (3), 14841 (1), 14905 (1), 15865 (2), -tower 890: eta = -1.35, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7482 (2), 10938 (2), 11002 (3), 11066 (1), 11130 (1), 14714 (2), 14778 (3), 14842 (1), 14906 (1), 15866 (2), -tower 891: eta = -1.35, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 298.948 - sampling = 0, 10 SCIndices: 7483 (2), 10939 (2), 11003 (3), 11067 (1), 11131 (1), 14715 (2), 14779 (3), 14843 (1), 14907 (1), 15867 (2), -tower 892: eta = -1.35, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 143.504 - sampling = 0, 10 SCIndices: 7484 (2), 10940 (2), 11004 (3), 11068 (1), 11132 (1), 14716 (2), 14780 (3), 14844 (1), 14908 (1), 15868 (2), -tower 893: eta = -1.35, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 509.154 - sampling = 0, 10 SCIndices: 7485 (2), 10941 (2), 11005 (3), 11069 (1), 11133 (1), 14717 (2), 14781 (3), 14845 (1), 14909 (1), 15869 (2), -tower 894: eta = -1.35, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 7486 (2), 10942 (2), 11006 (3), 11070 (1), 11134 (1), 14718 (2), 14782 (3), 14846 (1), 14910 (1), 15870 (2), -tower 895: eta = -1.35, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 330.406 - sampling = 0, 10 SCIndices: 7487 (2), 10943 (2), 11007 (3), 11071 (1), 11135 (1), 14719 (2), 14783 (3), 14847 (1), 14911 (1), 15871 (2), -tower 896: eta = -1.45, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = -1.78192 - sampling = 0, 10 SCIndices: 448 (2), 3136 (2), 3200 (0), 3264 (1), 3328 (1), 7488 (2), 11136 (1), 11200 (2), 11264 (2), 14912 (1), -tower 897: eta = -1.45, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 449 (2), 3137 (2), 3201 (0), 3265 (1), 3329 (1), 7489 (2), 11137 (1), 11201 (2), 11265 (2), 14913 (1), -tower 898: eta = -1.45, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 450 (2), 3138 (2), 3202 (0), 3266 (1), 3330 (1), 7490 (2), 11138 (1), 11202 (2), 11266 (2), 14914 (1), -tower 899: eta = -1.45, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 245.892 - sampling = 0, 10 SCIndices: 451 (2), 3139 (2), 3203 (0), 3267 (1), 3331 (1), 7491 (2), 11139 (1), 11203 (2), 11267 (2), 14915 (1), -tower 900: eta = -1.45, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 304.823 - sampling = 0, 10 SCIndices: 452 (2), 3140 (2), 3204 (0), 3268 (1), 3332 (1), 7492 (2), 11140 (1), 11204 (2), 11268 (2), 14916 (1), -tower 901: eta = -1.45, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 82.0487 - sampling = 0, 10 SCIndices: 453 (2), 3141 (2), 3205 (0), 3269 (1), 3333 (1), 7493 (2), 11141 (1), 11205 (2), 11269 (2), 14917 (1), -tower 902: eta = -1.45, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 830.597 - sampling = 0, 10 SCIndices: 454 (2), 3142 (2), 3206 (0), 3270 (1), 3334 (1), 7494 (2), 11142 (1), 11206 (2), 11270 (2), 14918 (1), -tower 903: eta = -1.45, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 29.8336 - sampling = 0, 10 SCIndices: 455 (2), 3143 (2), 3207 (0), 3271 (1), 3335 (1), 7495 (2), 11143 (1), 11207 (2), 11271 (2), 14919 (1), -tower 904: eta = -1.45, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 120.23 - sampling = 0, 10 SCIndices: 456 (2), 3144 (2), 3208 (0), 3272 (1), 3336 (1), 7496 (2), 11144 (1), 11208 (2), 11272 (2), 14920 (1), -tower 905: eta = -1.45, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 84.6245 - sampling = 0, 10 SCIndices: 457 (2), 3145 (2), 3209 (0), 3273 (1), 3337 (1), 7497 (2), 11145 (1), 11209 (2), 11273 (2), 14921 (1), -tower 906: eta = -1.45, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 137.695 - sampling = 0, 10 SCIndices: 458 (2), 3146 (2), 3210 (0), 3274 (1), 3338 (2), 7498 (2), 11146 (1), 11210 (2), 11274 (2), 14922 (1), -tower 907: eta = -1.45, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 57.0115 - sampling = 0, 10 SCIndices: 459 (2), 3147 (2), 3211 (0), 3275 (1), 3339 (2), 7499 (2), 11147 (1), 11211 (2), 11275 (2), 14923 (1), -tower 908: eta = -1.45, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 943.242 - sampling = 0, 10 SCIndices: 460 (2), 3148 (2), 3212 (0), 3276 (1), 3340 (2), 7500 (2), 11148 (1), 11212 (2), 11276 (2), 14924 (1), -tower 909: eta = -1.45, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 584.662 - sampling = 0, 10 SCIndices: 461 (2), 3149 (2), 3213 (0), 3277 (1), 3341 (2), 7501 (2), 11149 (1), 11213 (2), 11277 (2), 14925 (1), -tower 910: eta = -1.45, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 1306.68 - sampling = 0, 10 SCIndices: 462 (2), 3150 (2), 3214 (0), 3278 (1), 3342 (2), 7502 (2), 11150 (1), 11214 (2), 11278 (2), 14926 (1), -tower 911: eta = -1.45, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 548.583 - sampling = 0, 10 SCIndices: 463 (2), 3151 (2), 3215 (0), 3279 (1), 3343 (2), 7503 (2), 11151 (1), 11215 (2), 11279 (2), 14927 (1), -tower 912: eta = -1.45, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 464 (2), 3152 (2), 3216 (0), 3280 (1), 3344 (2), 7504 (2), 11152 (1), 11216 (2), 11280 (2), 14928 (1), -tower 913: eta = -1.45, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 477.208 - sampling = 0, 10 SCIndices: 465 (2), 3153 (2), 3217 (0), 3281 (1), 3345 (2), 7505 (2), 11153 (1), 11217 (2), 11281 (2), 14929 (1), -tower 914: eta = -1.45, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 219.212 - sampling = 0, 10 SCIndices: 466 (2), 3154 (2), 3218 (0), 3282 (1), 3346 (2), 7506 (2), 11154 (1), 11218 (2), 11282 (3), 14930 (1), -tower 915: eta = -1.45, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 351.48 - sampling = 0, 10 SCIndices: 467 (2), 3155 (2), 3219 (0), 3283 (1), 3347 (2), 7507 (2), 11155 (1), 11219 (2), 11283 (3), 14931 (1), -tower 916: eta = -1.45, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 250.277 - sampling = 0, 10 SCIndices: 468 (2), 3156 (2), 3220 (1), 3284 (1), 3348 (2), 7508 (2), 11156 (1), 11220 (2), 11284 (3), 14932 (1), -tower 917: eta = -1.45, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 57.0152 - sampling = 0, 10 SCIndices: 469 (2), 3157 (2), 3221 (1), 3285 (1), 3349 (2), 7509 (2), 11157 (1), 11221 (2), 11285 (3), 14933 (1), -tower 918: eta = -1.45, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 640.234 - sampling = 0, 10 SCIndices: 470 (2), 3158 (2), 3222 (1), 3286 (1), 3350 (2), 7510 (2), 11158 (1), 11222 (2), 11286 (3), 14934 (1), -tower 919: eta = -1.45, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 789.246 - sampling = 0, 10 SCIndices: 471 (2), 3159 (2), 3223 (1), 3287 (1), 3351 (2), 7511 (2), 11159 (1), 11223 (2), 11287 (3), 14935 (1), -tower 920: eta = -1.45, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 1402.46 - sampling = 0, 10 SCIndices: 472 (2), 3160 (2), 3224 (1), 3288 (1), 3352 (2), 7512 (3), 11160 (1), 11224 (2), 11288 (3), 14936 (1), -tower 921: eta = -1.45, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 437.461 - sampling = 0, 10 SCIndices: 473 (2), 3161 (2), 3225 (1), 3289 (1), 3353 (2), 7513 (3), 11161 (1), 11225 (2), 11289 (3), 14937 (1), -tower 922: eta = -1.45, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 207.576 - sampling = 0, 10 SCIndices: 474 (2), 3162 (3), 3226 (1), 3290 (1), 3354 (2), 7514 (3), 11162 (1), 11226 (2), 11290 (3), 14938 (2), -tower 923: eta = -1.45, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 475 (2), 3163 (3), 3227 (1), 3291 (1), 3355 (2), 7515 (3), 11163 (1), 11227 (2), 11291 (3), 14939 (2), -tower 924: eta = -1.45, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = -28.6035 - sampling = 0, 10 SCIndices: 476 (2), 3164 (3), 3228 (1), 3292 (1), 3356 (2), 7516 (3), 11164 (1), 11228 (2), 11292 (3), 14940 (2), -tower 925: eta = -1.45, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 477 (2), 3165 (3), 3229 (1), 3293 (1), 3357 (2), 7517 (3), 11165 (1), 11229 (2), 11293 (3), 14941 (2), -tower 926: eta = -1.45, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 404.889 - sampling = 0, 10 SCIndices: 478 (2), 3166 (3), 3230 (1), 3294 (1), 3358 (2), 7518 (3), 11166 (1), 11230 (2), 11294 (3), 14942 (2), -tower 927: eta = -1.45, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 256.57 - sampling = 0, 10 SCIndices: 479 (2), 3167 (3), 3231 (1), 3295 (1), 3359 (2), 7519 (3), 11167 (1), 11231 (2), 11295 (3), 14943 (2), -tower 928: eta = -1.45, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 480 (2), 3168 (3), 3232 (1), 3296 (1), 3360 (2), 7520 (3), 11168 (2), 11232 (2), 11296 (3), 14944 (2), -tower 929: eta = -1.45, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 1020.4 - sampling = 0, 10 SCIndices: 481 (2), 3169 (3), 3233 (1), 3297 (1), 3361 (2), 7521 (3), 11169 (2), 11233 (2), 11297 (3), 14945 (2), -tower 930: eta = -1.45, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 246.832 - sampling = 0, 10 SCIndices: 482 (2), 3170 (3), 3234 (1), 3298 (1), 3362 (2), 7522 (3), 11170 (2), 11234 (2), 11298 (3), 14946 (2), -tower 931: eta = -1.45, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 1215.53 - sampling = 0, 10 SCIndices: 483 (2), 3171 (3), 3235 (1), 3299 (1), 3363 (2), 7523 (3), 11171 (2), 11235 (2), 11299 (3), 14947 (2), -tower 932: eta = -1.45, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 484 (2), 3172 (3), 3236 (1), 3300 (1), 3364 (2), 7524 (3), 11172 (2), 11236 (2), 11300 (3), 14948 (2), -tower 933: eta = -1.45, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 452.528 - sampling = 0, 10 SCIndices: 485 (2), 3173 (3), 3237 (1), 3301 (1), 3365 (2), 7525 (3), 11173 (2), 11237 (2), 11301 (3), 14949 (2), -tower 934: eta = -1.45, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 486 (2), 3174 (3), 3238 (1), 3302 (1), 3366 (2), 7526 (3), 11174 (2), 11238 (2), 11302 (3), 14950 (2), -tower 935: eta = -1.45, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 307.451 - sampling = 0, 10 SCIndices: 487 (2), 3175 (3), 3239 (1), 3303 (1), 3367 (2), 7527 (3), 11175 (2), 11239 (2), 11303 (3), 14951 (2), -tower 936: eta = -1.45, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 358.934 - sampling = 0, 10 SCIndices: 488 (2), 3176 (3), 3240 (1), 3304 (1), 3368 (2), 7528 (3), 11176 (2), 11240 (2), 11304 (3), 14952 (2), -tower 937: eta = -1.45, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 29.8923 - sampling = 0, 10 SCIndices: 489 (2), 3177 (3), 3241 (1), 3305 (1), 3369 (2), 7529 (3), 11177 (2), 11241 (2), 11305 (3), 14953 (2), -tower 938: eta = -1.45, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 1073.4 - sampling = 0, 10 SCIndices: 490 (2), 3178 (3), 3242 (1), 3306 (1), 3370 (2), 7530 (3), 11178 (2), 11242 (2), 11306 (3), 14954 (2), -tower 939: eta = -1.45, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 54.4081 - sampling = 0, 10 SCIndices: 491 (2), 3179 (3), 3243 (1), 3307 (1), 3371 (2), 7531 (3), 11179 (2), 11243 (2), 11307 (3), 14955 (2), -tower 940: eta = -1.45, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 492 (2), 3180 (3), 3244 (1), 3308 (1), 3372 (2), 7532 (3), 11180 (2), 11244 (2), 11308 (3), 14956 (2), -tower 941: eta = -1.45, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 1129.26 - sampling = 0, 10 SCIndices: 493 (2), 3181 (3), 3245 (1), 3309 (1), 3373 (2), 7533 (3), 11181 (2), 11245 (2), 11309 (3), 14957 (2), -tower 942: eta = -1.45, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 246.877 - sampling = 0, 10 SCIndices: 494 (2), 3182 (3), 3246 (1), 3310 (1), 3374 (2), 7534 (3), 11182 (2), 11246 (2), 11310 (0), 14958 (2), -tower 943: eta = -1.45, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 1.65294 - sampling = 0, 10 SCIndices: 495 (2), 3183 (3), 3247 (1), 3311 (1), 3375 (2), 7535 (3), 11183 (2), 11247 (2), 11311 (0), 14959 (2), -tower 944: eta = -1.45, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 1362.35 - sampling = 0, 10 SCIndices: 496 (2), 3184 (3), 3248 (1), 3312 (1), 3376 (2), 7536 (3), 11184 (2), 11248 (2), 11312 (0), 14960 (2), -tower 945: eta = -1.45, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 247.455 - sampling = 0, 10 SCIndices: 497 (2), 3185 (3), 3249 (1), 3313 (1), 3377 (2), 7537 (3), 11185 (2), 11249 (2), 11313 (0), 14961 (2), -tower 946: eta = -1.45, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 1730.28 - sampling = 0, 10 SCIndices: 498 (2), 3186 (3), 3250 (1), 3314 (1), 3378 (2), 7538 (3), 11186 (2), 11250 (2), 11314 (0), 14962 (2), -tower 947: eta = -1.45, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 1471.78 - sampling = 0, 10 SCIndices: 499 (2), 3187 (3), 3251 (1), 3315 (1), 3379 (2), 7539 (3), 11187 (2), 11251 (2), 11315 (0), 14963 (2), -tower 948: eta = -1.45, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 868.199 - sampling = 0, 10 SCIndices: 500 (2), 3188 (3), 3252 (1), 3316 (1), 3380 (2), 7540 (0), 11188 (2), 11252 (2), 11316 (0), 14964 (2), -tower 949: eta = -1.45, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 637.13 - sampling = 0, 10 SCIndices: 501 (2), 3189 (3), 3253 (1), 3317 (1), 3381 (2), 7541 (0), 11189 (2), 11253 (2), 11317 (0), 14965 (2), -tower 950: eta = -1.45, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 616.307 - sampling = 0, 10 SCIndices: 502 (2), 3190 (0), 3254 (1), 3318 (1), 3382 (2), 7542 (0), 11190 (2), 11254 (2), 11318 (0), 14966 (2), -tower 951: eta = -1.45, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = -29.1057 - sampling = 0, 10 SCIndices: 503 (2), 3191 (0), 3255 (1), 3319 (1), 3383 (2), 7543 (0), 11191 (2), 11255 (2), 11319 (0), 14967 (2), -tower 952: eta = -1.45, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 504 (2), 3192 (0), 3256 (1), 3320 (1), 3384 (2), 7544 (0), 11192 (2), 11256 (2), 11320 (0), 14968 (2), -tower 953: eta = -1.45, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 522.682 - sampling = 0, 10 SCIndices: 505 (2), 3193 (0), 3257 (1), 3321 (1), 3385 (2), 7545 (0), 11193 (2), 11257 (2), 11321 (0), 14969 (2), -tower 954: eta = -1.45, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 751.792 - sampling = 0, 10 SCIndices: 506 (2), 3194 (0), 3258 (1), 3322 (1), 3386 (2), 7546 (0), 11194 (2), 11258 (2), 11322 (0), 14970 (2), -tower 955: eta = -1.45, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 135.05 - sampling = 0, 10 SCIndices: 507 (2), 3195 (0), 3259 (1), 3323 (1), 3387 (2), 7547 (0), 11195 (2), 11259 (2), 11323 (0), 14971 (2), -tower 956: eta = -1.45, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 198.833 - sampling = 0, 10 SCIndices: 508 (2), 3196 (0), 3260 (1), 3324 (1), 3388 (2), 7548 (0), 11196 (2), 11260 (2), 11324 (0), 14972 (2), -tower 957: eta = -1.45, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 54.8977 - sampling = 0, 10 SCIndices: 509 (2), 3197 (0), 3261 (1), 3325 (1), 3389 (2), 7549 (0), 11197 (2), 11261 (2), 11325 (0), 14973 (2), -tower 958: eta = -1.45, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 911.563 - sampling = 0, 10 SCIndices: 510 (2), 3198 (0), 3262 (1), 3326 (1), 3390 (2), 7550 (0), 11198 (2), 11262 (2), 11326 (0), 14974 (2), -tower 959: eta = -1.45, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = -70.4666 - sampling = 0, 10 SCIndices: 511 (2), 3199 (0), 3263 (1), 3327 (1), 3391 (2), 7551 (0), 11199 (2), 11263 (2), 11327 (0), 14975 (2), -tower 960: eta = -1.55, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 88.3097 - sampling = 0, 10 SCIndices: 256 (2), 512 (2), 576 (3), 640 (1), 704 (1), 3392 (2), 3456 (3), 3520 (1), 3584 (1), 5952 (2), -tower 961: eta = -1.55, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 82.7108 - sampling = 0, 10 SCIndices: 257 (2), 513 (2), 577 (3), 641 (1), 705 (1), 3393 (2), 3457 (3), 3521 (1), 3585 (1), 5953 (2), -tower 962: eta = -1.55, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 176.01 - sampling = 0, 10 SCIndices: 258 (2), 514 (2), 578 (3), 642 (1), 706 (1), 3394 (2), 3458 (3), 3522 (1), 3586 (1), 5954 (2), -tower 963: eta = -1.55, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = -28.9712 - sampling = 0, 10 SCIndices: 259 (2), 515 (2), 579 (3), 643 (1), 707 (1), 3395 (2), 3459 (3), 3523 (1), 3587 (1), 5955 (2), -tower 964: eta = -1.55, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 212.636 - sampling = 0, 10 SCIndices: 260 (2), 516 (2), 580 (0), 644 (1), 708 (1), 3396 (2), 3460 (3), 3524 (1), 3588 (1), 5956 (2), -tower 965: eta = -1.55, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 162.315 - sampling = 0, 10 SCIndices: 261 (2), 517 (2), 581 (0), 645 (1), 709 (1), 3397 (2), 3461 (3), 3525 (1), 3589 (1), 5957 (2), -tower 966: eta = -1.55, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 108.596 - sampling = 0, 10 SCIndices: 262 (3), 518 (2), 582 (0), 646 (1), 710 (1), 3398 (2), 3462 (3), 3526 (1), 3590 (1), 5958 (2), -tower 967: eta = -1.55, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 263 (3), 519 (2), 583 (0), 647 (1), 711 (1), 3399 (2), 3463 (3), 3527 (1), 3591 (1), 5959 (2), -tower 968: eta = -1.55, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 508.666 - sampling = 0, 10 SCIndices: 264 (3), 520 (2), 584 (0), 648 (1), 712 (1), 3400 (2), 3464 (3), 3528 (1), 3592 (1), 5960 (2), -tower 969: eta = -1.55, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 340.103 - sampling = 0, 10 SCIndices: 265 (3), 521 (2), 585 (0), 649 (1), 713 (1), 3401 (2), 3465 (3), 3529 (1), 3593 (1), 5961 (2), -tower 970: eta = -1.55, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 83.5581 - sampling = 0, 10 SCIndices: 266 (3), 522 (2), 586 (0), 650 (1), 714 (1), 3402 (2), 3466 (3), 3530 (1), 3594 (1), 5962 (2), -tower 971: eta = -1.55, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 115.287 - sampling = 0, 10 SCIndices: 267 (3), 523 (2), 587 (0), 651 (1), 715 (1), 3403 (2), 3467 (3), 3531 (1), 3595 (1), 5963 (2), -tower 972: eta = -1.55, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 203.95 - sampling = 0, 10 SCIndices: 268 (3), 524 (2), 588 (0), 652 (1), 716 (1), 3404 (2), 3468 (3), 3532 (1), 3596 (1), 5964 (2), -tower 973: eta = -1.55, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 269 (3), 525 (2), 589 (0), 653 (1), 717 (1), 3405 (2), 3469 (3), 3533 (1), 3597 (1), 5965 (2), -tower 974: eta = -1.55, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 65.9369 - sampling = 0, 10 SCIndices: 270 (3), 526 (2), 590 (0), 654 (1), 718 (1), 3406 (2), 3470 (3), 3534 (1), 3598 (1), 5966 (2), -tower 975: eta = -1.55, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 225.358 - sampling = 0, 10 SCIndices: 271 (3), 527 (2), 591 (0), 655 (1), 719 (1), 3407 (2), 3471 (3), 3535 (1), 3599 (1), 5967 (2), -tower 976: eta = -1.55, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 247.751 - sampling = 0, 10 SCIndices: 272 (3), 528 (2), 592 (0), 656 (1), 720 (1), 3408 (2), 3472 (3), 3536 (1), 3600 (1), 5968 (2), -tower 977: eta = -1.55, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 221.12 - sampling = 0, 10 SCIndices: 273 (3), 529 (2), 593 (0), 657 (1), 721 (1), 3409 (2), 3473 (3), 3537 (1), 3601 (1), 5969 (2), -tower 978: eta = -1.55, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 159.026 - sampling = 0, 10 SCIndices: 274 (3), 530 (2), 594 (0), 658 (1), 722 (1), 3410 (2), 3474 (3), 3538 (1), 3602 (1), 5970 (2), -tower 979: eta = -1.55, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 475.654 - sampling = 0, 10 SCIndices: 275 (3), 531 (2), 595 (0), 659 (1), 723 (1), 3411 (2), 3475 (3), 3539 (1), 3603 (1), 5971 (2), -tower 980: eta = -1.55, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 106.279 - sampling = 0, 10 SCIndices: 276 (3), 532 (2), 596 (0), 660 (1), 724 (1), 3412 (2), 3476 (3), 3540 (1), 3604 (1), 5972 (2), -tower 981: eta = -1.55, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = -22.3098 - sampling = 0, 10 SCIndices: 277 (3), 533 (2), 597 (0), 661 (1), 725 (1), 3413 (2), 3477 (3), 3541 (1), 3605 (1), 5973 (2), -tower 982: eta = -1.55, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 459.392 - sampling = 0, 10 SCIndices: 278 (3), 534 (2), 598 (0), 662 (1), 726 (1), 3414 (2), 3478 (3), 3542 (1), 3606 (1), 5974 (2), -tower 983: eta = -1.55, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = -17.8832 - sampling = 0, 10 SCIndices: 279 (3), 535 (2), 599 (0), 663 (1), 727 (1), 3415 (2), 3479 (3), 3543 (1), 3607 (1), 5975 (2), -tower 984: eta = -1.55, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 694.716 - sampling = 0, 10 SCIndices: 280 (3), 536 (2), 600 (0), 664 (1), 728 (2), 3416 (2), 3480 (0), 3544 (1), 3608 (1), 5976 (2), -tower 985: eta = -1.55, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 281 (3), 537 (2), 601 (0), 665 (1), 729 (2), 3417 (2), 3481 (0), 3545 (1), 3609 (1), 5977 (2), -tower 986: eta = -1.55, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 289.367 - sampling = 0, 10 SCIndices: 282 (3), 538 (2), 602 (0), 666 (1), 730 (2), 3418 (2), 3482 (0), 3546 (1), 3610 (1), 5978 (2), -tower 987: eta = -1.55, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 39.7945 - sampling = 0, 10 SCIndices: 283 (3), 539 (2), 603 (0), 667 (1), 731 (2), 3419 (2), 3483 (0), 3547 (1), 3611 (1), 5979 (2), -tower 988: eta = -1.55, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 284.445 - sampling = 0, 10 SCIndices: 284 (3), 540 (2), 604 (0), 668 (1), 732 (2), 3420 (2), 3484 (0), 3548 (1), 3612 (1), 5980 (2), -tower 989: eta = -1.55, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 86.3263 - sampling = 0, 10 SCIndices: 285 (3), 541 (2), 605 (0), 669 (1), 733 (2), 3421 (2), 3485 (0), 3549 (1), 3613 (1), 5981 (2), -tower 990: eta = -1.55, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 300.755 - sampling = 0, 10 SCIndices: 286 (3), 542 (2), 606 (0), 670 (1), 734 (2), 3422 (2), 3486 (0), 3550 (1), 3614 (1), 5982 (2), -tower 991: eta = -1.55, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 226.592 - sampling = 0, 10 SCIndices: 287 (3), 543 (2), 607 (0), 671 (1), 735 (2), 3423 (2), 3487 (0), 3551 (1), 3615 (1), 5983 (2), -tower 992: eta = -1.55, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 746.026 - sampling = 0, 10 SCIndices: 288 (3), 544 (2), 608 (0), 672 (1), 736 (2), 3424 (2), 3488 (0), 3552 (1), 3616 (1), 5984 (2), -tower 993: eta = -1.55, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 309.038 - sampling = 0, 10 SCIndices: 289 (3), 545 (2), 609 (0), 673 (1), 737 (2), 3425 (2), 3489 (0), 3553 (1), 3617 (1), 5985 (2), -tower 994: eta = -1.55, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 43.0874 - sampling = 0, 10 SCIndices: 290 (0), 546 (2), 610 (1), 674 (1), 738 (2), 3426 (2), 3490 (0), 3554 (1), 3618 (1), 5986 (2), -tower 995: eta = -1.55, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 2151.54 - sampling = 0, 10 SCIndices: 291 (0), 547 (2), 611 (1), 675 (1), 739 (2), 3427 (2), 3491 (0), 3555 (1), 3619 (1), 5987 (2), -tower 996: eta = -1.55, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 401.359 - sampling = 0, 10 SCIndices: 292 (0), 548 (2), 612 (1), 676 (1), 740 (2), 3428 (2), 3492 (0), 3556 (1), 3620 (1), 5988 (2), -tower 997: eta = -1.55, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 40.2391 - sampling = 0, 10 SCIndices: 293 (0), 549 (2), 613 (1), 677 (1), 741 (2), 3429 (2), 3493 (0), 3557 (1), 3621 (1), 5989 (2), -tower 998: eta = -1.55, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 560.811 - sampling = 0, 10 SCIndices: 294 (0), 550 (2), 614 (1), 678 (1), 742 (2), 3430 (2), 3494 (0), 3558 (1), 3622 (1), 5990 (2), -tower 999: eta = -1.55, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 95.34 - sampling = 0, 10 SCIndices: 295 (0), 551 (2), 615 (1), 679 (1), 743 (2), 3431 (2), 3495 (0), 3559 (1), 3623 (1), 5991 (2), -tower 1000: eta = -1.55, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 96.9227 - sampling = 0, 10 SCIndices: 296 (0), 552 (3), 616 (1), 680 (1), 744 (2), 3432 (2), 3496 (0), 3560 (1), 3624 (1), 5992 (2), -tower 1001: eta = -1.55, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 34.1692 - sampling = 0, 10 SCIndices: 297 (0), 553 (3), 617 (1), 681 (1), 745 (2), 3433 (2), 3497 (0), 3561 (1), 3625 (1), 5993 (2), -tower 1002: eta = -1.55, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 298 (0), 554 (3), 618 (1), 682 (1), 746 (2), 3434 (2), 3498 (0), 3562 (1), 3626 (1), 5994 (2), -tower 1003: eta = -1.55, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 210.362 - sampling = 0, 10 SCIndices: 299 (0), 555 (3), 619 (1), 683 (1), 747 (2), 3435 (2), 3499 (0), 3563 (1), 3627 (1), 5995 (2), -tower 1004: eta = -1.55, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 300 (0), 556 (3), 620 (1), 684 (1), 748 (2), 3436 (2), 3500 (0), 3564 (1), 3628 (2), 5996 (2), -tower 1005: eta = -1.55, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 395.261 - sampling = 0, 10 SCIndices: 301 (0), 557 (3), 621 (1), 685 (1), 749 (2), 3437 (2), 3501 (0), 3565 (1), 3629 (2), 5997 (2), -tower 1006: eta = -1.55, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 46.4054 - sampling = 0, 10 SCIndices: 302 (0), 558 (3), 622 (1), 686 (1), 750 (2), 3438 (2), 3502 (0), 3566 (1), 3630 (2), 5998 (2), -tower 1007: eta = -1.55, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 34.1766 - sampling = 0, 10 SCIndices: 303 (0), 559 (3), 623 (1), 687 (1), 751 (2), 3439 (2), 3503 (0), 3567 (1), 3631 (2), 5999 (2), -tower 1008: eta = -1.55, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 86.2521 - sampling = 0, 10 SCIndices: 304 (0), 560 (3), 624 (1), 688 (1), 752 (2), 3440 (2), 3504 (0), 3568 (1), 3632 (2), 6000 (2), -tower 1009: eta = -1.55, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 191.819 - sampling = 0, 10 SCIndices: 305 (0), 561 (3), 625 (1), 689 (1), 753 (2), 3441 (2), 3505 (0), 3569 (1), 3633 (2), 6001 (2), -tower 1010: eta = -1.55, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 676.659 - sampling = 0, 10 SCIndices: 306 (0), 562 (3), 626 (1), 690 (1), 754 (2), 3442 (2), 3506 (0), 3570 (1), 3634 (2), 6002 (2), -tower 1011: eta = -1.55, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 651.714 - sampling = 0, 10 SCIndices: 307 (0), 563 (3), 627 (1), 691 (1), 755 (2), 3443 (2), 3507 (0), 3571 (1), 3635 (2), 6003 (2), -tower 1012: eta = -1.55, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 308 (0), 564 (3), 628 (1), 692 (1), 756 (2), 3444 (2), 3508 (0), 3572 (1), 3636 (2), 6004 (2), -tower 1013: eta = -1.55, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 323.465 - sampling = 0, 10 SCIndices: 309 (0), 565 (3), 629 (1), 693 (1), 757 (2), 3445 (2), 3509 (0), 3573 (1), 3637 (2), 6005 (2), -tower 1014: eta = -1.55, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 510.734 - sampling = 0, 10 SCIndices: 310 (0), 566 (3), 630 (1), 694 (1), 758 (2), 3446 (2), 3510 (1), 3574 (1), 3638 (2), 6006 (2), -tower 1015: eta = -1.55, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 139.185 - sampling = 0, 10 SCIndices: 311 (0), 567 (3), 631 (1), 695 (1), 759 (2), 3447 (2), 3511 (1), 3575 (1), 3639 (2), 6007 (2), -tower 1016: eta = -1.55, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 280.291 - sampling = 0, 10 SCIndices: 312 (0), 568 (3), 632 (1), 696 (1), 760 (2), 3448 (2), 3512 (1), 3576 (1), 3640 (2), 6008 (2), -tower 1017: eta = -1.55, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 202.539 - sampling = 0, 10 SCIndices: 313 (0), 569 (3), 633 (1), 697 (1), 761 (2), 3449 (2), 3513 (1), 3577 (1), 3641 (2), 6009 (2), -tower 1018: eta = -1.55, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 78.1523 - sampling = 0, 10 SCIndices: 314 (0), 570 (3), 634 (1), 698 (1), 762 (2), 3450 (2), 3514 (1), 3578 (1), 3642 (2), 6010 (2), -tower 1019: eta = -1.55, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 23.3284 - sampling = 0, 10 SCIndices: 315 (0), 571 (3), 635 (1), 699 (1), 763 (2), 3451 (2), 3515 (1), 3579 (1), 3643 (2), 6011 (2), -tower 1020: eta = -1.55, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 299.107 - sampling = 0, 10 SCIndices: 316 (0), 572 (3), 636 (1), 700 (1), 764 (2), 3452 (3), 3516 (1), 3580 (1), 3644 (2), 6012 (2), -tower 1021: eta = -1.55, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 383.226 - sampling = 0, 10 SCIndices: 317 (0), 573 (3), 637 (1), 701 (1), 765 (2), 3453 (3), 3517 (1), 3581 (1), 3645 (2), 6013 (2), -tower 1022: eta = -1.55, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 89.4673 - sampling = 0, 10 SCIndices: 318 (0), 574 (3), 638 (1), 702 (1), 766 (2), 3454 (3), 3518 (1), 3582 (1), 3646 (2), 6014 (2), -tower 1023: eta = -1.55, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 272.677 - sampling = 0, 10 SCIndices: 319 (0), 575 (3), 639 (1), 703 (1), 767 (2), 3455 (3), 3519 (1), 3583 (1), 3647 (2), 6015 (2), -tower 1024: eta = -1.65, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 935.674 - sampling = 0, 10 SCIndices: 320 (1), 768 (2), 832 (2), 896 (0), 960 (1), 3648 (2), 3712 (2), 3776 (0), 3840 (1), 6016 (2), -tower 1025: eta = -1.65, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 321 (1), 769 (2), 833 (2), 897 (0), 961 (1), 3649 (2), 3713 (2), 3777 (0), 3841 (1), 6017 (2), -tower 1026: eta = -1.65, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 83.6485 - sampling = 0, 10 SCIndices: 322 (1), 770 (2), 834 (2), 898 (0), 962 (1), 3650 (2), 3714 (2), 3778 (0), 3842 (1), 6018 (2), -tower 1027: eta = -1.65, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 273.827 - sampling = 0, 10 SCIndices: 323 (1), 771 (2), 835 (2), 899 (0), 963 (1), 3651 (2), 3715 (2), 3779 (0), 3843 (1), 6019 (2), -tower 1028: eta = -1.65, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 119.823 - sampling = 0, 10 SCIndices: 324 (1), 772 (2), 836 (2), 900 (1), 964 (1), 3652 (2), 3716 (2), 3780 (0), 3844 (1), 6020 (2), -tower 1029: eta = -1.65, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 331.741 - sampling = 0, 10 SCIndices: 325 (1), 773 (2), 837 (2), 901 (1), 965 (1), 3653 (2), 3717 (2), 3781 (0), 3845 (1), 6021 (2), -tower 1030: eta = -1.65, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 213.821 - sampling = 0, 10 SCIndices: 326 (1), 774 (2), 838 (2), 902 (1), 966 (1), 3654 (2), 3718 (2), 3782 (0), 3846 (1), 6022 (2), -tower 1031: eta = -1.65, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 121.472 - sampling = 0, 10 SCIndices: 327 (1), 775 (2), 839 (2), 903 (1), 967 (1), 3655 (2), 3719 (2), 3783 (0), 3847 (1), 6023 (2), -tower 1032: eta = -1.65, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 59.0514 - sampling = 0, 10 SCIndices: 328 (1), 776 (2), 840 (2), 904 (1), 968 (1), 3656 (2), 3720 (2), 3784 (0), 3848 (1), 6024 (2), -tower 1033: eta = -1.65, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 148.16 - sampling = 0, 10 SCIndices: 329 (1), 777 (2), 841 (2), 905 (1), 969 (1), 3657 (2), 3721 (2), 3785 (0), 3849 (1), 6025 (2), -tower 1034: eta = -1.65, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 326.27 - sampling = 0, 10 SCIndices: 330 (1), 778 (2), 842 (3), 906 (1), 970 (1), 3658 (2), 3722 (2), 3786 (0), 3850 (1), 6026 (2), -tower 1035: eta = -1.65, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 196.012 - sampling = 0, 10 SCIndices: 331 (1), 779 (2), 843 (3), 907 (1), 971 (1), 3659 (2), 3723 (2), 3787 (0), 3851 (1), 6027 (2), -tower 1036: eta = -1.65, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 396.665 - sampling = 0, 10 SCIndices: 332 (1), 780 (2), 844 (3), 908 (1), 972 (1), 3660 (2), 3724 (2), 3788 (0), 3852 (1), 6028 (2), -tower 1037: eta = -1.65, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 333 (1), 781 (2), 845 (3), 909 (1), 973 (1), 3661 (2), 3725 (2), 3789 (0), 3853 (1), 6029 (2), -tower 1038: eta = -1.65, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 140.683 - sampling = 0, 10 SCIndices: 334 (1), 782 (2), 846 (3), 910 (1), 974 (1), 3662 (2), 3726 (2), 3790 (0), 3854 (1), 6030 (2), -tower 1039: eta = -1.65, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 130.444 - sampling = 0, 10 SCIndices: 335 (1), 783 (2), 847 (3), 911 (1), 975 (1), 3663 (2), 3727 (2), 3791 (0), 3855 (1), 6031 (2), -tower 1040: eta = -1.65, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 232.54 - sampling = 0, 10 SCIndices: 336 (1), 784 (2), 848 (3), 912 (1), 976 (1), 3664 (2), 3728 (2), 3792 (0), 3856 (1), 6032 (2), -tower 1041: eta = -1.65, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 23.1318 - sampling = 0, 10 SCIndices: 337 (1), 785 (2), 849 (3), 913 (1), 977 (1), 3665 (2), 3729 (2), 3793 (0), 3857 (1), 6033 (2), -tower 1042: eta = -1.65, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 151.216 - sampling = 0, 10 SCIndices: 338 (1), 786 (2), 850 (3), 914 (1), 978 (1), 3666 (2), 3730 (2), 3794 (0), 3858 (1), 6034 (2), -tower 1043: eta = -1.65, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 50.0973 - sampling = 0, 10 SCIndices: 339 (1), 787 (2), 851 (3), 915 (1), 979 (1), 3667 (2), 3731 (2), 3795 (0), 3859 (1), 6035 (2), -tower 1044: eta = -1.65, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 143.141 - sampling = 0, 10 SCIndices: 340 (1), 788 (2), 852 (3), 916 (1), 980 (1), 3668 (2), 3732 (2), 3796 (0), 3860 (1), 6036 (2), -tower 1045: eta = -1.65, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 207.517 - sampling = 0, 10 SCIndices: 341 (1), 789 (2), 853 (3), 917 (1), 981 (1), 3669 (2), 3733 (2), 3797 (0), 3861 (1), 6037 (2), -tower 1046: eta = -1.65, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 662.49 - sampling = 0, 10 SCIndices: 342 (1), 790 (2), 854 (3), 918 (1), 982 (1), 3670 (2), 3734 (2), 3798 (0), 3862 (1), 6038 (2), -tower 1047: eta = -1.65, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 202.011 - sampling = 0, 10 SCIndices: 343 (1), 791 (2), 855 (3), 919 (1), 983 (1), 3671 (2), 3735 (2), 3799 (0), 3863 (1), 6039 (2), -tower 1048: eta = -1.65, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 197.817 - sampling = 0, 10 SCIndices: 344 (1), 792 (2), 856 (3), 920 (1), 984 (1), 3672 (2), 3736 (2), 3800 (1), 3864 (1), 6040 (2), -tower 1049: eta = -1.65, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 14.0631 - sampling = 0, 10 SCIndices: 345 (1), 793 (2), 857 (3), 921 (1), 985 (1), 3673 (2), 3737 (2), 3801 (1), 3865 (1), 6041 (2), -tower 1050: eta = -1.65, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 229.66 - sampling = 0, 10 SCIndices: 346 (1), 794 (2), 858 (3), 922 (1), 986 (1), 3674 (2), 3738 (2), 3802 (1), 3866 (1), 6042 (2), -tower 1051: eta = -1.65, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 802.201 - sampling = 0, 10 SCIndices: 347 (1), 795 (2), 859 (3), 923 (1), 987 (1), 3675 (2), 3739 (2), 3803 (1), 3867 (1), 6043 (2), -tower 1052: eta = -1.65, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 42.3454 - sampling = 0, 10 SCIndices: 348 (1), 796 (2), 860 (3), 924 (1), 988 (1), 3676 (2), 3740 (2), 3804 (1), 3868 (1), 6044 (2), -tower 1053: eta = -1.65, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 299.761 - sampling = 0, 10 SCIndices: 349 (1), 797 (2), 861 (3), 925 (1), 989 (1), 3677 (2), 3741 (2), 3805 (1), 3869 (1), 6045 (2), -tower 1054: eta = -1.65, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 177.211 - sampling = 0, 10 SCIndices: 350 (1), 798 (2), 862 (3), 926 (1), 990 (1), 3678 (2), 3742 (3), 3806 (1), 3870 (1), 6046 (2), -tower 1055: eta = -1.65, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 24.1416 - sampling = 0, 10 SCIndices: 351 (1), 799 (2), 863 (3), 927 (1), 991 (1), 3679 (2), 3743 (3), 3807 (1), 3871 (1), 6047 (2), -tower 1056: eta = -1.65, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 64.8214 - sampling = 0, 10 SCIndices: 352 (1), 800 (2), 864 (3), 928 (1), 992 (1), 3680 (2), 3744 (3), 3808 (1), 3872 (1), 6048 (2), -tower 1057: eta = -1.65, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 13.1186 - sampling = 0, 10 SCIndices: 353 (1), 801 (2), 865 (3), 929 (1), 993 (1), 3681 (2), 3745 (3), 3809 (1), 3873 (1), 6049 (2), -tower 1058: eta = -1.65, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = -29.6977 - sampling = 0, 10 SCIndices: 354 (1), 802 (2), 866 (3), 930 (1), 994 (1), 3682 (2), 3746 (3), 3810 (1), 3874 (1), 6050 (2), -tower 1059: eta = -1.65, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 528.608 - sampling = 0, 10 SCIndices: 355 (1), 803 (2), 867 (3), 931 (1), 995 (1), 3683 (2), 3747 (3), 3811 (1), 3875 (1), 6051 (2), -tower 1060: eta = -1.65, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 385.371 - sampling = 0, 10 SCIndices: 356 (1), 804 (2), 868 (3), 932 (1), 996 (1), 3684 (2), 3748 (3), 3812 (1), 3876 (1), 6052 (2), -tower 1061: eta = -1.65, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 269.107 - sampling = 0, 10 SCIndices: 357 (1), 805 (2), 869 (3), 933 (1), 997 (1), 3685 (2), 3749 (3), 3813 (1), 3877 (1), 6053 (2), -tower 1062: eta = -1.65, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 126.183 - sampling = 0, 10 SCIndices: 358 (1), 806 (2), 870 (0), 934 (1), 998 (1), 3686 (2), 3750 (3), 3814 (1), 3878 (1), 6054 (2), -tower 1063: eta = -1.65, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 215.608 - sampling = 0, 10 SCIndices: 359 (1), 807 (2), 871 (0), 935 (1), 999 (1), 3687 (2), 3751 (3), 3815 (1), 3879 (1), 6055 (2), -tower 1064: eta = -1.65, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 213.324 - sampling = 0, 10 SCIndices: 360 (1), 808 (2), 872 (0), 936 (1), 1000 (1), 3688 (2), 3752 (3), 3816 (1), 3880 (1), 6056 (2), -tower 1065: eta = -1.65, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 196.448 - sampling = 0, 10 SCIndices: 361 (1), 809 (2), 873 (0), 937 (1), 1001 (1), 3689 (2), 3753 (3), 3817 (1), 3881 (1), 6057 (2), -tower 1066: eta = -1.65, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 289.65 - sampling = 0, 10 SCIndices: 362 (1), 810 (2), 874 (0), 938 (1), 1002 (1), 3690 (2), 3754 (3), 3818 (1), 3882 (1), 6058 (2), -tower 1067: eta = -1.65, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 202.853 - sampling = 0, 10 SCIndices: 363 (1), 811 (2), 875 (0), 939 (1), 1003 (1), 3691 (2), 3755 (3), 3819 (1), 3883 (1), 6059 (2), -tower 1068: eta = -1.65, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 80.053 - sampling = 0, 10 SCIndices: 364 (1), 812 (2), 876 (0), 940 (1), 1004 (1), 3692 (2), 3756 (3), 3820 (1), 3884 (1), 6060 (2), -tower 1069: eta = -1.65, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 473.688 - sampling = 0, 10 SCIndices: 365 (1), 813 (2), 877 (0), 941 (1), 1005 (1), 3693 (2), 3757 (3), 3821 (1), 3885 (1), 6061 (2), -tower 1070: eta = -1.65, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 63.0595 - sampling = 0, 10 SCIndices: 366 (1), 814 (2), 878 (0), 942 (1), 1006 (1), 3694 (2), 3758 (3), 3822 (1), 3886 (1), 6062 (3), -tower 1071: eta = -1.65, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 109.761 - sampling = 0, 10 SCIndices: 367 (1), 815 (2), 879 (0), 943 (1), 1007 (1), 3695 (2), 3759 (3), 3823 (1), 3887 (1), 6063 (3), -tower 1072: eta = -1.65, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 65.5738 - sampling = 0, 10 SCIndices: 368 (1), 816 (2), 880 (0), 944 (1), 1008 (1), 3696 (2), 3760 (3), 3824 (1), 3888 (1), 6064 (3), -tower 1073: eta = -1.65, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 151.53 - sampling = 0, 10 SCIndices: 369 (1), 817 (2), 881 (0), 945 (1), 1009 (1), 3697 (2), 3761 (3), 3825 (1), 3889 (1), 6065 (3), -tower 1074: eta = -1.65, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 165.808 - sampling = 0, 10 SCIndices: 370 (1), 818 (2), 882 (0), 946 (1), 1010 (1), 3698 (2), 3762 (3), 3826 (1), 3890 (1), 6066 (3), -tower 1075: eta = -1.65, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 127.431 - sampling = 0, 10 SCIndices: 371 (1), 819 (2), 883 (0), 947 (1), 1011 (1), 3699 (2), 3763 (3), 3827 (1), 3891 (1), 6067 (3), -tower 1076: eta = -1.65, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 372 (1), 820 (2), 884 (0), 948 (1), 1012 (1), 3700 (2), 3764 (3), 3828 (1), 3892 (1), 6068 (3), -tower 1077: eta = -1.65, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 157.699 - sampling = 0, 10 SCIndices: 373 (1), 821 (2), 885 (0), 949 (1), 1013 (1), 3701 (2), 3765 (3), 3829 (1), 3893 (1), 6069 (3), -tower 1078: eta = -1.65, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 127.861 - sampling = 0, 10 SCIndices: 374 (1), 822 (2), 886 (0), 950 (1), 1014 (1), 3702 (2), 3766 (3), 3830 (1), 3894 (1), 6070 (3), -tower 1079: eta = -1.65, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 102.339 - sampling = 0, 10 SCIndices: 375 (1), 823 (2), 887 (0), 951 (1), 1015 (1), 3703 (2), 3767 (3), 3831 (1), 3895 (1), 6071 (3), -tower 1080: eta = -1.65, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 106.159 - sampling = 0, 10 SCIndices: 376 (1), 824 (2), 888 (0), 952 (1), 1016 (1), 3704 (2), 3768 (3), 3832 (1), 3896 (1), 6072 (3), -tower 1081: eta = -1.65, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 349.642 - sampling = 0, 10 SCIndices: 377 (1), 825 (2), 889 (0), 953 (1), 1017 (1), 3705 (2), 3769 (3), 3833 (1), 3897 (1), 6073 (3), -tower 1082: eta = -1.65, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 322.159 - sampling = 0, 10 SCIndices: 378 (1), 826 (2), 890 (0), 954 (1), 1018 (2), 3706 (2), 3770 (0), 3834 (1), 3898 (1), 6074 (3), -tower 1083: eta = -1.65, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 379.408 - sampling = 0, 10 SCIndices: 379 (1), 827 (2), 891 (0), 955 (1), 1019 (2), 3707 (2), 3771 (0), 3835 (1), 3899 (1), 6075 (3), -tower 1084: eta = -1.65, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 18.4725 - sampling = 0, 10 SCIndices: 380 (1), 828 (2), 892 (0), 956 (1), 1020 (2), 3708 (2), 3772 (0), 3836 (1), 3900 (1), 6076 (3), -tower 1085: eta = -1.65, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 30.5017 - sampling = 0, 10 SCIndices: 381 (1), 829 (2), 893 (0), 957 (1), 1021 (2), 3709 (2), 3773 (0), 3837 (1), 3901 (1), 6077 (3), -tower 1086: eta = -1.65, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 224.184 - sampling = 0, 10 SCIndices: 382 (1), 830 (2), 894 (0), 958 (1), 1022 (2), 3710 (2), 3774 (0), 3838 (1), 3902 (1), 6078 (3), -tower 1087: eta = -1.65, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 600.945 - sampling = 0, 10 SCIndices: 383 (1), 831 (2), 895 (0), 959 (1), 1023 (2), 3711 (2), 3775 (0), 3839 (1), 3903 (1), 6079 (3), -tower 1088: eta = -1.75, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 198.388 - sampling = 0, 10 SCIndices: 384 (1), 1024 (2), 1088 (2), 1152 (3), 1216 (1), 3904 (1), 3968 (2), 4032 (3), 4096 (1), 6080 (3), -tower 1089: eta = -1.75, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 270.817 - sampling = 0, 10 SCIndices: 385 (1), 1025 (2), 1089 (2), 1153 (3), 1217 (1), 3905 (1), 3969 (2), 4033 (3), 4097 (1), 6081 (3), -tower 1090: eta = -1.75, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 274.452 - sampling = 0, 10 SCIndices: 386 (1), 1026 (2), 1090 (2), 1154 (3), 1218 (1), 3906 (1), 3970 (2), 4034 (3), 4098 (1), 6082 (3), -tower 1091: eta = -1.75, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 352.175 - sampling = 0, 10 SCIndices: 387 (1), 1027 (2), 1091 (2), 1155 (3), 1219 (1), 3907 (1), 3971 (2), 4035 (3), 4099 (1), 6083 (3), -tower 1092: eta = -1.75, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 479.843 - sampling = 0, 10 SCIndices: 388 (1), 1028 (2), 1092 (2), 1156 (3), 1220 (1), 3908 (1), 3972 (2), 4036 (3), 4100 (1), 6084 (3), -tower 1093: eta = -1.75, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 306.539 - sampling = 0, 10 SCIndices: 389 (1), 1029 (2), 1093 (2), 1157 (3), 1221 (1), 3909 (1), 3973 (2), 4037 (3), 4101 (1), 6085 (3), -tower 1094: eta = -1.75, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = -118.131 - sampling = 0, 10 SCIndices: 390 (1), 1030 (2), 1094 (2), 1158 (3), 1222 (1), 3910 (1), 3974 (2), 4038 (3), 4102 (1), 6086 (3), -tower 1095: eta = -1.75, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = -148.205 - sampling = 0, 10 SCIndices: 391 (1), 1031 (2), 1095 (2), 1159 (3), 1223 (1), 3911 (1), 3975 (2), 4039 (3), 4103 (1), 6087 (3), -tower 1096: eta = -1.75, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 392 (1), 1032 (2), 1096 (2), 1160 (0), 1224 (1), 3912 (1), 3976 (2), 4040 (3), 4104 (1), 6088 (3), -tower 1097: eta = -1.75, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 146.922 - sampling = 0, 10 SCIndices: 393 (1), 1033 (2), 1097 (2), 1161 (0), 1225 (1), 3913 (1), 3977 (2), 4041 (3), 4105 (1), 6089 (3), -tower 1098: eta = -1.75, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 394 (1), 1034 (2), 1098 (2), 1162 (0), 1226 (1), 3914 (1), 3978 (2), 4042 (3), 4106 (1), 6090 (0), -tower 1099: eta = -1.75, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 421.568 - sampling = 0, 10 SCIndices: 395 (1), 1035 (2), 1099 (2), 1163 (0), 1227 (1), 3915 (1), 3979 (2), 4043 (3), 4107 (1), 6091 (0), -tower 1100: eta = -1.75, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 199.369 - sampling = 0, 10 SCIndices: 396 (1), 1036 (2), 1100 (2), 1164 (0), 1228 (1), 3916 (1), 3980 (2), 4044 (3), 4108 (1), 6092 (0), -tower 1101: eta = -1.75, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 20.8762 - sampling = 0, 10 SCIndices: 397 (1), 1037 (2), 1101 (2), 1165 (0), 1229 (1), 3917 (1), 3981 (2), 4045 (3), 4109 (1), 6093 (0), -tower 1102: eta = -1.75, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 123.235 - sampling = 0, 10 SCIndices: 398 (1), 1038 (2), 1102 (2), 1166 (0), 1230 (1), 3918 (2), 3982 (2), 4046 (3), 4110 (1), 6094 (0), -tower 1103: eta = -1.75, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 414.036 - sampling = 0, 10 SCIndices: 399 (1), 1039 (2), 1103 (2), 1167 (0), 1231 (1), 3919 (2), 3983 (2), 4047 (3), 4111 (1), 6095 (0), -tower 1104: eta = -1.75, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 138.352 - sampling = 0, 10 SCIndices: 400 (1), 1040 (2), 1104 (2), 1168 (0), 1232 (1), 3920 (2), 3984 (2), 4048 (3), 4112 (1), 6096 (0), -tower 1105: eta = -1.75, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 454.694 - sampling = 0, 10 SCIndices: 401 (1), 1041 (2), 1105 (2), 1169 (0), 1233 (1), 3921 (2), 3985 (2), 4049 (3), 4113 (1), 6097 (0), -tower 1106: eta = -1.75, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 184.259 - sampling = 0, 10 SCIndices: 402 (1), 1042 (2), 1106 (2), 1170 (0), 1234 (1), 3922 (2), 3986 (2), 4050 (3), 4114 (1), 6098 (0), -tower 1107: eta = -1.75, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 383.649 - sampling = 0, 10 SCIndices: 403 (1), 1043 (2), 1107 (2), 1171 (0), 1235 (1), 3923 (2), 3987 (2), 4051 (3), 4115 (1), 6099 (0), -tower 1108: eta = -1.75, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 216.859 - sampling = 0, 10 SCIndices: 404 (1), 1044 (2), 1108 (2), 1172 (0), 1236 (1), 3924 (2), 3988 (2), 4052 (3), 4116 (1), 6100 (0), -tower 1109: eta = -1.75, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 475.124 - sampling = 0, 10 SCIndices: 405 (1), 1045 (2), 1109 (2), 1173 (0), 1237 (1), 3925 (2), 3989 (2), 4053 (3), 4117 (1), 6101 (0), -tower 1110: eta = -1.75, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 406 (1), 1046 (2), 1110 (2), 1174 (0), 1238 (1), 3926 (2), 3990 (2), 4054 (3), 4118 (1), 6102 (0), -tower 1111: eta = -1.75, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 54.3101 - sampling = 0, 10 SCIndices: 407 (1), 1047 (2), 1111 (2), 1175 (0), 1239 (1), 3927 (2), 3991 (2), 4055 (3), 4119 (1), 6103 (0), -tower 1112: eta = -1.75, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 233.773 - sampling = 0, 10 SCIndices: 408 (1), 1048 (2), 1112 (2), 1176 (0), 1240 (1), 3928 (2), 3992 (2), 4056 (3), 4120 (1), 6104 (0), -tower 1113: eta = -1.75, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 365.07 - sampling = 0, 10 SCIndices: 409 (1), 1049 (2), 1113 (2), 1177 (0), 1241 (1), 3929 (2), 3993 (2), 4057 (3), 4121 (1), 6105 (0), -tower 1114: eta = -1.75, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 1113.47 - sampling = 0, 10 SCIndices: 410 (1), 1050 (2), 1114 (2), 1178 (0), 1242 (1), 3930 (2), 3994 (2), 4058 (3), 4122 (1), 6106 (0), -tower 1115: eta = -1.75, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 24.2097 - sampling = 0, 10 SCIndices: 411 (1), 1051 (2), 1115 (2), 1179 (0), 1243 (1), 3931 (2), 3995 (2), 4059 (3), 4123 (1), 6107 (0), -tower 1116: eta = -1.75, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 260.023 - sampling = 0, 10 SCIndices: 412 (1), 1052 (2), 1116 (2), 1180 (0), 1244 (1), 3932 (2), 3996 (2), 4060 (0), 4124 (1), 6108 (0), -tower 1117: eta = -1.75, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 281.934 - sampling = 0, 10 SCIndices: 413 (1), 1053 (2), 1117 (2), 1181 (0), 1245 (1), 3933 (2), 3997 (2), 4061 (0), 4125 (1), 6109 (0), -tower 1118: eta = -1.75, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 414 (1), 1054 (2), 1118 (2), 1182 (0), 1246 (1), 3934 (2), 3998 (2), 4062 (0), 4126 (1), 6110 (0), -tower 1119: eta = -1.75, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 415 (1), 1055 (2), 1119 (2), 1183 (0), 1247 (1), 3935 (2), 3999 (2), 4063 (0), 4127 (1), 6111 (0), -tower 1120: eta = -1.75, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 1114.18 - sampling = 0, 10 SCIndices: 416 (1), 1056 (2), 1120 (2), 1184 (0), 1248 (1), 3936 (2), 4000 (2), 4064 (0), 4128 (1), 6112 (0), -tower 1121: eta = -1.75, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 439.352 - sampling = 0, 10 SCIndices: 417 (1), 1057 (2), 1121 (2), 1185 (0), 1249 (1), 3937 (2), 4001 (2), 4065 (0), 4129 (1), 6113 (0), -tower 1122: eta = -1.75, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 271.738 - sampling = 0, 10 SCIndices: 418 (1), 1058 (2), 1122 (2), 1186 (0), 1250 (1), 3938 (2), 4002 (2), 4066 (0), 4130 (1), 6114 (0), -tower 1123: eta = -1.75, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 411.687 - sampling = 0, 10 SCIndices: 419 (1), 1059 (2), 1123 (2), 1187 (0), 1251 (1), 3939 (2), 4003 (2), 4067 (0), 4131 (1), 6115 (0), -tower 1124: eta = -1.75, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 639.124 - sampling = 0, 10 SCIndices: 420 (1), 1060 (2), 1124 (2), 1188 (0), 1252 (1), 3940 (2), 4004 (2), 4068 (0), 4132 (1), 6116 (0), -tower 1125: eta = -1.75, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 298.026 - sampling = 0, 10 SCIndices: 421 (1), 1061 (2), 1125 (2), 1189 (0), 1253 (1), 3941 (2), 4005 (2), 4069 (0), 4133 (1), 6117 (0), -tower 1126: eta = -1.75, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 886.85 - sampling = 0, 10 SCIndices: 422 (1), 1062 (2), 1126 (2), 1190 (1), 1254 (1), 3942 (2), 4006 (2), 4070 (0), 4134 (1), 6118 (0), -tower 1127: eta = -1.75, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 184.659 - sampling = 0, 10 SCIndices: 423 (1), 1063 (2), 1127 (2), 1191 (1), 1255 (1), 3943 (2), 4007 (2), 4071 (0), 4135 (1), 6119 (0), -tower 1128: eta = -1.75, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 3.49223 - sampling = 0, 10 SCIndices: 424 (1), 1064 (2), 1128 (2), 1192 (1), 1256 (1), 3944 (2), 4008 (2), 4072 (0), 4136 (1), 6120 (1), -tower 1129: eta = -1.75, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 447.608 - sampling = 0, 10 SCIndices: 425 (1), 1065 (2), 1129 (2), 1193 (1), 1257 (1), 3945 (2), 4009 (2), 4073 (0), 4137 (1), 6121 (1), -tower 1130: eta = -1.75, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 249.668 - sampling = 0, 10 SCIndices: 426 (1), 1066 (2), 1130 (2), 1194 (1), 1258 (1), 3946 (2), 4010 (2), 4074 (0), 4138 (1), 6122 (1), -tower 1131: eta = -1.75, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 104.395 - sampling = 0, 10 SCIndices: 427 (1), 1067 (2), 1131 (2), 1195 (1), 1259 (1), 3947 (2), 4011 (2), 4075 (0), 4139 (1), 6123 (1), -tower 1132: eta = -1.75, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 419.408 - sampling = 0, 10 SCIndices: 428 (1), 1068 (2), 1132 (3), 1196 (1), 1260 (1), 3948 (2), 4012 (2), 4076 (0), 4140 (1), 6124 (1), -tower 1133: eta = -1.75, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 589.864 - sampling = 0, 10 SCIndices: 429 (1), 1069 (2), 1133 (3), 1197 (1), 1261 (1), 3949 (2), 4013 (2), 4077 (0), 4141 (1), 6125 (1), -tower 1134: eta = -1.75, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 268.074 - sampling = 0, 10 SCIndices: 430 (1), 1070 (2), 1134 (3), 1198 (1), 1262 (1), 3950 (2), 4014 (2), 4078 (0), 4142 (1), 6126 (1), -tower 1135: eta = -1.75, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 174.253 - sampling = 0, 10 SCIndices: 431 (1), 1071 (2), 1135 (3), 1199 (1), 1263 (1), 3951 (2), 4015 (2), 4079 (0), 4143 (1), 6127 (1), -tower 1136: eta = -1.75, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 57.724 - sampling = 0, 10 SCIndices: 432 (1), 1072 (2), 1136 (3), 1200 (1), 1264 (1), 3952 (2), 4016 (2), 4080 (0), 4144 (1), 6128 (1), -tower 1137: eta = -1.75, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = -26.9936 - sampling = 0, 10 SCIndices: 433 (1), 1073 (2), 1137 (3), 1201 (1), 1265 (1), 3953 (2), 4017 (2), 4081 (0), 4145 (1), 6129 (1), -tower 1138: eta = -1.75, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 459.727 - sampling = 0, 10 SCIndices: 434 (1), 1074 (2), 1138 (3), 1202 (1), 1266 (1), 3954 (2), 4018 (2), 4082 (0), 4146 (1), 6130 (1), -tower 1139: eta = -1.75, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 94.3701 - sampling = 0, 10 SCIndices: 435 (1), 1075 (2), 1139 (3), 1203 (1), 1267 (1), 3955 (2), 4019 (2), 4083 (0), 4147 (1), 6131 (1), -tower 1140: eta = -1.75, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 152.734 - sampling = 0, 10 SCIndices: 436 (1), 1076 (2), 1140 (3), 1204 (1), 1268 (1), 3956 (2), 4020 (2), 4084 (0), 4148 (1), 6132 (1), -tower 1141: eta = -1.75, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 695.74 - sampling = 0, 10 SCIndices: 437 (1), 1077 (2), 1141 (3), 1205 (1), 1269 (1), 3957 (2), 4021 (2), 4085 (0), 4149 (1), 6133 (1), -tower 1142: eta = -1.75, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 112.574 - sampling = 0, 10 SCIndices: 438 (2), 1078 (2), 1142 (3), 1206 (1), 1270 (1), 3958 (2), 4022 (2), 4086 (0), 4150 (1), 6134 (1), -tower 1143: eta = -1.75, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 307.545 - sampling = 0, 10 SCIndices: 439 (2), 1079 (2), 1143 (3), 1207 (1), 1271 (1), 3959 (2), 4023 (2), 4087 (0), 4151 (1), 6135 (1), -tower 1144: eta = -1.75, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 173.459 - sampling = 0, 10 SCIndices: 440 (2), 1080 (2), 1144 (3), 1208 (1), 1272 (1), 3960 (2), 4024 (2), 4088 (0), 4152 (1), 6136 (1), -tower 1145: eta = -1.75, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 733.276 - sampling = 0, 10 SCIndices: 441 (2), 1081 (2), 1145 (3), 1209 (1), 1273 (1), 3961 (2), 4025 (2), 4089 (0), 4153 (1), 6137 (1), -tower 1146: eta = -1.75, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 144.056 - sampling = 0, 10 SCIndices: 442 (2), 1082 (2), 1146 (3), 1210 (1), 1274 (1), 3962 (2), 4026 (2), 4090 (1), 4154 (1), 6138 (1), -tower 1147: eta = -1.75, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 180.44 - sampling = 0, 10 SCIndices: 443 (2), 1083 (2), 1147 (3), 1211 (1), 1275 (1), 3963 (2), 4027 (2), 4091 (1), 4155 (1), 6139 (1), -tower 1148: eta = -1.75, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 460.543 - sampling = 0, 10 SCIndices: 444 (2), 1084 (2), 1148 (3), 1212 (1), 1276 (1), 3964 (2), 4028 (2), 4092 (1), 4156 (1), 6140 (1), -tower 1149: eta = -1.75, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 62.3817 - sampling = 0, 10 SCIndices: 445 (2), 1085 (2), 1149 (3), 1213 (1), 1277 (1), 3965 (2), 4029 (2), 4093 (1), 4157 (1), 6141 (1), -tower 1150: eta = -1.75, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 420.213 - sampling = 0, 10 SCIndices: 446 (2), 1086 (2), 1150 (3), 1214 (1), 1278 (1), 3966 (2), 4030 (2), 4094 (1), 4158 (1), 6142 (1), -tower 1151: eta = -1.75, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 185.057 - sampling = 0, 10 SCIndices: 447 (2), 1087 (2), 1151 (3), 1215 (1), 1279 (1), 3967 (2), 4031 (2), 4095 (1), 4159 (1), 6143 (1), -tower 1152: eta = -1.85, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 37.3258 - sampling = 0, 11 SCIndices: 1280 (1), 1344 (2), 1408 (2), 1472 (0), 1536 (1), 1600 (2), 4160 (1), 4224 (2), 4288 (2), 4352 (0), 6144 (1), -tower 1153: eta = -1.85, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 140.844 - sampling = 0, 11 SCIndices: 1281 (1), 1345 (2), 1409 (2), 1473 (0), 1537 (1), 1601 (2), 4161 (1), 4225 (2), 4289 (2), 4353 (0), 6145 (1), -tower 1154: eta = -1.85, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 36.7 - sampling = 0, 11 SCIndices: 1282 (1), 1346 (2), 1410 (2), 1474 (0), 1538 (1), 1602 (2), 4162 (1), 4226 (2), 4290 (2), 4354 (0), 6146 (1), -tower 1155: eta = -1.85, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 480.199 - sampling = 0, 11 SCIndices: 1283 (1), 1347 (2), 1411 (2), 1475 (0), 1539 (1), 1603 (2), 4163 (1), 4227 (2), 4291 (2), 4355 (0), 6147 (1), -tower 1156: eta = -1.85, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 64.1891 - sampling = 0, 11 SCIndices: 1284 (1), 1348 (2), 1412 (2), 1476 (0), 1540 (1), 1604 (2), 4164 (1), 4228 (2), 4292 (2), 4356 (0), 6148 (1), -tower 1157: eta = -1.85, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 234.948 - sampling = 0, 11 SCIndices: 1285 (1), 1349 (2), 1413 (2), 1477 (0), 1541 (1), 1605 (2), 4165 (1), 4229 (2), 4293 (2), 4357 (0), 6149 (1), -tower 1158: eta = -1.85, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 439.29 - sampling = 0, 11 SCIndices: 1286 (1), 1350 (2), 1414 (2), 1478 (0), 1542 (1), 1606 (2), 4166 (1), 4230 (2), 4294 (2), 4358 (0), 6150 (1), -tower 1159: eta = -1.85, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 416.19 - sampling = 0, 11 SCIndices: 1287 (1), 1351 (2), 1415 (2), 1479 (0), 1543 (1), 1607 (2), 4167 (1), 4231 (2), 4295 (2), 4359 (0), 6151 (1), -tower 1160: eta = -1.85, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 325.387 - sampling = 0, 11 SCIndices: 1288 (1), 1352 (2), 1416 (2), 1480 (1), 1544 (1), 1608 (2), 4168 (1), 4232 (2), 4296 (2), 4360 (0), 6152 (1), -tower 1161: eta = -1.85, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 261.615 - sampling = 0, 11 SCIndices: 1289 (1), 1353 (2), 1417 (2), 1481 (1), 1545 (1), 1609 (2), 4169 (1), 4233 (2), 4297 (2), 4361 (0), 6153 (1), -tower 1162: eta = -1.85, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 70.7609 - sampling = 0, 11 SCIndices: 1290 (1), 1354 (2), 1418 (2), 1482 (1), 1546 (1), 1610 (2), 4170 (1), 4234 (2), 4298 (2), 4362 (0), 6154 (1), -tower 1163: eta = -1.85, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 718.387 - sampling = 0, 11 SCIndices: 1291 (1), 1355 (2), 1419 (2), 1483 (1), 1547 (1), 1611 (2), 4171 (1), 4235 (2), 4299 (2), 4363 (0), 6155 (1), -tower 1164: eta = -1.85, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = -35.6873 - sampling = 0, 11 SCIndices: 1292 (1), 1356 (2), 1420 (2), 1484 (1), 1548 (1), 1612 (2), 4172 (1), 4236 (2), 4300 (2), 4364 (0), 6156 (1), -tower 1165: eta = -1.85, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 37.3318 - sampling = 0, 11 SCIndices: 1293 (1), 1357 (2), 1421 (2), 1485 (1), 1549 (1), 1613 (2), 4173 (1), 4237 (2), 4301 (2), 4365 (0), 6157 (1), -tower 1166: eta = -1.85, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 91.0618 - sampling = 0, 11 SCIndices: 1294 (1), 1358 (2), 1422 (3), 1486 (1), 1550 (1), 1614 (2), 4174 (1), 4238 (2), 4302 (2), 4366 (0), 6158 (1), -tower 1167: eta = -1.85, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 1295 (1), 1359 (2), 1423 (3), 1487 (1), 1551 (1), 1615 (2), 4175 (1), 4239 (2), 4303 (2), 4367 (0), 6159 (1), -tower 1168: eta = -1.85, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 34.0442 - sampling = 0, 11 SCIndices: 1296 (1), 1360 (2), 1424 (3), 1488 (1), 1552 (1), 1616 (2), 4176 (1), 4240 (2), 4304 (2), 4368 (0), 6160 (1), -tower 1169: eta = -1.85, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 547.961 - sampling = 0, 11 SCIndices: 1297 (1), 1361 (2), 1425 (3), 1489 (1), 1553 (1), 1617 (2), 4177 (1), 4241 (2), 4305 (2), 4369 (0), 6161 (1), -tower 1170: eta = -1.85, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 1298 (1), 1362 (2), 1426 (3), 1490 (1), 1554 (1), 1618 (2), 4178 (1), 4242 (2), 4306 (2), 4370 (0), 6162 (1), -tower 1171: eta = -1.85, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 757.098 - sampling = 0, 11 SCIndices: 1299 (1), 1363 (2), 1427 (3), 1491 (1), 1555 (1), 1619 (2), 4179 (1), 4243 (2), 4307 (2), 4371 (0), 6163 (1), -tower 1172: eta = -1.85, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 107.9 - sampling = 0, 11 SCIndices: 1300 (1), 1364 (2), 1428 (3), 1492 (1), 1556 (1), 1620 (2), 4180 (1), 4244 (2), 4308 (2), 4372 (0), 6164 (1), -tower 1173: eta = -1.85, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0.969727 - sampling = 0, 11 SCIndices: 1301 (1), 1365 (2), 1429 (3), 1493 (1), 1557 (1), 1621 (2), 4181 (1), 4245 (2), 4309 (2), 4373 (0), 6165 (1), -tower 1174: eta = -1.85, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 89.8258 - sampling = 0, 11 SCIndices: 1302 (1), 1366 (2), 1430 (3), 1494 (1), 1558 (1), 1622 (2), 4182 (1), 4246 (2), 4310 (2), 4374 (0), 6166 (1), -tower 1175: eta = -1.85, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 38.1157 - sampling = 0, 11 SCIndices: 1303 (1), 1367 (2), 1431 (3), 1495 (1), 1559 (1), 1623 (2), 4183 (1), 4247 (2), 4311 (2), 4375 (0), 6167 (1), -tower 1176: eta = -1.85, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 231.745 - sampling = 0, 11 SCIndices: 1304 (1), 1368 (2), 1432 (3), 1496 (1), 1560 (1), 1624 (2), 4184 (1), 4248 (2), 4312 (2), 4376 (0), 6168 (1), -tower 1177: eta = -1.85, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 244.777 - sampling = 0, 11 SCIndices: 1305 (1), 1369 (2), 1433 (3), 1497 (1), 1561 (1), 1625 (2), 4185 (1), 4249 (2), 4313 (2), 4377 (0), 6169 (1), -tower 1178: eta = -1.85, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 296.673 - sampling = 0, 11 SCIndices: 1306 (1), 1370 (2), 1434 (3), 1498 (1), 1562 (1), 1626 (2), 4186 (1), 4250 (2), 4314 (2), 4378 (0), 6170 (1), -tower 1179: eta = -1.85, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 91.6835 - sampling = 0, 11 SCIndices: 1307 (1), 1371 (2), 1435 (3), 1499 (1), 1563 (1), 1627 (2), 4187 (1), 4251 (2), 4315 (2), 4379 (0), 6171 (1), -tower 1180: eta = -1.85, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 53.7825 - sampling = 0, 11 SCIndices: 1308 (2), 1372 (2), 1436 (3), 1500 (1), 1564 (1), 1628 (2), 4188 (1), 4252 (2), 4316 (2), 4380 (1), 6172 (1), -tower 1181: eta = -1.85, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 167.202 - sampling = 0, 11 SCIndices: 1309 (2), 1373 (2), 1437 (3), 1501 (1), 1565 (1), 1629 (2), 4189 (1), 4253 (2), 4317 (2), 4381 (1), 6173 (1), -tower 1182: eta = -1.85, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 1310 (2), 1374 (2), 1438 (3), 1502 (1), 1566 (1), 1630 (2), 4190 (1), 4254 (2), 4318 (2), 4382 (1), 6174 (1), -tower 1183: eta = -1.85, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 381.741 - sampling = 0, 11 SCIndices: 1311 (2), 1375 (2), 1439 (3), 1503 (1), 1567 (1), 1631 (2), 4191 (1), 4255 (2), 4319 (2), 4383 (1), 6175 (1), -tower 1184: eta = -1.85, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 107.884 - sampling = 0, 11 SCIndices: 1312 (2), 1376 (2), 1440 (3), 1504 (1), 1568 (1), 1632 (2), 4192 (1), 4256 (2), 4320 (2), 4384 (1), 6176 (1), -tower 1185: eta = -1.85, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 209.657 - sampling = 0, 11 SCIndices: 1313 (2), 1377 (2), 1441 (3), 1505 (1), 1569 (1), 1633 (2), 4193 (1), 4257 (2), 4321 (2), 4385 (1), 6177 (1), -tower 1186: eta = -1.85, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 295.954 - sampling = 0, 11 SCIndices: 1314 (2), 1378 (2), 1442 (3), 1506 (1), 1570 (1), 1634 (2), 4194 (1), 4258 (2), 4322 (3), 4386 (1), 6178 (1), -tower 1187: eta = -1.85, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 328.576 - sampling = 0, 11 SCIndices: 1315 (2), 1379 (2), 1443 (3), 1507 (1), 1571 (1), 1635 (2), 4195 (1), 4259 (2), 4323 (3), 4387 (1), 6179 (1), -tower 1188: eta = -1.85, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 190.728 - sampling = 0, 11 SCIndices: 1316 (2), 1380 (2), 1444 (3), 1508 (1), 1572 (1), 1636 (2), 4196 (1), 4260 (2), 4324 (3), 4388 (1), 6180 (1), -tower 1189: eta = -1.85, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 371.714 - sampling = 0, 11 SCIndices: 1317 (2), 1381 (2), 1445 (3), 1509 (1), 1573 (1), 1637 (2), 4197 (1), 4261 (2), 4325 (3), 4389 (1), 6181 (1), -tower 1190: eta = -1.85, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 487.475 - sampling = 0, 11 SCIndices: 1318 (2), 1382 (2), 1446 (3), 1510 (1), 1574 (1), 1638 (2), 4198 (1), 4262 (2), 4326 (3), 4390 (1), 6182 (1), -tower 1191: eta = -1.85, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = -18.2981 - sampling = 0, 11 SCIndices: 1319 (2), 1383 (2), 1447 (3), 1511 (1), 1575 (1), 1639 (2), 4199 (1), 4263 (2), 4327 (3), 4391 (1), 6183 (1), -tower 1192: eta = -1.85, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 177.76 - sampling = 0, 11 SCIndices: 1320 (2), 1384 (2), 1448 (3), 1512 (1), 1576 (1), 1640 (2), 4200 (1), 4264 (2), 4328 (3), 4392 (1), 6184 (1), -tower 1193: eta = -1.85, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 33.4408 - sampling = 0, 11 SCIndices: 1321 (2), 1385 (2), 1449 (3), 1513 (1), 1577 (1), 1641 (2), 4201 (1), 4265 (2), 4329 (3), 4393 (1), 6185 (1), -tower 1194: eta = -1.85, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 451.995 - sampling = 0, 11 SCIndices: 1322 (2), 1386 (2), 1450 (0), 1514 (1), 1578 (1), 1642 (2), 4202 (1), 4266 (2), 4330 (3), 4394 (1), 6186 (1), -tower 1195: eta = -1.85, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 251.388 - sampling = 0, 11 SCIndices: 1323 (2), 1387 (2), 1451 (0), 1515 (1), 1579 (1), 1643 (2), 4203 (1), 4267 (2), 4331 (3), 4395 (1), 6187 (1), -tower 1196: eta = -1.85, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 124.92 - sampling = 0, 11 SCIndices: 1324 (2), 1388 (2), 1452 (0), 1516 (1), 1580 (1), 1644 (2), 4204 (1), 4268 (2), 4332 (3), 4396 (1), 6188 (1), -tower 1197: eta = -1.85, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 138.954 - sampling = 0, 11 SCIndices: 1325 (2), 1389 (2), 1453 (0), 1517 (1), 1581 (1), 1645 (2), 4205 (1), 4269 (2), 4333 (3), 4397 (1), 6189 (1), -tower 1198: eta = -1.85, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 512.913 - sampling = 0, 11 SCIndices: 1326 (2), 1390 (2), 1454 (0), 1518 (1), 1582 (1), 1646 (2), 4206 (1), 4270 (2), 4334 (3), 4398 (1), 6190 (1), -tower 1199: eta = -1.85, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 142.423 - sampling = 0, 11 SCIndices: 1327 (2), 1391 (2), 1455 (0), 1519 (1), 1583 (1), 1647 (2), 4207 (1), 4271 (2), 4335 (3), 4399 (1), 6191 (1), -tower 1200: eta = -1.85, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 271.919 - sampling = 0, 11 SCIndices: 1328 (2), 1392 (2), 1456 (0), 1520 (1), 1584 (1), 1648 (2), 4208 (2), 4272 (2), 4336 (3), 4400 (1), 6192 (1), -tower 1201: eta = -1.85, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 1329 (2), 1393 (2), 1457 (0), 1521 (1), 1585 (1), 1649 (2), 4209 (2), 4273 (2), 4337 (3), 4401 (1), 6193 (1), -tower 1202: eta = -1.85, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 88.1328 - sampling = 0, 11 SCIndices: 1330 (2), 1394 (2), 1458 (0), 1522 (1), 1586 (1), 1650 (2), 4210 (2), 4274 (2), 4338 (3), 4402 (1), 6194 (1), -tower 1203: eta = -1.85, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 54.8463 - sampling = 0, 11 SCIndices: 1331 (2), 1395 (2), 1459 (0), 1523 (1), 1587 (1), 1651 (2), 4211 (2), 4275 (2), 4339 (3), 4403 (1), 6195 (1), -tower 1204: eta = -1.85, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 19.8402 - sampling = 0, 11 SCIndices: 1332 (2), 1396 (2), 1460 (0), 1524 (1), 1588 (1), 1652 (2), 4212 (2), 4276 (2), 4340 (3), 4404 (1), 6196 (1), -tower 1205: eta = -1.85, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 1333 (2), 1397 (2), 1461 (0), 1525 (1), 1589 (1), 1653 (2), 4213 (2), 4277 (2), 4341 (3), 4405 (1), 6197 (1), -tower 1206: eta = -1.85, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 185.738 - sampling = 0, 11 SCIndices: 1334 (2), 1398 (2), 1462 (0), 1526 (1), 1590 (1), 1654 (2), 4214 (2), 4278 (2), 4342 (3), 4406 (1), 6198 (1), -tower 1207: eta = -1.85, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 70.5112 - sampling = 0, 11 SCIndices: 1335 (2), 1399 (2), 1463 (0), 1527 (1), 1591 (1), 1655 (2), 4215 (2), 4279 (2), 4343 (3), 4407 (1), 6199 (1), -tower 1208: eta = -1.85, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 126.488 - sampling = 0, 11 SCIndices: 1336 (2), 1400 (2), 1464 (0), 1528 (1), 1592 (1), 1656 (2), 4216 (2), 4280 (2), 4344 (3), 4408 (1), 6200 (1), -tower 1209: eta = -1.85, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 405 - sampling = 0, 11 SCIndices: 1337 (2), 1401 (2), 1465 (0), 1529 (1), 1593 (1), 1657 (2), 4217 (2), 4281 (2), 4345 (3), 4409 (1), 6201 (1), -tower 1210: eta = -1.85, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 204.709 - sampling = 0, 11 SCIndices: 1338 (2), 1402 (2), 1466 (0), 1530 (1), 1594 (1), 1658 (2), 4218 (2), 4282 (2), 4346 (3), 4410 (1), 6202 (1), -tower 1211: eta = -1.85, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 51.2161 - sampling = 0, 11 SCIndices: 1339 (2), 1403 (2), 1467 (0), 1531 (1), 1595 (1), 1659 (2), 4219 (2), 4283 (2), 4347 (3), 4411 (1), 6203 (1), -tower 1212: eta = -1.85, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 141.24 - sampling = 0, 11 SCIndices: 1340 (2), 1404 (2), 1468 (0), 1532 (1), 1596 (1), 1660 (2), 4220 (2), 4284 (2), 4348 (3), 4412 (1), 6204 (1), -tower 1213: eta = -1.85, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 106.426 - sampling = 0, 11 SCIndices: 1341 (2), 1405 (2), 1469 (0), 1533 (1), 1597 (1), 1661 (2), 4221 (2), 4285 (2), 4349 (3), 4413 (1), 6205 (1), -tower 1214: eta = -1.85, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 184.277 - sampling = 0, 11 SCIndices: 1342 (2), 1406 (2), 1470 (0), 1534 (1), 1598 (2), 1662 (2), 4222 (2), 4286 (2), 4350 (0), 4414 (1), 6206 (1), -tower 1215: eta = -1.85, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = -34.957 - sampling = 0, 11 SCIndices: 1343 (2), 1407 (2), 1471 (0), 1535 (1), 1599 (2), 1663 (2), 4223 (2), 4287 (2), 4351 (0), 4415 (1), 6207 (1), -tower 1216: eta = -1.95, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 261.47 - sampling = 0, 11 SCIndices: 1664 (2), 1728 (3), 1792 (1), 1856 (1), 1920 (2), 1984 (2), 4416 (1), 4480 (1), 4544 (2), 4608 (2), 6208 (1), -tower 1217: eta = -1.95, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 512.764 - sampling = 0, 11 SCIndices: 1665 (2), 1729 (3), 1793 (1), 1857 (1), 1921 (2), 1985 (2), 4417 (1), 4481 (1), 4545 (2), 4609 (2), 6209 (1), -tower 1218: eta = -1.95, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 1666 (2), 1730 (3), 1794 (1), 1858 (1), 1922 (2), 1986 (2), 4418 (1), 4482 (1), 4546 (2), 4610 (2), 6210 (1), -tower 1219: eta = -1.95, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 229.54 - sampling = 0, 11 SCIndices: 1667 (2), 1731 (3), 1795 (1), 1859 (1), 1923 (2), 1987 (2), 4419 (1), 4483 (1), 4547 (2), 4611 (2), 6211 (1), -tower 1220: eta = -1.95, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = -39.7895 - sampling = 0, 11 SCIndices: 1668 (2), 1732 (3), 1796 (1), 1860 (1), 1924 (2), 1988 (2), 4420 (1), 4484 (1), 4548 (2), 4612 (3), 6212 (1), -tower 1221: eta = -1.95, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 812.398 - sampling = 0, 11 SCIndices: 1669 (2), 1733 (3), 1797 (1), 1861 (1), 1925 (2), 1989 (2), 4421 (1), 4485 (1), 4549 (2), 4613 (3), 6213 (1), -tower 1222: eta = -1.95, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 356.273 - sampling = 0, 11 SCIndices: 1670 (2), 1734 (3), 1798 (1), 1862 (1), 1926 (2), 1990 (2), 4422 (1), 4486 (1), 4550 (2), 4614 (3), 6214 (1), -tower 1223: eta = -1.95, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 49.0927 - sampling = 0, 11 SCIndices: 1671 (2), 1735 (3), 1799 (1), 1863 (1), 1927 (2), 1991 (2), 4423 (1), 4487 (1), 4551 (2), 4615 (3), 6215 (1), -tower 1224: eta = -1.95, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 1672 (2), 1736 (3), 1800 (1), 1864 (1), 1928 (2), 1992 (2), 4424 (1), 4488 (1), 4552 (2), 4616 (3), 6216 (1), -tower 1225: eta = -1.95, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 684.495 - sampling = 0, 11 SCIndices: 1673 (2), 1737 (3), 1801 (1), 1865 (1), 1929 (2), 1993 (2), 4425 (1), 4489 (1), 4553 (2), 4617 (3), 6217 (1), -tower 1226: eta = -1.95, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 612.315 - sampling = 0, 11 SCIndices: 1674 (2), 1738 (3), 1802 (1), 1866 (1), 1930 (2), 1994 (2), 4426 (1), 4490 (1), 4554 (2), 4618 (3), 6218 (1), -tower 1227: eta = -1.95, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 1675 (2), 1739 (3), 1803 (1), 1867 (1), 1931 (2), 1995 (2), 4427 (1), 4491 (1), 4555 (2), 4619 (3), 6219 (1), -tower 1228: eta = -1.95, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 1676 (2), 1740 (0), 1804 (1), 1868 (1), 1932 (2), 1996 (2), 4428 (1), 4492 (1), 4556 (2), 4620 (3), 6220 (1), -tower 1229: eta = -1.95, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 1677 (2), 1741 (0), 1805 (1), 1869 (1), 1933 (2), 1997 (2), 4429 (1), 4493 (1), 4557 (2), 4621 (3), 6221 (1), -tower 1230: eta = -1.95, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 136.906 - sampling = 0, 11 SCIndices: 1678 (2), 1742 (0), 1806 (1), 1870 (1), 1934 (2), 1998 (2), 4430 (1), 4494 (1), 4558 (2), 4622 (3), 6222 (1), -tower 1231: eta = -1.95, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 300.575 - sampling = 0, 11 SCIndices: 1679 (2), 1743 (0), 1807 (1), 1871 (1), 1935 (2), 1999 (2), 4431 (1), 4495 (1), 4559 (2), 4623 (3), 6223 (1), -tower 1232: eta = -1.95, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 90.3121 - sampling = 0, 11 SCIndices: 1680 (2), 1744 (0), 1808 (1), 1872 (1), 1936 (2), 2000 (2), 4432 (1), 4496 (1), 4560 (2), 4624 (3), 6224 (1), -tower 1233: eta = -1.95, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 238.554 - sampling = 0, 11 SCIndices: 1681 (2), 1745 (0), 1809 (1), 1873 (1), 1937 (2), 2001 (2), 4433 (1), 4497 (1), 4561 (2), 4625 (3), 6225 (1), -tower 1234: eta = -1.95, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 188.193 - sampling = 0, 11 SCIndices: 1682 (2), 1746 (0), 1810 (1), 1874 (1), 1938 (2), 2002 (3), 4434 (1), 4498 (2), 4562 (2), 4626 (3), 6226 (1), -tower 1235: eta = -1.95, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 1683 (2), 1747 (0), 1811 (1), 1875 (1), 1939 (2), 2003 (3), 4435 (1), 4499 (2), 4563 (2), 4627 (3), 6227 (1), -tower 1236: eta = -1.95, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 72.6362 - sampling = 0, 11 SCIndices: 1684 (2), 1748 (0), 1812 (1), 1876 (1), 1940 (2), 2004 (3), 4436 (1), 4500 (2), 4564 (2), 4628 (3), 6228 (1), -tower 1237: eta = -1.95, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 143.024 - sampling = 0, 11 SCIndices: 1685 (2), 1749 (0), 1813 (1), 1877 (1), 1941 (2), 2005 (3), 4437 (1), 4501 (2), 4565 (2), 4629 (3), 6229 (1), -tower 1238: eta = -1.95, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 147.803 - sampling = 0, 11 SCIndices: 1686 (2), 1750 (0), 1814 (1), 1878 (1), 1942 (2), 2006 (3), 4438 (1), 4502 (2), 4566 (2), 4630 (3), 6230 (1), -tower 1239: eta = -1.95, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 193.248 - sampling = 0, 11 SCIndices: 1687 (2), 1751 (0), 1815 (1), 1879 (1), 1943 (2), 2007 (3), 4439 (1), 4503 (2), 4567 (2), 4631 (3), 6231 (1), -tower 1240: eta = -1.95, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 734.018 - sampling = 0, 11 SCIndices: 1688 (2), 1752 (0), 1816 (1), 1880 (1), 1944 (2), 2008 (3), 4440 (1), 4504 (2), 4568 (2), 4632 (3), 6232 (1), -tower 1241: eta = -1.95, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 315.495 - sampling = 0, 11 SCIndices: 1689 (2), 1753 (0), 1817 (1), 1881 (1), 1945 (2), 2009 (3), 4441 (1), 4505 (2), 4569 (2), 4633 (3), 6233 (1), -tower 1242: eta = -1.95, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 503.042 - sampling = 0, 11 SCIndices: 1690 (2), 1754 (0), 1818 (1), 1882 (1), 1946 (2), 2010 (3), 4442 (1), 4506 (2), 4570 (2), 4634 (3), 6234 (1), -tower 1243: eta = -1.95, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 341.055 - sampling = 0, 11 SCIndices: 1691 (2), 1755 (0), 1819 (1), 1883 (1), 1947 (2), 2011 (3), 4443 (1), 4507 (2), 4571 (2), 4635 (3), 6235 (1), -tower 1244: eta = -1.95, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 40.7353 - sampling = 0, 11 SCIndices: 1692 (2), 1756 (0), 1820 (1), 1884 (1), 1948 (2), 2012 (3), 4444 (1), 4508 (2), 4572 (2), 4636 (3), 6236 (1), -tower 1245: eta = -1.95, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 33.3904 - sampling = 0, 11 SCIndices: 1693 (2), 1757 (0), 1821 (1), 1885 (1), 1949 (2), 2013 (3), 4445 (1), 4509 (2), 4573 (2), 4637 (3), 6237 (1), -tower 1246: eta = -1.95, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 131.909 - sampling = 0, 11 SCIndices: 1694 (2), 1758 (0), 1822 (1), 1886 (1), 1950 (2), 2014 (3), 4446 (1), 4510 (2), 4574 (2), 4638 (3), 6238 (2), -tower 1247: eta = -1.95, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 55.938 - sampling = 0, 11 SCIndices: 1695 (2), 1759 (0), 1823 (1), 1887 (1), 1951 (2), 2015 (3), 4447 (1), 4511 (2), 4575 (2), 4639 (3), 6239 (2), -tower 1248: eta = -1.95, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 47.5304 - sampling = 0, 11 SCIndices: 1696 (2), 1760 (0), 1824 (1), 1888 (2), 1952 (2), 2016 (3), 4448 (1), 4512 (2), 4576 (2), 4640 (0), 6240 (2), -tower 1249: eta = -1.95, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 250.614 - sampling = 0, 11 SCIndices: 1697 (2), 1761 (0), 1825 (1), 1889 (2), 1953 (2), 2017 (3), 4449 (1), 4513 (2), 4577 (2), 4641 (0), 6241 (2), -tower 1250: eta = -1.95, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 63.3314 - sampling = 0, 11 SCIndices: 1698 (2), 1762 (0), 1826 (1), 1890 (2), 1954 (2), 2018 (3), 4450 (1), 4514 (2), 4578 (2), 4642 (0), 6242 (2), -tower 1251: eta = -1.95, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 363.527 - sampling = 0, 11 SCIndices: 1699 (2), 1763 (0), 1827 (1), 1891 (2), 1955 (2), 2019 (3), 4451 (1), 4515 (2), 4579 (2), 4643 (0), 6243 (2), -tower 1252: eta = -1.95, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 1700 (2), 1764 (0), 1828 (1), 1892 (2), 1956 (2), 2020 (3), 4452 (1), 4516 (2), 4580 (2), 4644 (0), 6244 (2), -tower 1253: eta = -1.95, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 1701 (2), 1765 (0), 1829 (1), 1893 (2), 1957 (2), 2021 (3), 4453 (1), 4517 (2), 4581 (2), 4645 (0), 6245 (2), -tower 1254: eta = -1.95, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 489.328 - sampling = 0, 11 SCIndices: 1702 (2), 1766 (0), 1830 (1), 1894 (2), 1958 (2), 2022 (3), 4454 (1), 4518 (2), 4582 (2), 4646 (0), 6246 (2), -tower 1255: eta = -1.95, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 106.794 - sampling = 0, 11 SCIndices: 1703 (2), 1767 (0), 1831 (1), 1895 (2), 1959 (2), 2023 (3), 4455 (1), 4519 (2), 4583 (2), 4647 (0), 6247 (2), -tower 1256: eta = -1.95, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = -15.2522 - sampling = 0, 11 SCIndices: 1704 (2), 1768 (0), 1832 (1), 1896 (2), 1960 (2), 2024 (3), 4456 (1), 4520 (2), 4584 (2), 4648 (0), 6248 (2), -tower 1257: eta = -1.95, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 238.389 - sampling = 0, 11 SCIndices: 1705 (2), 1769 (0), 1833 (1), 1897 (2), 1961 (2), 2025 (3), 4457 (1), 4521 (2), 4585 (2), 4649 (0), 6249 (2), -tower 1258: eta = -1.95, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 30.3697 - sampling = 0, 11 SCIndices: 1706 (2), 1770 (1), 1834 (1), 1898 (2), 1962 (2), 2026 (3), 4458 (1), 4522 (2), 4586 (2), 4650 (0), 6250 (2), -tower 1259: eta = -1.95, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 474.992 - sampling = 0, 11 SCIndices: 1707 (2), 1771 (1), 1835 (1), 1899 (2), 1963 (2), 2027 (3), 4459 (1), 4523 (2), 4587 (2), 4651 (0), 6251 (2), -tower 1260: eta = -1.95, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 1708 (2), 1772 (1), 1836 (1), 1900 (2), 1964 (2), 2028 (3), 4460 (1), 4524 (2), 4588 (2), 4652 (0), 6252 (2), -tower 1261: eta = -1.95, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 188.547 - sampling = 0, 11 SCIndices: 1709 (2), 1773 (1), 1837 (1), 1901 (2), 1965 (2), 2029 (3), 4461 (1), 4525 (2), 4589 (2), 4653 (0), 6253 (2), -tower 1262: eta = -1.95, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 40.9143 - sampling = 0, 11 SCIndices: 1710 (2), 1774 (1), 1838 (1), 1902 (2), 1966 (2), 2030 (0), 4462 (1), 4526 (2), 4590 (2), 4654 (0), 6254 (2), -tower 1263: eta = -1.95, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 335.063 - sampling = 0, 11 SCIndices: 1711 (2), 1775 (1), 1839 (1), 1903 (2), 1967 (2), 2031 (0), 4463 (1), 4527 (2), 4591 (2), 4655 (0), 6255 (2), -tower 1264: eta = -1.95, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 20.3576 - sampling = 0, 11 SCIndices: 1712 (3), 1776 (1), 1840 (1), 1904 (2), 1968 (2), 2032 (0), 4464 (1), 4528 (2), 4592 (2), 4656 (0), 6256 (2), -tower 1265: eta = -1.95, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 109.009 - sampling = 0, 11 SCIndices: 1713 (3), 1777 (1), 1841 (1), 1905 (2), 1969 (2), 2033 (0), 4465 (1), 4529 (2), 4593 (2), 4657 (0), 6257 (2), -tower 1266: eta = -1.95, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = -29.0405 - sampling = 0, 11 SCIndices: 1714 (3), 1778 (1), 1842 (1), 1906 (2), 1970 (2), 2034 (0), 4466 (1), 4530 (2), 4594 (2), 4658 (0), 6258 (2), -tower 1267: eta = -1.95, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 187.853 - sampling = 0, 11 SCIndices: 1715 (3), 1779 (1), 1843 (1), 1907 (2), 1971 (2), 2035 (0), 4467 (1), 4531 (2), 4595 (2), 4659 (0), 6259 (2), -tower 1268: eta = -1.95, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 1716 (3), 1780 (1), 1844 (1), 1908 (2), 1972 (2), 2036 (0), 4468 (1), 4532 (2), 4596 (2), 4660 (0), 6260 (2), -tower 1269: eta = -1.95, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 548.523 - sampling = 0, 11 SCIndices: 1717 (3), 1781 (1), 1845 (1), 1909 (2), 1973 (2), 2037 (0), 4469 (1), 4533 (2), 4597 (2), 4661 (0), 6261 (2), -tower 1270: eta = -1.95, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 71.8692 - sampling = 0, 11 SCIndices: 1718 (3), 1782 (1), 1846 (1), 1910 (2), 1974 (2), 2038 (0), 4470 (1), 4534 (2), 4598 (2), 4662 (0), 6262 (2), -tower 1271: eta = -1.95, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 1719 (3), 1783 (1), 1847 (1), 1911 (2), 1975 (2), 2039 (0), 4471 (1), 4535 (2), 4599 (2), 4663 (0), 6263 (2), -tower 1272: eta = -1.95, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 687.828 - sampling = 0, 11 SCIndices: 1720 (3), 1784 (1), 1848 (1), 1912 (2), 1976 (2), 2040 (0), 4472 (1), 4536 (2), 4600 (2), 4664 (0), 6264 (2), -tower 1273: eta = -1.95, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 430.01 - sampling = 0, 11 SCIndices: 1721 (3), 1785 (1), 1849 (1), 1913 (2), 1977 (2), 2041 (0), 4473 (1), 4537 (2), 4601 (2), 4665 (0), 6265 (2), -tower 1274: eta = -1.95, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 403.668 - sampling = 0, 11 SCIndices: 1722 (3), 1786 (1), 1850 (1), 1914 (2), 1978 (2), 2042 (0), 4474 (1), 4538 (2), 4602 (2), 4666 (0), 6266 (2), -tower 1275: eta = -1.95, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 1723 (3), 1787 (1), 1851 (1), 1915 (2), 1979 (2), 2043 (0), 4475 (1), 4539 (2), 4603 (2), 4667 (0), 6267 (2), -tower 1276: eta = -1.95, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = -7.79791 - sampling = 0, 11 SCIndices: 1724 (3), 1788 (1), 1852 (1), 1916 (2), 1980 (2), 2044 (0), 4476 (1), 4540 (2), 4604 (2), 4668 (0), 6268 (2), -tower 1277: eta = -1.95, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 512.678 - sampling = 0, 11 SCIndices: 1725 (3), 1789 (1), 1853 (1), 1917 (2), 1981 (2), 2045 (0), 4477 (1), 4541 (2), 4605 (2), 4669 (0), 6269 (2), -tower 1278: eta = -1.95, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 97.4704 - sampling = 0, 11 SCIndices: 1726 (3), 1790 (1), 1854 (1), 1918 (2), 1982 (2), 2046 (0), 4478 (1), 4542 (2), 4606 (2), 4670 (1), 6270 (2), -tower 1279: eta = -1.95, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 1727 (3), 1791 (1), 1855 (1), 1919 (2), 1983 (2), 2047 (0), 4479 (1), 4543 (2), 4607 (2), 4671 (1), 6271 (2), -tower 1280: eta = -2.05, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2048 (0), 2112 (1), 2176 (1), 2240 (2), 4672 (1), 4736 (1), 4800 (2), 4864 (2), 6272 (2), -tower 1281: eta = -2.05, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 90.8022 - sampling = 0, 9 SCIndices: 2049 (0), 2113 (1), 2177 (1), 2241 (2), 4673 (1), 4737 (1), 4801 (2), 4865 (2), 6273 (2), -tower 1282: eta = -2.05, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 145.303 - sampling = 0, 9 SCIndices: 2050 (0), 2114 (1), 2178 (2), 2242 (2), 4674 (1), 4738 (1), 4802 (2), 4866 (2), 6274 (2), -tower 1283: eta = -2.05, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 243.247 - sampling = 0, 9 SCIndices: 2051 (0), 2115 (1), 2179 (2), 2243 (2), 4675 (1), 4739 (1), 4803 (2), 4867 (2), 6275 (2), -tower 1284: eta = -2.05, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2052 (0), 2116 (1), 2180 (2), 2244 (2), 4676 (1), 4740 (1), 4804 (2), 4868 (2), 6276 (2), -tower 1285: eta = -2.05, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2053 (0), 2117 (1), 2181 (2), 2245 (2), 4677 (1), 4741 (1), 4805 (2), 4869 (2), 6277 (2), -tower 1286: eta = -2.05, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2054 (0), 2118 (1), 2182 (2), 2246 (2), 4678 (1), 4742 (1), 4806 (2), 4870 (2), 6278 (2), -tower 1287: eta = -2.05, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2055 (0), 2119 (1), 2183 (2), 2247 (2), 4679 (1), 4743 (1), 4807 (2), 4871 (2), 6279 (2), -tower 1288: eta = -2.05, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 141.752 - sampling = 0, 9 SCIndices: 2056 (0), 2120 (1), 2184 (2), 2248 (2), 4680 (1), 4744 (1), 4808 (2), 4872 (2), 6280 (2), -tower 1289: eta = -2.05, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2057 (0), 2121 (1), 2185 (2), 2249 (2), 4681 (1), 4745 (1), 4809 (2), 4873 (2), 6281 (2), -tower 1290: eta = -2.05, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 145.282 - sampling = 0, 9 SCIndices: 2058 (0), 2122 (1), 2186 (2), 2250 (2), 4682 (1), 4746 (1), 4810 (2), 4874 (2), 6282 (2), -tower 1291: eta = -2.05, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2059 (0), 2123 (1), 2187 (2), 2251 (2), 4683 (1), 4747 (1), 4811 (2), 4875 (2), 6283 (2), -tower 1292: eta = -2.05, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2060 (1), 2124 (1), 2188 (2), 2252 (2), 4684 (1), 4748 (1), 4812 (2), 4876 (2), 6284 (2), -tower 1293: eta = -2.05, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 24.9753 - sampling = 0, 9 SCIndices: 2061 (1), 2125 (1), 2189 (2), 2253 (2), 4685 (1), 4749 (1), 4813 (2), 4877 (2), 6285 (2), -tower 1294: eta = -2.05, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2062 (1), 2126 (1), 2190 (2), 2254 (2), 4686 (1), 4750 (1), 4814 (2), 4878 (2), 6286 (2), -tower 1295: eta = -2.05, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2063 (1), 2127 (1), 2191 (2), 2255 (2), 4687 (1), 4751 (1), 4815 (2), 4879 (2), 6287 (2), -tower 1296: eta = -2.05, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2064 (1), 2128 (1), 2192 (2), 2256 (2), 4688 (1), 4752 (1), 4816 (2), 4880 (2), 6288 (2), -tower 1297: eta = -2.05, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 564.36 - sampling = 0, 9 SCIndices: 2065 (1), 2129 (1), 2193 (2), 2257 (2), 4689 (1), 4753 (1), 4817 (2), 4881 (2), 6289 (2), -tower 1298: eta = -2.05, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 470.997 - sampling = 0, 9 SCIndices: 2066 (1), 2130 (1), 2194 (2), 2258 (2), 4690 (1), 4754 (1), 4818 (2), 4882 (2), 6290 (2), -tower 1299: eta = -2.05, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 286.37 - sampling = 0, 9 SCIndices: 2067 (1), 2131 (1), 2195 (2), 2259 (2), 4691 (1), 4755 (1), 4819 (2), 4883 (2), 6291 (2), -tower 1300: eta = -2.05, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 23.8997 - sampling = 0, 9 SCIndices: 2068 (1), 2132 (1), 2196 (2), 2260 (2), 4692 (1), 4756 (1), 4820 (2), 4884 (2), 6292 (2), -tower 1301: eta = -2.05, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 259.109 - sampling = 0, 9 SCIndices: 2069 (1), 2133 (1), 2197 (2), 2261 (2), 4693 (1), 4757 (1), 4821 (2), 4885 (2), 6293 (2), -tower 1302: eta = -2.05, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = -223.15 - sampling = 0, 9 SCIndices: 2070 (1), 2134 (1), 2198 (2), 2262 (2), 4694 (1), 4758 (1), 4822 (2), 4886 (2), 6294 (2), -tower 1303: eta = -2.05, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2071 (1), 2135 (1), 2199 (2), 2263 (2), 4695 (1), 4759 (1), 4823 (2), 4887 (2), 6295 (2), -tower 1304: eta = -2.05, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2072 (1), 2136 (1), 2200 (2), 2264 (2), 4696 (1), 4760 (1), 4824 (2), 4888 (2), 6296 (2), -tower 1305: eta = -2.05, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 88.6621 - sampling = 0, 9 SCIndices: 2073 (1), 2137 (1), 2201 (2), 2265 (2), 4697 (1), 4761 (1), 4825 (2), 4889 (2), 6297 (2), -tower 1306: eta = -2.05, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 94.4999 - sampling = 0, 9 SCIndices: 2074 (1), 2138 (1), 2202 (2), 2266 (2), 4698 (1), 4762 (1), 4826 (2), 4890 (2), 6298 (2), -tower 1307: eta = -2.05, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 158.405 - sampling = 0, 9 SCIndices: 2075 (1), 2139 (1), 2203 (2), 2267 (2), 4699 (1), 4763 (1), 4827 (2), 4891 (2), 6299 (2), -tower 1308: eta = -2.05, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = -39.3444 - sampling = 0, 9 SCIndices: 2076 (1), 2140 (1), 2204 (2), 2268 (2), 4700 (1), 4764 (1), 4828 (2), 4892 (2), 6300 (2), -tower 1309: eta = -2.05, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 88.5961 - sampling = 0, 9 SCIndices: 2077 (1), 2141 (1), 2205 (2), 2269 (2), 4701 (1), 4765 (1), 4829 (2), 4893 (2), 6301 (2), -tower 1310: eta = -2.05, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 69.0642 - sampling = 0, 9 SCIndices: 2078 (1), 2142 (1), 2206 (2), 2270 (2), 4702 (1), 4766 (1), 4830 (2), 4894 (2), 6302 (2), -tower 1311: eta = -2.05, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 116.401 - sampling = 0, 9 SCIndices: 2079 (1), 2143 (1), 2207 (2), 2271 (2), 4703 (1), 4767 (1), 4831 (2), 4895 (2), 6303 (2), -tower 1312: eta = -2.05, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 980.163 - sampling = 0, 9 SCIndices: 2080 (1), 2144 (1), 2208 (2), 2272 (2), 4704 (1), 4768 (1), 4832 (2), 4896 (2), 6304 (2), -tower 1313: eta = -2.05, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = -7.94225 - sampling = 0, 9 SCIndices: 2081 (1), 2145 (1), 2209 (2), 2273 (2), 4705 (1), 4769 (1), 4833 (2), 4897 (2), 6305 (2), -tower 1314: eta = -2.05, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 258.861 - sampling = 0, 9 SCIndices: 2082 (1), 2146 (1), 2210 (2), 2274 (2), 4706 (1), 4770 (1), 4834 (2), 4898 (2), 6306 (2), -tower 1315: eta = -2.05, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 527.95 - sampling = 0, 9 SCIndices: 2083 (1), 2147 (1), 2211 (2), 2275 (2), 4707 (1), 4771 (1), 4835 (2), 4899 (2), 6307 (2), -tower 1316: eta = -2.05, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = -12.4767 - sampling = 0, 9 SCIndices: 2084 (1), 2148 (1), 2212 (2), 2276 (2), 4708 (1), 4772 (1), 4836 (2), 4900 (2), 6308 (2), -tower 1317: eta = -2.05, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 66.2756 - sampling = 0, 9 SCIndices: 2085 (1), 2149 (1), 2213 (2), 2277 (2), 4709 (1), 4773 (1), 4837 (2), 4901 (2), 6309 (2), -tower 1318: eta = -2.05, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 158.349 - sampling = 0, 9 SCIndices: 2086 (1), 2150 (1), 2214 (2), 2278 (2), 4710 (1), 4774 (1), 4838 (2), 4902 (3), 6310 (2), -tower 1319: eta = -2.05, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 145.003 - sampling = 0, 9 SCIndices: 2087 (1), 2151 (1), 2215 (2), 2279 (2), 4711 (1), 4775 (1), 4839 (2), 4903 (3), 6311 (2), -tower 1320: eta = -2.05, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 176.218 - sampling = 0, 9 SCIndices: 2088 (1), 2152 (1), 2216 (2), 2280 (2), 4712 (1), 4776 (1), 4840 (2), 4904 (3), 6312 (2), -tower 1321: eta = -2.05, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2089 (1), 2153 (1), 2217 (2), 2281 (2), 4713 (1), 4777 (1), 4841 (2), 4905 (3), 6313 (2), -tower 1322: eta = -2.05, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 196.286 - sampling = 0, 9 SCIndices: 2090 (1), 2154 (1), 2218 (2), 2282 (2), 4714 (1), 4778 (1), 4842 (2), 4906 (3), 6314 (2), -tower 1323: eta = -2.05, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 175.703 - sampling = 0, 9 SCIndices: 2091 (1), 2155 (1), 2219 (2), 2283 (2), 4715 (1), 4779 (1), 4843 (2), 4907 (3), 6315 (2), -tower 1324: eta = -2.05, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 43.965 - sampling = 0, 9 SCIndices: 2092 (1), 2156 (1), 2220 (2), 2284 (2), 4716 (1), 4780 (1), 4844 (2), 4908 (3), 6316 (2), -tower 1325: eta = -2.05, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 279.046 - sampling = 0, 9 SCIndices: 2093 (1), 2157 (1), 2221 (2), 2285 (2), 4717 (1), 4781 (1), 4845 (2), 4909 (3), 6317 (2), -tower 1326: eta = -2.05, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 440.782 - sampling = 0, 9 SCIndices: 2094 (1), 2158 (1), 2222 (2), 2286 (2), 4718 (1), 4782 (1), 4846 (2), 4910 (3), 6318 (2), -tower 1327: eta = -2.05, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2095 (1), 2159 (1), 2223 (2), 2287 (2), 4719 (1), 4783 (1), 4847 (2), 4911 (3), 6319 (2), -tower 1328: eta = -2.05, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 189.476 - sampling = 0, 9 SCIndices: 2096 (1), 2160 (1), 2224 (2), 2288 (2), 4720 (1), 4784 (1), 4848 (2), 4912 (3), 6320 (2), -tower 1329: eta = -2.05, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 209.097 - sampling = 0, 9 SCIndices: 2097 (1), 2161 (1), 2225 (2), 2289 (2), 4721 (1), 4785 (1), 4849 (2), 4913 (3), 6321 (2), -tower 1330: eta = -2.05, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 197.589 - sampling = 0, 9 SCIndices: 2098 (1), 2162 (1), 2226 (2), 2290 (2), 4722 (1), 4786 (1), 4850 (2), 4914 (3), 6322 (2), -tower 1331: eta = -2.05, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2099 (1), 2163 (1), 2227 (2), 2291 (2), 4723 (1), 4787 (1), 4851 (2), 4915 (3), 6323 (2), -tower 1332: eta = -2.05, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2100 (1), 2164 (1), 2228 (2), 2292 (3), 4724 (1), 4788 (2), 4852 (2), 4916 (3), 6324 (2), -tower 1333: eta = -2.05, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 79.5428 - sampling = 0, 9 SCIndices: 2101 (1), 2165 (1), 2229 (2), 2293 (3), 4725 (1), 4789 (2), 4853 (2), 4917 (3), 6325 (2), -tower 1334: eta = -2.05, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2102 (1), 2166 (1), 2230 (2), 2294 (3), 4726 (1), 4790 (2), 4854 (2), 4918 (3), 6326 (2), -tower 1335: eta = -2.05, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 431.39 - sampling = 0, 9 SCIndices: 2103 (1), 2167 (1), 2231 (2), 2295 (3), 4727 (1), 4791 (2), 4855 (2), 4919 (3), 6327 (2), -tower 1336: eta = -2.05, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 90.4079 - sampling = 0, 9 SCIndices: 2104 (1), 2168 (1), 2232 (2), 2296 (3), 4728 (1), 4792 (2), 4856 (2), 4920 (3), 6328 (2), -tower 1337: eta = -2.05, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 104.314 - sampling = 0, 9 SCIndices: 2105 (1), 2169 (1), 2233 (2), 2297 (3), 4729 (1), 4793 (2), 4857 (2), 4921 (3), 6329 (2), -tower 1338: eta = -2.05, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2106 (1), 2170 (1), 2234 (2), 2298 (3), 4730 (1), 4794 (2), 4858 (2), 4922 (3), 6330 (2), -tower 1339: eta = -2.05, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = -8.22705 - sampling = 0, 9 SCIndices: 2107 (1), 2171 (1), 2235 (2), 2299 (3), 4731 (1), 4795 (2), 4859 (2), 4923 (3), 6331 (2), -tower 1340: eta = -2.05, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 191.403 - sampling = 0, 9 SCIndices: 2108 (1), 2172 (1), 2236 (2), 2300 (3), 4732 (1), 4796 (2), 4860 (2), 4924 (3), 6332 (2), -tower 1341: eta = -2.05, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 165.894 - sampling = 0, 9 SCIndices: 2109 (1), 2173 (1), 2237 (2), 2301 (3), 4733 (1), 4797 (2), 4861 (2), 4925 (3), 6333 (2), -tower 1342: eta = -2.05, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 75.1597 - sampling = 0, 9 SCIndices: 2110 (1), 2174 (1), 2238 (2), 2302 (3), 4734 (1), 4798 (2), 4862 (2), 4926 (3), 6334 (2), -tower 1343: eta = -2.05, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 339.555 - sampling = 0, 9 SCIndices: 2111 (1), 2175 (1), 2239 (2), 2303 (3), 4735 (1), 4799 (2), 4863 (2), 4927 (3), 6335 (2), -tower 1344: eta = -2.15, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 93.4768 - sampling = 0, 9 SCIndices: 2304 (3), 2368 (1), 2432 (1), 2496 (2), 4928 (3), 4992 (1), 5056 (1), 5120 (2), 6336 (2), -tower 1345: eta = -2.15, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 145.934 - sampling = 0, 9 SCIndices: 2305 (3), 2369 (1), 2433 (1), 2497 (2), 4929 (3), 4993 (1), 5057 (1), 5121 (2), 6337 (2), -tower 1346: eta = -2.15, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2306 (3), 2370 (1), 2434 (1), 2498 (2), 4930 (0), 4994 (1), 5058 (1), 5122 (2), 6338 (2), -tower 1347: eta = -2.15, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 137.696 - sampling = 0, 9 SCIndices: 2307 (3), 2371 (1), 2435 (1), 2499 (2), 4931 (0), 4995 (1), 5059 (1), 5123 (2), 6339 (2), -tower 1348: eta = -2.15, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 565.012 - sampling = 0, 9 SCIndices: 2308 (3), 2372 (1), 2436 (1), 2500 (2), 4932 (0), 4996 (1), 5060 (1), 5124 (2), 6340 (2), -tower 1349: eta = -2.15, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2309 (3), 2373 (1), 2437 (1), 2501 (2), 4933 (0), 4997 (1), 5061 (1), 5125 (2), 6341 (2), -tower 1350: eta = -2.15, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 59.1216 - sampling = 0, 9 SCIndices: 2310 (3), 2374 (1), 2438 (1), 2502 (2), 4934 (0), 4998 (1), 5062 (1), 5126 (2), 6342 (2), -tower 1351: eta = -2.15, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2311 (3), 2375 (1), 2439 (1), 2503 (2), 4935 (0), 4999 (1), 5063 (1), 5127 (2), 6343 (2), -tower 1352: eta = -2.15, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 82.7104 - sampling = 0, 9 SCIndices: 2312 (3), 2376 (1), 2440 (1), 2504 (2), 4936 (0), 5000 (1), 5064 (1), 5128 (2), 6344 (2), -tower 1353: eta = -2.15, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2313 (3), 2377 (1), 2441 (1), 2505 (2), 4937 (0), 5001 (1), 5065 (1), 5129 (2), 6345 (2), -tower 1354: eta = -2.15, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 158.785 - sampling = 0, 9 SCIndices: 2314 (3), 2378 (1), 2442 (1), 2506 (2), 4938 (0), 5002 (1), 5066 (1), 5130 (2), 6346 (2), -tower 1355: eta = -2.15, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 183.442 - sampling = 0, 9 SCIndices: 2315 (3), 2379 (1), 2443 (1), 2507 (2), 4939 (0), 5003 (1), 5067 (1), 5131 (2), 6347 (2), -tower 1356: eta = -2.15, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 100.394 - sampling = 0, 9 SCIndices: 2316 (3), 2380 (1), 2444 (1), 2508 (2), 4940 (0), 5004 (1), 5068 (1), 5132 (2), 6348 (2), -tower 1357: eta = -2.15, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2317 (3), 2381 (1), 2445 (1), 2509 (2), 4941 (0), 5005 (1), 5069 (1), 5133 (2), 6349 (2), -tower 1358: eta = -2.15, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2318 (3), 2382 (1), 2446 (1), 2510 (2), 4942 (0), 5006 (1), 5070 (1), 5134 (2), 6350 (2), -tower 1359: eta = -2.15, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 137.615 - sampling = 0, 9 SCIndices: 2319 (3), 2383 (1), 2447 (1), 2511 (2), 4943 (0), 5007 (1), 5071 (1), 5135 (2), 6351 (2), -tower 1360: eta = -2.15, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 282.439 - sampling = 0, 9 SCIndices: 2320 (0), 2384 (1), 2448 (1), 2512 (2), 4944 (0), 5008 (1), 5072 (1), 5136 (2), 6352 (3), -tower 1361: eta = -2.15, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 427.41 - sampling = 0, 9 SCIndices: 2321 (0), 2385 (1), 2449 (1), 2513 (2), 4945 (0), 5009 (1), 5073 (1), 5137 (2), 6353 (3), -tower 1362: eta = -2.15, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2322 (0), 2386 (1), 2450 (1), 2514 (2), 4946 (0), 5010 (1), 5074 (1), 5138 (2), 6354 (3), -tower 1363: eta = -2.15, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2323 (0), 2387 (1), 2451 (1), 2515 (2), 4947 (0), 5011 (1), 5075 (1), 5139 (2), 6355 (3), -tower 1364: eta = -2.15, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 154.318 - sampling = 0, 9 SCIndices: 2324 (0), 2388 (1), 2452 (1), 2516 (2), 4948 (0), 5012 (1), 5076 (1), 5140 (2), 6356 (3), -tower 1365: eta = -2.15, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 302.845 - sampling = 0, 9 SCIndices: 2325 (0), 2389 (1), 2453 (1), 2517 (2), 4949 (0), 5013 (1), 5077 (1), 5141 (2), 6357 (3), -tower 1366: eta = -2.15, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 57.8118 - sampling = 0, 9 SCIndices: 2326 (0), 2390 (1), 2454 (1), 2518 (2), 4950 (0), 5014 (1), 5078 (2), 5142 (2), 6358 (3), -tower 1367: eta = -2.15, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = -57.5715 - sampling = 0, 9 SCIndices: 2327 (0), 2391 (1), 2455 (1), 2519 (2), 4951 (0), 5015 (1), 5079 (2), 5143 (2), 6359 (3), -tower 1368: eta = -2.15, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 145.116 - sampling = 0, 9 SCIndices: 2328 (0), 2392 (1), 2456 (1), 2520 (2), 4952 (0), 5016 (1), 5080 (2), 5144 (2), 6360 (3), -tower 1369: eta = -2.15, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 289.247 - sampling = 0, 9 SCIndices: 2329 (0), 2393 (1), 2457 (1), 2521 (2), 4953 (0), 5017 (1), 5081 (2), 5145 (2), 6361 (3), -tower 1370: eta = -2.15, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 305.561 - sampling = 0, 9 SCIndices: 2330 (0), 2394 (1), 2458 (1), 2522 (2), 4954 (0), 5018 (1), 5082 (2), 5146 (2), 6362 (3), -tower 1371: eta = -2.15, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = -59.7072 - sampling = 0, 9 SCIndices: 2331 (0), 2395 (1), 2459 (1), 2523 (2), 4955 (0), 5019 (1), 5083 (2), 5147 (2), 6363 (3), -tower 1372: eta = -2.15, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 206.591 - sampling = 0, 9 SCIndices: 2332 (0), 2396 (1), 2460 (1), 2524 (2), 4956 (0), 5020 (1), 5084 (2), 5148 (2), 6364 (3), -tower 1373: eta = -2.15, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 746.283 - sampling = 0, 9 SCIndices: 2333 (0), 2397 (1), 2461 (1), 2525 (2), 4957 (0), 5021 (1), 5085 (2), 5149 (2), 6365 (3), -tower 1374: eta = -2.15, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 92.6446 - sampling = 0, 9 SCIndices: 2334 (0), 2398 (1), 2462 (1), 2526 (2), 4958 (0), 5022 (1), 5086 (2), 5150 (2), 6366 (3), -tower 1375: eta = -2.15, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 52.9902 - sampling = 0, 9 SCIndices: 2335 (0), 2399 (1), 2463 (1), 2527 (2), 4959 (0), 5023 (1), 5087 (2), 5151 (2), 6367 (3), -tower 1376: eta = -2.15, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 265.043 - sampling = 0, 9 SCIndices: 2336 (0), 2400 (1), 2464 (1), 2528 (2), 4960 (1), 5024 (1), 5088 (2), 5152 (2), 6368 (3), -tower 1377: eta = -2.15, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 321.079 - sampling = 0, 9 SCIndices: 2337 (0), 2401 (1), 2465 (1), 2529 (2), 4961 (1), 5025 (1), 5089 (2), 5153 (2), 6369 (3), -tower 1378: eta = -2.15, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 312.29 - sampling = 0, 9 SCIndices: 2338 (0), 2402 (1), 2466 (1), 2530 (2), 4962 (1), 5026 (1), 5090 (2), 5154 (2), 6370 (3), -tower 1379: eta = -2.15, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 368.337 - sampling = 0, 9 SCIndices: 2339 (0), 2403 (1), 2467 (1), 2531 (2), 4963 (1), 5027 (1), 5091 (2), 5155 (2), 6371 (3), -tower 1380: eta = -2.15, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 935.449 - sampling = 0, 9 SCIndices: 2340 (0), 2404 (1), 2468 (2), 2532 (2), 4964 (1), 5028 (1), 5092 (2), 5156 (2), 6372 (3), -tower 1381: eta = -2.15, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2341 (0), 2405 (1), 2469 (2), 2533 (2), 4965 (1), 5029 (1), 5093 (2), 5157 (2), 6373 (3), -tower 1382: eta = -2.15, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 236.675 - sampling = 0, 9 SCIndices: 2342 (0), 2406 (1), 2470 (2), 2534 (2), 4966 (1), 5030 (1), 5094 (2), 5158 (2), 6374 (3), -tower 1383: eta = -2.15, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 159.574 - sampling = 0, 9 SCIndices: 2343 (0), 2407 (1), 2471 (2), 2535 (2), 4967 (1), 5031 (1), 5095 (2), 5159 (2), 6375 (3), -tower 1384: eta = -2.15, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 241.885 - sampling = 0, 9 SCIndices: 2344 (0), 2408 (1), 2472 (2), 2536 (2), 4968 (1), 5032 (1), 5096 (2), 5160 (2), 6376 (3), -tower 1385: eta = -2.15, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2345 (0), 2409 (1), 2473 (2), 2537 (2), 4969 (1), 5033 (1), 5097 (2), 5161 (2), 6377 (3), -tower 1386: eta = -2.15, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 27.774 - sampling = 0, 9 SCIndices: 2346 (0), 2410 (1), 2474 (2), 2538 (2), 4970 (1), 5034 (1), 5098 (2), 5162 (2), 6378 (3), -tower 1387: eta = -2.15, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 184.187 - sampling = 0, 9 SCIndices: 2347 (0), 2411 (1), 2475 (2), 2539 (2), 4971 (1), 5035 (1), 5099 (2), 5163 (2), 6379 (3), -tower 1388: eta = -2.15, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 19.2696 - sampling = 0, 9 SCIndices: 2348 (0), 2412 (1), 2476 (2), 2540 (2), 4972 (1), 5036 (1), 5100 (2), 5164 (2), 6380 (0), -tower 1389: eta = -2.15, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = -119.821 - sampling = 0, 9 SCIndices: 2349 (0), 2413 (1), 2477 (2), 2541 (2), 4973 (1), 5037 (1), 5101 (2), 5165 (2), 6381 (0), -tower 1390: eta = -2.15, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = -42.8169 - sampling = 0, 9 SCIndices: 2350 (1), 2414 (1), 2478 (2), 2542 (2), 4974 (1), 5038 (1), 5102 (2), 5166 (2), 6382 (0), -tower 1391: eta = -2.15, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 285.277 - sampling = 0, 9 SCIndices: 2351 (1), 2415 (1), 2479 (2), 2543 (2), 4975 (1), 5039 (1), 5103 (2), 5167 (2), 6383 (0), -tower 1392: eta = -2.15, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = -36.9178 - sampling = 0, 9 SCIndices: 2352 (1), 2416 (1), 2480 (2), 2544 (2), 4976 (1), 5040 (1), 5104 (2), 5168 (2), 6384 (0), -tower 1393: eta = -2.15, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2353 (1), 2417 (1), 2481 (2), 2545 (2), 4977 (1), 5041 (1), 5105 (2), 5169 (2), 6385 (0), -tower 1394: eta = -2.15, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 143.786 - sampling = 0, 9 SCIndices: 2354 (1), 2418 (1), 2482 (2), 2546 (2), 4978 (1), 5042 (1), 5106 (2), 5170 (2), 6386 (0), -tower 1395: eta = -2.15, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2355 (1), 2419 (1), 2483 (2), 2547 (2), 4979 (1), 5043 (1), 5107 (2), 5171 (2), 6387 (0), -tower 1396: eta = -2.15, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2356 (1), 2420 (1), 2484 (2), 2548 (2), 4980 (1), 5044 (1), 5108 (2), 5172 (2), 6388 (0), -tower 1397: eta = -2.15, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 97.0528 - sampling = 0, 9 SCIndices: 2357 (1), 2421 (1), 2485 (2), 2549 (2), 4981 (1), 5045 (1), 5109 (2), 5173 (2), 6389 (0), -tower 1398: eta = -2.15, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 269.354 - sampling = 0, 9 SCIndices: 2358 (1), 2422 (1), 2486 (2), 2550 (2), 4982 (1), 5046 (1), 5110 (2), 5174 (2), 6390 (0), -tower 1399: eta = -2.15, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2359 (1), 2423 (1), 2487 (2), 2551 (2), 4983 (1), 5047 (1), 5111 (2), 5175 (2), 6391 (0), -tower 1400: eta = -2.15, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2360 (1), 2424 (1), 2488 (2), 2552 (2), 4984 (1), 5048 (1), 5112 (2), 5176 (2), 6392 (0), -tower 1401: eta = -2.15, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 1713.18 - sampling = 0, 9 SCIndices: 2361 (1), 2425 (1), 2489 (2), 2553 (2), 4985 (1), 5049 (1), 5113 (2), 5177 (2), 6393 (0), -tower 1402: eta = -2.15, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = -7.21778 - sampling = 0, 9 SCIndices: 2362 (1), 2426 (1), 2490 (2), 2554 (2), 4986 (1), 5050 (1), 5114 (2), 5178 (2), 6394 (0), -tower 1403: eta = -2.15, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 161.981 - sampling = 0, 9 SCIndices: 2363 (1), 2427 (1), 2491 (2), 2555 (2), 4987 (1), 5051 (1), 5115 (2), 5179 (2), 6395 (0), -tower 1404: eta = -2.15, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 69.3117 - sampling = 0, 9 SCIndices: 2364 (1), 2428 (1), 2492 (2), 2556 (2), 4988 (1), 5052 (1), 5116 (2), 5180 (2), 6396 (0), -tower 1405: eta = -2.15, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 65.7553 - sampling = 0, 9 SCIndices: 2365 (1), 2429 (1), 2493 (2), 2557 (2), 4989 (1), 5053 (1), 5117 (2), 5181 (2), 6397 (0), -tower 1406: eta = -2.15, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2366 (1), 2430 (1), 2494 (2), 2558 (2), 4990 (1), 5054 (1), 5118 (2), 5182 (2), 6398 (0), -tower 1407: eta = -2.15, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2367 (1), 2431 (1), 2495 (2), 2559 (2), 4991 (1), 5055 (1), 5119 (2), 5183 (2), 6399 (0), -tower 1408: eta = -2.25, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = -122.631 - sampling = 0, 9 SCIndices: 2560 (2), 2624 (0), 2688 (1), 2752 (1), 5184 (2), 5248 (0), 5312 (1), 5376 (2), 6400 (0), -tower 1409: eta = -2.25, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 357.99 - sampling = 0, 9 SCIndices: 2561 (2), 2625 (0), 2689 (1), 2753 (1), 5185 (2), 5249 (0), 5313 (1), 5377 (2), 6401 (0), -tower 1410: eta = -2.25, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 531.858 - sampling = 0, 9 SCIndices: 2562 (2), 2626 (0), 2690 (1), 2754 (1), 5186 (2), 5250 (1), 5314 (1), 5378 (2), 6402 (0), -tower 1411: eta = -2.25, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 46.9941 - sampling = 0, 9 SCIndices: 2563 (2), 2627 (0), 2691 (1), 2755 (1), 5187 (2), 5251 (1), 5315 (1), 5379 (2), 6403 (0), -tower 1412: eta = -2.25, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 85.212 - sampling = 0, 9 SCIndices: 2564 (2), 2628 (0), 2692 (1), 2756 (1), 5188 (2), 5252 (1), 5316 (1), 5380 (2), 6404 (0), -tower 1413: eta = -2.25, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 286.383 - sampling = 0, 9 SCIndices: 2565 (2), 2629 (0), 2693 (1), 2757 (1), 5189 (2), 5253 (1), 5317 (1), 5381 (2), 6405 (0), -tower 1414: eta = -2.25, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 224.005 - sampling = 0, 9 SCIndices: 2566 (2), 2630 (0), 2694 (1), 2758 (2), 5190 (2), 5254 (1), 5318 (1), 5382 (2), 6406 (0), -tower 1415: eta = -2.25, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2567 (2), 2631 (0), 2695 (1), 2759 (2), 5191 (2), 5255 (1), 5319 (1), 5383 (2), 6407 (0), -tower 1416: eta = -2.25, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2568 (2), 2632 (0), 2696 (1), 2760 (2), 5192 (3), 5256 (1), 5320 (1), 5384 (2), 6408 (0), -tower 1417: eta = -2.25, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 76.1642 - sampling = 0, 9 SCIndices: 2569 (2), 2633 (0), 2697 (1), 2761 (2), 5193 (3), 5257 (1), 5321 (1), 5385 (2), 6409 (0), -tower 1418: eta = -2.25, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = -51.1825 - sampling = 0, 9 SCIndices: 2570 (2), 2634 (0), 2698 (1), 2762 (2), 5194 (3), 5258 (1), 5322 (1), 5386 (2), 6410 (1), -tower 1419: eta = -2.25, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 123.912 - sampling = 0, 9 SCIndices: 2571 (2), 2635 (0), 2699 (1), 2763 (2), 5195 (3), 5259 (1), 5323 (1), 5387 (2), 6411 (1), -tower 1420: eta = -2.25, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 262.577 - sampling = 0, 9 SCIndices: 2572 (2), 2636 (0), 2700 (1), 2764 (2), 5196 (3), 5260 (1), 5324 (1), 5388 (2), 6412 (1), -tower 1421: eta = -2.25, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = -193.907 - sampling = 0, 9 SCIndices: 2573 (2), 2637 (0), 2701 (1), 2765 (2), 5197 (3), 5261 (1), 5325 (1), 5389 (2), 6413 (1), -tower 1422: eta = -2.25, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2574 (2), 2638 (0), 2702 (1), 2766 (2), 5198 (3), 5262 (1), 5326 (1), 5390 (2), 6414 (1), -tower 1423: eta = -2.25, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 179.698 - sampling = 0, 9 SCIndices: 2575 (2), 2639 (0), 2703 (1), 2767 (2), 5199 (3), 5263 (1), 5327 (1), 5391 (2), 6415 (1), -tower 1424: eta = -2.25, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 507.237 - sampling = 0, 9 SCIndices: 2576 (2), 2640 (1), 2704 (1), 2768 (2), 5200 (3), 5264 (1), 5328 (1), 5392 (2), 6416 (1), -tower 1425: eta = -2.25, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2577 (2), 2641 (1), 2705 (1), 2769 (2), 5201 (3), 5265 (1), 5329 (1), 5393 (2), 6417 (1), -tower 1426: eta = -2.25, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 322.427 - sampling = 0, 9 SCIndices: 2578 (2), 2642 (1), 2706 (1), 2770 (2), 5202 (3), 5266 (1), 5330 (1), 5394 (2), 6418 (1), -tower 1427: eta = -2.25, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 24.5344 - sampling = 0, 9 SCIndices: 2579 (2), 2643 (1), 2707 (1), 2771 (2), 5203 (3), 5267 (1), 5331 (1), 5395 (2), 6419 (1), -tower 1428: eta = -2.25, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = -24.612 - sampling = 0, 9 SCIndices: 2580 (2), 2644 (1), 2708 (1), 2772 (2), 5204 (3), 5268 (1), 5332 (1), 5396 (2), 6420 (1), -tower 1429: eta = -2.25, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2581 (2), 2645 (1), 2709 (1), 2773 (2), 5205 (3), 5269 (1), 5333 (1), 5397 (2), 6421 (1), -tower 1430: eta = -2.25, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2582 (3), 2646 (1), 2710 (1), 2774 (2), 5206 (3), 5270 (1), 5334 (1), 5398 (2), 6422 (1), -tower 1431: eta = -2.25, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 189.137 - sampling = 0, 9 SCIndices: 2583 (3), 2647 (1), 2711 (1), 2775 (2), 5207 (3), 5271 (1), 5335 (1), 5399 (2), 6423 (1), -tower 1432: eta = -2.25, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2584 (3), 2648 (1), 2712 (1), 2776 (2), 5208 (3), 5272 (1), 5336 (1), 5400 (2), 6424 (1), -tower 1433: eta = -2.25, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 276.319 - sampling = 0, 9 SCIndices: 2585 (3), 2649 (1), 2713 (1), 2777 (2), 5209 (3), 5273 (1), 5337 (1), 5401 (2), 6425 (1), -tower 1434: eta = -2.25, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 429.343 - sampling = 0, 9 SCIndices: 2586 (3), 2650 (1), 2714 (1), 2778 (2), 5210 (3), 5274 (1), 5338 (1), 5402 (2), 6426 (1), -tower 1435: eta = -2.25, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 186.87 - sampling = 0, 9 SCIndices: 2587 (3), 2651 (1), 2715 (1), 2779 (2), 5211 (3), 5275 (1), 5339 (1), 5403 (2), 6427 (1), -tower 1436: eta = -2.25, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2588 (3), 2652 (1), 2716 (1), 2780 (2), 5212 (3), 5276 (1), 5340 (1), 5404 (2), 6428 (1), -tower 1437: eta = -2.25, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2589 (3), 2653 (1), 2717 (1), 2781 (2), 5213 (3), 5277 (1), 5341 (1), 5405 (2), 6429 (1), -tower 1438: eta = -2.25, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 165.211 - sampling = 0, 9 SCIndices: 2590 (3), 2654 (1), 2718 (1), 2782 (2), 5214 (3), 5278 (1), 5342 (1), 5406 (2), 6430 (1), -tower 1439: eta = -2.25, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2591 (3), 2655 (1), 2719 (1), 2783 (2), 5215 (3), 5279 (1), 5343 (1), 5407 (2), 6431 (1), -tower 1440: eta = -2.25, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 358.222 - sampling = 0, 9 SCIndices: 2592 (3), 2656 (1), 2720 (1), 2784 (2), 5216 (3), 5280 (1), 5344 (1), 5408 (2), 6432 (1), -tower 1441: eta = -2.25, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 11.674 - sampling = 0, 9 SCIndices: 2593 (3), 2657 (1), 2721 (1), 2785 (2), 5217 (3), 5281 (1), 5345 (1), 5409 (2), 6433 (1), -tower 1442: eta = -2.25, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 650.591 - sampling = 0, 9 SCIndices: 2594 (3), 2658 (1), 2722 (1), 2786 (2), 5218 (3), 5282 (1), 5346 (1), 5410 (2), 6434 (1), -tower 1443: eta = -2.25, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 335.558 - sampling = 0, 9 SCIndices: 2595 (3), 2659 (1), 2723 (1), 2787 (2), 5219 (3), 5283 (1), 5347 (1), 5411 (2), 6435 (1), -tower 1444: eta = -2.25, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 45.2482 - sampling = 0, 9 SCIndices: 2596 (3), 2660 (1), 2724 (1), 2788 (2), 5220 (0), 5284 (1), 5348 (1), 5412 (2), 6436 (1), -tower 1445: eta = -2.25, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 183.169 - sampling = 0, 9 SCIndices: 2597 (3), 2661 (1), 2725 (1), 2789 (2), 5221 (0), 5285 (1), 5349 (1), 5413 (2), 6437 (1), -tower 1446: eta = -2.25, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = -6.09306 - sampling = 0, 9 SCIndices: 2598 (3), 2662 (1), 2726 (1), 2790 (2), 5222 (0), 5286 (1), 5350 (1), 5414 (2), 6438 (1), -tower 1447: eta = -2.25, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2599 (3), 2663 (1), 2727 (1), 2791 (2), 5223 (0), 5287 (1), 5351 (1), 5415 (2), 6439 (1), -tower 1448: eta = -2.25, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2600 (3), 2664 (1), 2728 (1), 2792 (2), 5224 (0), 5288 (1), 5352 (1), 5416 (2), 6440 (1), -tower 1449: eta = -2.25, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2601 (3), 2665 (1), 2729 (1), 2793 (2), 5225 (0), 5289 (1), 5353 (1), 5417 (2), 6441 (1), -tower 1450: eta = -2.25, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 27.6769 - sampling = 0, 9 SCIndices: 2602 (3), 2666 (1), 2730 (1), 2794 (2), 5226 (0), 5290 (1), 5354 (1), 5418 (2), 6442 (1), -tower 1451: eta = -2.25, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 25.7507 - sampling = 0, 9 SCIndices: 2603 (3), 2667 (1), 2731 (1), 2795 (2), 5227 (0), 5291 (1), 5355 (1), 5419 (2), 6443 (1), -tower 1452: eta = -2.25, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 113.581 - sampling = 0, 9 SCIndices: 2604 (3), 2668 (1), 2732 (1), 2796 (2), 5228 (0), 5292 (1), 5356 (1), 5420 (2), 6444 (1), -tower 1453: eta = -2.25, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = -43.1224 - sampling = 0, 9 SCIndices: 2605 (3), 2669 (1), 2733 (1), 2797 (2), 5229 (0), 5293 (1), 5357 (1), 5421 (2), 6445 (1), -tower 1454: eta = -2.25, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2606 (3), 2670 (1), 2734 (1), 2798 (2), 5230 (0), 5294 (1), 5358 (1), 5422 (2), 6446 (1), -tower 1455: eta = -2.25, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 314.844 - sampling = 0, 9 SCIndices: 2607 (3), 2671 (1), 2735 (1), 2799 (2), 5231 (0), 5295 (1), 5359 (1), 5423 (2), 6447 (1), -tower 1456: eta = -2.25, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 38.9185 - sampling = 0, 9 SCIndices: 2608 (3), 2672 (1), 2736 (1), 2800 (2), 5232 (0), 5296 (1), 5360 (1), 5424 (2), 6448 (1), -tower 1457: eta = -2.25, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 96.6195 - sampling = 0, 9 SCIndices: 2609 (3), 2673 (1), 2737 (1), 2801 (2), 5233 (0), 5297 (1), 5361 (1), 5425 (2), 6449 (1), -tower 1458: eta = -2.25, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 123.114 - sampling = 0, 9 SCIndices: 2610 (0), 2674 (1), 2738 (1), 2802 (2), 5234 (0), 5298 (1), 5362 (1), 5426 (2), 6450 (1), -tower 1459: eta = -2.25, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = -36.3481 - sampling = 0, 9 SCIndices: 2611 (0), 2675 (1), 2739 (1), 2803 (2), 5235 (0), 5299 (1), 5363 (1), 5427 (2), 6451 (1), -tower 1460: eta = -2.25, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 367.87 - sampling = 0, 9 SCIndices: 2612 (0), 2676 (1), 2740 (1), 2804 (2), 5236 (0), 5300 (1), 5364 (1), 5428 (2), 6452 (1), -tower 1461: eta = -2.25, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2613 (0), 2677 (1), 2741 (1), 2805 (2), 5237 (0), 5301 (1), 5365 (1), 5429 (2), 6453 (1), -tower 1462: eta = -2.25, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 311.301 - sampling = 0, 9 SCIndices: 2614 (0), 2678 (1), 2742 (1), 2806 (2), 5238 (0), 5302 (1), 5366 (1), 5430 (2), 6454 (1), -tower 1463: eta = -2.25, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2615 (0), 2679 (1), 2743 (1), 2807 (2), 5239 (0), 5303 (1), 5367 (1), 5431 (2), 6455 (1), -tower 1464: eta = -2.25, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2616 (0), 2680 (1), 2744 (1), 2808 (2), 5240 (0), 5304 (1), 5368 (2), 5432 (2), 6456 (1), -tower 1465: eta = -2.25, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 429.066 - sampling = 0, 9 SCIndices: 2617 (0), 2681 (1), 2745 (1), 2809 (2), 5241 (0), 5305 (1), 5369 (2), 5433 (2), 6457 (1), -tower 1466: eta = -2.25, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 111.641 - sampling = 0, 9 SCIndices: 2618 (0), 2682 (1), 2746 (1), 2810 (2), 5242 (0), 5306 (1), 5370 (2), 5434 (2), 6458 (1), -tower 1467: eta = -2.25, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2619 (0), 2683 (1), 2747 (1), 2811 (2), 5243 (0), 5307 (1), 5371 (2), 5435 (2), 6459 (1), -tower 1468: eta = -2.25, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 170.33 - sampling = 0, 9 SCIndices: 2620 (0), 2684 (1), 2748 (1), 2812 (2), 5244 (0), 5308 (1), 5372 (2), 5436 (2), 6460 (1), -tower 1469: eta = -2.25, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2621 (0), 2685 (1), 2749 (1), 2813 (2), 5245 (0), 5309 (1), 5373 (2), 5437 (2), 6461 (1), -tower 1470: eta = -2.25, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = -98.4598 - sampling = 0, 9 SCIndices: 2622 (0), 2686 (1), 2750 (1), 2814 (2), 5246 (0), 5310 (1), 5374 (2), 5438 (2), 6462 (1), -tower 1471: eta = -2.25, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2623 (0), 2687 (1), 2751 (1), 2815 (2), 5247 (0), 5311 (1), 5375 (2), 5439 (2), 6463 (1), -tower 1472: eta = -2.35, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2816 (2), 2880 (3), 2944 (1), 3008 (1), 5440 (2), 5504 (3), 5568 (1), 5632 (1), 6464 (1), -tower 1473: eta = -2.35, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 92.3515 - sampling = 0, 9 SCIndices: 2817 (2), 2881 (3), 2945 (1), 3009 (1), 5441 (2), 5505 (3), 5569 (1), 5633 (1), 6465 (1), -tower 1474: eta = -2.35, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 259.72 - sampling = 0, 9 SCIndices: 2818 (2), 2882 (3), 2946 (1), 3010 (1), 5442 (2), 5506 (3), 5570 (1), 5634 (1), 6466 (1), -tower 1475: eta = -2.35, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2819 (2), 2883 (3), 2947 (1), 3011 (1), 5443 (2), 5507 (3), 5571 (1), 5635 (1), 6467 (1), -tower 1476: eta = -2.35, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 186.454 - sampling = 0, 9 SCIndices: 2820 (2), 2884 (3), 2948 (1), 3012 (1), 5444 (2), 5508 (3), 5572 (1), 5636 (1), 6468 (1), -tower 1477: eta = -2.35, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2821 (2), 2885 (3), 2949 (1), 3013 (1), 5445 (2), 5509 (3), 5573 (1), 5637 (1), 6469 (1), -tower 1478: eta = -2.35, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 364.701 - sampling = 0, 9 SCIndices: 2822 (2), 2886 (3), 2950 (1), 3014 (1), 5446 (2), 5510 (0), 5574 (1), 5638 (1), 6470 (1), -tower 1479: eta = -2.35, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 200.171 - sampling = 0, 9 SCIndices: 2823 (2), 2887 (3), 2951 (1), 3015 (1), 5447 (2), 5511 (0), 5575 (1), 5639 (1), 6471 (1), -tower 1480: eta = -2.35, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 95.3334 - sampling = 0, 9 SCIndices: 2824 (2), 2888 (3), 2952 (1), 3016 (1), 5448 (2), 5512 (0), 5576 (1), 5640 (1), 6472 (1), -tower 1481: eta = -2.35, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2825 (2), 2889 (3), 2953 (1), 3017 (1), 5449 (2), 5513 (0), 5577 (1), 5641 (1), 6473 (1), -tower 1482: eta = -2.35, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 123.64 - sampling = 0, 9 SCIndices: 2826 (2), 2890 (3), 2954 (1), 3018 (1), 5450 (2), 5514 (0), 5578 (1), 5642 (1), 6474 (1), -tower 1483: eta = -2.35, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2827 (2), 2891 (3), 2955 (1), 3019 (1), 5451 (2), 5515 (0), 5579 (1), 5643 (1), 6475 (1), -tower 1484: eta = -2.35, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 146.735 - sampling = 0, 9 SCIndices: 2828 (2), 2892 (3), 2956 (1), 3020 (1), 5452 (2), 5516 (0), 5580 (1), 5644 (1), 6476 (1), -tower 1485: eta = -2.35, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 154.012 - sampling = 0, 9 SCIndices: 2829 (2), 2893 (3), 2957 (1), 3021 (1), 5453 (2), 5517 (0), 5581 (1), 5645 (1), 6477 (1), -tower 1486: eta = -2.35, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 90.8988 - sampling = 0, 9 SCIndices: 2830 (2), 2894 (3), 2958 (1), 3022 (1), 5454 (2), 5518 (0), 5582 (1), 5646 (1), 6478 (1), -tower 1487: eta = -2.35, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2831 (2), 2895 (3), 2959 (1), 3023 (1), 5455 (2), 5519 (0), 5583 (1), 5647 (1), 6479 (1), -tower 1488: eta = -2.35, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2832 (2), 2896 (3), 2960 (1), 3024 (1), 5456 (2), 5520 (0), 5584 (1), 5648 (1), 6480 (1), -tower 1489: eta = -2.35, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 174.463 - sampling = 0, 9 SCIndices: 2833 (2), 2897 (3), 2961 (1), 3025 (1), 5457 (2), 5521 (0), 5585 (1), 5649 (1), 6481 (1), -tower 1490: eta = -2.35, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 120.141 - sampling = 0, 9 SCIndices: 2834 (2), 2898 (3), 2962 (1), 3026 (1), 5458 (2), 5522 (0), 5586 (1), 5650 (1), 6482 (1), -tower 1491: eta = -2.35, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2835 (2), 2899 (3), 2963 (1), 3027 (1), 5459 (2), 5523 (0), 5587 (1), 5651 (1), 6483 (1), -tower 1492: eta = -2.35, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 146.589 - sampling = 0, 9 SCIndices: 2836 (2), 2900 (0), 2964 (1), 3028 (1), 5460 (2), 5524 (0), 5588 (1), 5652 (1), 6484 (1), -tower 1493: eta = -2.35, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 389.665 - sampling = 0, 9 SCIndices: 2837 (2), 2901 (0), 2965 (1), 3029 (1), 5461 (2), 5525 (0), 5589 (1), 5653 (1), 6485 (1), -tower 1494: eta = -2.35, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 31.5662 - sampling = 0, 9 SCIndices: 2838 (2), 2902 (0), 2966 (1), 3030 (1), 5462 (2), 5526 (0), 5590 (1), 5654 (1), 6486 (1), -tower 1495: eta = -2.35, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 119.464 - sampling = 0, 9 SCIndices: 2839 (2), 2903 (0), 2967 (1), 3031 (1), 5463 (2), 5527 (0), 5591 (1), 5655 (1), 6487 (1), -tower 1496: eta = -2.35, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2840 (2), 2904 (0), 2968 (1), 3032 (1), 5464 (2), 5528 (0), 5592 (1), 5656 (1), 6488 (1), -tower 1497: eta = -2.35, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 186.613 - sampling = 0, 9 SCIndices: 2841 (2), 2905 (0), 2969 (1), 3033 (1), 5465 (2), 5529 (0), 5593 (1), 5657 (1), 6489 (1), -tower 1498: eta = -2.35, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 72.3554 - sampling = 0, 9 SCIndices: 2842 (2), 2906 (0), 2970 (1), 3034 (1), 5466 (2), 5530 (0), 5594 (1), 5658 (2), 6490 (1), -tower 1499: eta = -2.35, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2843 (2), 2907 (0), 2971 (1), 3035 (1), 5467 (2), 5531 (0), 5595 (1), 5659 (2), 6491 (1), -tower 1500: eta = -2.35, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2844 (2), 2908 (0), 2972 (1), 3036 (1), 5468 (2), 5532 (0), 5596 (1), 5660 (2), 6492 (1), -tower 1501: eta = -2.35, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 248.427 - sampling = 0, 9 SCIndices: 2845 (2), 2909 (0), 2973 (1), 3037 (1), 5469 (2), 5533 (0), 5597 (1), 5661 (2), 6493 (1), -tower 1502: eta = -2.35, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 5.5038 - sampling = 0, 9 SCIndices: 2846 (2), 2910 (0), 2974 (1), 3038 (1), 5470 (2), 5534 (0), 5598 (1), 5662 (2), 6494 (1), -tower 1503: eta = -2.35, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 45.5824 - sampling = 0, 9 SCIndices: 2847 (2), 2911 (0), 2975 (1), 3039 (1), 5471 (2), 5535 (0), 5599 (1), 5663 (2), 6495 (1), -tower 1504: eta = -2.35, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 131.248 - sampling = 0, 9 SCIndices: 2848 (2), 2912 (0), 2976 (1), 3040 (1), 5472 (2), 5536 (0), 5600 (1), 5664 (2), 6496 (1), -tower 1505: eta = -2.35, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2849 (2), 2913 (0), 2977 (1), 3041 (1), 5473 (2), 5537 (0), 5601 (1), 5665 (2), 6497 (1), -tower 1506: eta = -2.35, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2850 (2), 2914 (0), 2978 (1), 3042 (1), 5474 (2), 5538 (0), 5602 (1), 5666 (2), 6498 (1), -tower 1507: eta = -2.35, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 186.55 - sampling = 0, 9 SCIndices: 2851 (2), 2915 (0), 2979 (1), 3043 (1), 5475 (2), 5539 (0), 5603 (1), 5667 (2), 6499 (1), -tower 1508: eta = -2.35, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = -53.0826 - sampling = 0, 9 SCIndices: 2852 (2), 2916 (0), 2980 (1), 3044 (1), 5476 (2), 5540 (1), 5604 (1), 5668 (2), 6500 (1), -tower 1509: eta = -2.35, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 279.71 - sampling = 0, 9 SCIndices: 2853 (2), 2917 (0), 2981 (1), 3045 (1), 5477 (2), 5541 (1), 5605 (1), 5669 (2), 6501 (1), -tower 1510: eta = -2.35, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 836.528 - sampling = 0, 9 SCIndices: 2854 (2), 2918 (0), 2982 (1), 3046 (1), 5478 (2), 5542 (1), 5606 (1), 5670 (2), 6502 (1), -tower 1511: eta = -2.35, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 378.165 - sampling = 0, 9 SCIndices: 2855 (2), 2919 (0), 2983 (1), 3047 (1), 5479 (2), 5543 (1), 5607 (1), 5671 (2), 6503 (1), -tower 1512: eta = -2.35, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2856 (2), 2920 (0), 2984 (1), 3048 (2), 5480 (2), 5544 (1), 5608 (1), 5672 (2), 6504 (1), -tower 1513: eta = -2.35, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 42.1185 - sampling = 0, 9 SCIndices: 2857 (2), 2921 (0), 2985 (1), 3049 (2), 5481 (2), 5545 (1), 5609 (1), 5673 (2), 6505 (1), -tower 1514: eta = -2.35, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 474.676 - sampling = 0, 9 SCIndices: 2858 (2), 2922 (0), 2986 (1), 3050 (2), 5482 (3), 5546 (1), 5610 (1), 5674 (2), 6506 (1), -tower 1515: eta = -2.35, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 245.726 - sampling = 0, 9 SCIndices: 2859 (2), 2923 (0), 2987 (1), 3051 (2), 5483 (3), 5547 (1), 5611 (1), 5675 (2), 6507 (1), -tower 1516: eta = -2.35, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2860 (2), 2924 (0), 2988 (1), 3052 (2), 5484 (3), 5548 (1), 5612 (1), 5676 (2), 6508 (1), -tower 1517: eta = -2.35, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 72.3444 - sampling = 0, 9 SCIndices: 2861 (2), 2925 (0), 2989 (1), 3053 (2), 5485 (3), 5549 (1), 5613 (1), 5677 (2), 6509 (1), -tower 1518: eta = -2.35, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 286.15 - sampling = 0, 9 SCIndices: 2862 (2), 2926 (0), 2990 (1), 3054 (2), 5486 (3), 5550 (1), 5614 (1), 5678 (2), 6510 (1), -tower 1519: eta = -2.35, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 401.434 - sampling = 0, 9 SCIndices: 2863 (2), 2927 (0), 2991 (1), 3055 (2), 5487 (3), 5551 (1), 5615 (1), 5679 (2), 6511 (1), -tower 1520: eta = -2.35, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 299.57 - sampling = 0, 9 SCIndices: 2864 (2), 2928 (0), 2992 (1), 3056 (2), 5488 (3), 5552 (1), 5616 (1), 5680 (2), 6512 (1), -tower 1521: eta = -2.35, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = -35.079 - sampling = 0, 9 SCIndices: 2865 (2), 2929 (0), 2993 (1), 3057 (2), 5489 (3), 5553 (1), 5617 (1), 5681 (2), 6513 (1), -tower 1522: eta = -2.35, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 144.76 - sampling = 0, 9 SCIndices: 2866 (2), 2930 (1), 2994 (1), 3058 (2), 5490 (3), 5554 (1), 5618 (1), 5682 (2), 6514 (1), -tower 1523: eta = -2.35, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 193.619 - sampling = 0, 9 SCIndices: 2867 (2), 2931 (1), 2995 (1), 3059 (2), 5491 (3), 5555 (1), 5619 (1), 5683 (2), 6515 (1), -tower 1524: eta = -2.35, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 587.248 - sampling = 0, 9 SCIndices: 2868 (2), 2932 (1), 2996 (1), 3060 (2), 5492 (3), 5556 (1), 5620 (1), 5684 (2), 6516 (1), -tower 1525: eta = -2.35, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 29.3201 - sampling = 0, 9 SCIndices: 2869 (2), 2933 (1), 2997 (1), 3061 (2), 5493 (3), 5557 (1), 5621 (1), 5685 (2), 6517 (1), -tower 1526: eta = -2.35, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2870 (2), 2934 (1), 2998 (1), 3062 (2), 5494 (3), 5558 (1), 5622 (1), 5686 (2), 6518 (1), -tower 1527: eta = -2.35, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = -45.66 - sampling = 0, 9 SCIndices: 2871 (2), 2935 (1), 2999 (1), 3063 (2), 5495 (3), 5559 (1), 5623 (1), 5687 (2), 6519 (1), -tower 1528: eta = -2.35, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 659.504 - sampling = 0, 9 SCIndices: 2872 (3), 2936 (1), 3000 (1), 3064 (2), 5496 (3), 5560 (1), 5624 (1), 5688 (2), 6520 (1), -tower 1529: eta = -2.35, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 399.82 - sampling = 0, 9 SCIndices: 2873 (3), 2937 (1), 3001 (1), 3065 (2), 5497 (3), 5561 (1), 5625 (1), 5689 (2), 6521 (1), -tower 1530: eta = -2.35, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 242.804 - sampling = 0, 9 SCIndices: 2874 (3), 2938 (1), 3002 (1), 3066 (2), 5498 (3), 5562 (1), 5626 (1), 5690 (2), 6522 (1), -tower 1531: eta = -2.35, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 302.697 - sampling = 0, 9 SCIndices: 2875 (3), 2939 (1), 3003 (1), 3067 (2), 5499 (3), 5563 (1), 5627 (1), 5691 (2), 6523 (1), -tower 1532: eta = -2.35, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 70.443 - sampling = 0, 9 SCIndices: 2876 (3), 2940 (1), 3004 (1), 3068 (2), 5500 (3), 5564 (1), 5628 (1), 5692 (2), 6524 (1), -tower 1533: eta = -2.35, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 2877 (3), 2941 (1), 3005 (1), 3069 (2), 5501 (3), 5565 (1), 5629 (1), 5693 (2), 6525 (1), -tower 1534: eta = -2.35, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 681.842 - sampling = 0, 9 SCIndices: 2878 (3), 2942 (1), 3006 (1), 3070 (2), 5502 (3), 5566 (1), 5630 (1), 5694 (2), 6526 (1), -tower 1535: eta = -2.35, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 713.591 - sampling = 0, 9 SCIndices: 2879 (3), 2943 (1), 3007 (1), 3071 (2), 5503 (3), 5567 (1), 5631 (1), 5695 (2), 6527 (1), -tower 1536: eta = -2.45, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 372.186 - sampling = 0, 6 SCIndices: 3072 (2), 5696 (2), 5760 (2), 5824 (0), 5888 (1), 6528 (2), -tower 1537: eta = -2.45, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 205.544 - sampling = 0, 6 SCIndices: 3073 (2), 5697 (2), 5761 (2), 5825 (0), 5889 (1), 6529 (2), -tower 1538: eta = -2.45, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3074 (2), 5698 (2), 5762 (2), 5826 (0), 5890 (1), 6530 (2), -tower 1539: eta = -2.45, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3075 (2), 5699 (2), 5763 (2), 5827 (0), 5891 (1), 6531 (2), -tower 1540: eta = -2.45, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3076 (2), 5700 (2), 5764 (2), 5828 (0), 5892 (1), 6532 (2), -tower 1541: eta = -2.45, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 381.737 - sampling = 0, 6 SCIndices: 3077 (2), 5701 (2), 5765 (2), 5829 (0), 5893 (1), 6533 (2), -tower 1542: eta = -2.45, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 119.554 - sampling = 0, 6 SCIndices: 3078 (2), 5702 (2), 5766 (2), 5830 (1), 5894 (1), 6534 (2), -tower 1543: eta = -2.45, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 98.9485 - sampling = 0, 6 SCIndices: 3079 (2), 5703 (2), 5767 (2), 5831 (1), 5895 (1), 6535 (2), -tower 1544: eta = -2.45, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 552.281 - sampling = 0, 6 SCIndices: 3080 (2), 5704 (2), 5768 (2), 5832 (1), 5896 (1), 6536 (2), -tower 1545: eta = -2.45, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 53.9833 - sampling = 0, 6 SCIndices: 3081 (2), 5705 (2), 5769 (2), 5833 (1), 5897 (1), 6537 (2), -tower 1546: eta = -2.45, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3082 (2), 5706 (2), 5770 (2), 5834 (1), 5898 (1), 6538 (2), -tower 1547: eta = -2.45, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3083 (2), 5707 (2), 5771 (2), 5835 (1), 5899 (1), 6539 (2), -tower 1548: eta = -2.45, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 98.9106 - sampling = 0, 6 SCIndices: 3084 (2), 5708 (2), 5772 (3), 5836 (1), 5900 (1), 6540 (2), -tower 1549: eta = -2.45, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 87.5702 - sampling = 0, 6 SCIndices: 3085 (2), 5709 (2), 5773 (3), 5837 (1), 5901 (1), 6541 (2), -tower 1550: eta = -2.45, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 91.4137 - sampling = 0, 6 SCIndices: 3086 (2), 5710 (2), 5774 (3), 5838 (1), 5902 (1), 6542 (2), -tower 1551: eta = -2.45, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3087 (2), 5711 (2), 5775 (3), 5839 (1), 5903 (1), 6543 (2), -tower 1552: eta = -2.45, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3088 (2), 5712 (2), 5776 (3), 5840 (1), 5904 (1), 6544 (2), -tower 1553: eta = -2.45, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 97.888 - sampling = 0, 6 SCIndices: 3089 (2), 5713 (2), 5777 (3), 5841 (1), 5905 (1), 6545 (2), -tower 1554: eta = -2.45, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 1012.99 - sampling = 0, 6 SCIndices: 3090 (2), 5714 (2), 5778 (3), 5842 (1), 5906 (1), 6546 (2), -tower 1555: eta = -2.45, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3091 (2), 5715 (2), 5779 (3), 5843 (1), 5907 (1), 6547 (2), -tower 1556: eta = -2.45, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3092 (2), 5716 (2), 5780 (3), 5844 (1), 5908 (1), 6548 (2), -tower 1557: eta = -2.45, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3093 (2), 5717 (2), 5781 (3), 5845 (1), 5909 (1), 6549 (2), -tower 1558: eta = -2.45, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 40.495 - sampling = 0, 6 SCIndices: 3094 (2), 5718 (2), 5782 (3), 5846 (1), 5910 (1), 6550 (2), -tower 1559: eta = -2.45, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 24.7892 - sampling = 0, 6 SCIndices: 3095 (2), 5719 (2), 5783 (3), 5847 (1), 5911 (1), 6551 (2), -tower 1560: eta = -2.45, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3096 (2), 5720 (2), 5784 (3), 5848 (1), 5912 (1), 6552 (2), -tower 1561: eta = -2.45, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 118.211 - sampling = 0, 6 SCIndices: 3097 (2), 5721 (2), 5785 (3), 5849 (1), 5913 (1), 6553 (2), -tower 1562: eta = -2.45, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 134.521 - sampling = 0, 6 SCIndices: 3098 (2), 5722 (2), 5786 (3), 5850 (1), 5914 (1), 6554 (2), -tower 1563: eta = -2.45, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 116.564 - sampling = 0, 6 SCIndices: 3099 (2), 5723 (2), 5787 (3), 5851 (1), 5915 (1), 6555 (2), -tower 1564: eta = -2.45, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3100 (2), 5724 (2), 5788 (3), 5852 (1), 5916 (1), 6556 (2), -tower 1565: eta = -2.45, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 64.9419 - sampling = 0, 6 SCIndices: 3101 (2), 5725 (2), 5789 (3), 5853 (1), 5917 (1), 6557 (2), -tower 1566: eta = -2.45, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 142.846 - sampling = 0, 6 SCIndices: 3102 (2), 5726 (2), 5790 (3), 5854 (1), 5918 (1), 6558 (2), -tower 1567: eta = -2.45, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3103 (2), 5727 (2), 5791 (3), 5855 (1), 5919 (1), 6559 (2), -tower 1568: eta = -2.45, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 172.741 - sampling = 0, 6 SCIndices: 3104 (2), 5728 (2), 5792 (3), 5856 (1), 5920 (1), 6560 (2), -tower 1569: eta = -2.45, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3105 (2), 5729 (2), 5793 (3), 5857 (1), 5921 (1), 6561 (2), -tower 1570: eta = -2.45, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 172.724 - sampling = 0, 6 SCIndices: 3106 (2), 5730 (2), 5794 (3), 5858 (1), 5922 (1), 6562 (2), -tower 1571: eta = -2.45, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3107 (2), 5731 (2), 5795 (3), 5859 (1), 5923 (1), 6563 (2), -tower 1572: eta = -2.45, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 201.237 - sampling = 0, 6 SCIndices: 3108 (2), 5732 (2), 5796 (3), 5860 (1), 5924 (1), 6564 (2), -tower 1573: eta = -2.45, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 91.1741 - sampling = 0, 6 SCIndices: 3109 (2), 5733 (2), 5797 (3), 5861 (1), 5925 (1), 6565 (2), -tower 1574: eta = -2.45, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = -29.7398 - sampling = 0, 6 SCIndices: 3110 (2), 5734 (2), 5798 (3), 5862 (1), 5926 (1), 6566 (2), -tower 1575: eta = -2.45, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3111 (2), 5735 (2), 5799 (3), 5863 (1), 5927 (1), 6567 (2), -tower 1576: eta = -2.45, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3112 (2), 5736 (2), 5800 (0), 5864 (1), 5928 (1), 6568 (2), -tower 1577: eta = -2.45, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 26.3799 - sampling = 0, 6 SCIndices: 3113 (2), 5737 (2), 5801 (0), 5865 (1), 5929 (1), 6569 (2), -tower 1578: eta = -2.45, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 493.901 - sampling = 0, 6 SCIndices: 3114 (2), 5738 (2), 5802 (0), 5866 (1), 5930 (1), 6570 (2), -tower 1579: eta = -2.45, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3115 (2), 5739 (2), 5803 (0), 5867 (1), 5931 (1), 6571 (2), -tower 1580: eta = -2.45, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = -45.0486 - sampling = 0, 6 SCIndices: 3116 (2), 5740 (2), 5804 (0), 5868 (1), 5932 (1), 6572 (2), -tower 1581: eta = -2.45, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3117 (2), 5741 (2), 5805 (0), 5869 (1), 5933 (1), 6573 (2), -tower 1582: eta = -2.45, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3118 (2), 5742 (2), 5806 (0), 5870 (1), 5934 (1), 6574 (2), -tower 1583: eta = -2.45, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 59.6741 - sampling = 0, 6 SCIndices: 3119 (2), 5743 (2), 5807 (0), 5871 (1), 5935 (1), 6575 (2), -tower 1584: eta = -2.45, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3120 (2), 5744 (2), 5808 (0), 5872 (1), 5936 (1), 6576 (2), -tower 1585: eta = -2.45, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3121 (2), 5745 (2), 5809 (0), 5873 (1), 5937 (1), 6577 (2), -tower 1586: eta = -2.45, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = -49.3698 - sampling = 0, 6 SCIndices: 3122 (2), 5746 (2), 5810 (0), 5874 (1), 5938 (1), 6578 (2), -tower 1587: eta = -2.45, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 152.717 - sampling = 0, 6 SCIndices: 3123 (2), 5747 (2), 5811 (0), 5875 (1), 5939 (1), 6579 (2), -tower 1588: eta = -2.45, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 258.325 - sampling = 0, 6 SCIndices: 3124 (2), 5748 (2), 5812 (0), 5876 (1), 5940 (1), 6580 (2), -tower 1589: eta = -2.45, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 193.843 - sampling = 0, 6 SCIndices: 3125 (2), 5749 (2), 5813 (0), 5877 (1), 5941 (1), 6581 (2), -tower 1590: eta = -2.45, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3126 (2), 5750 (2), 5814 (0), 5878 (1), 5942 (1), 6582 (2), -tower 1591: eta = -2.45, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 76.1032 - sampling = 0, 6 SCIndices: 3127 (2), 5751 (2), 5815 (0), 5879 (1), 5943 (1), 6583 (2), -tower 1592: eta = -2.45, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3128 (2), 5752 (2), 5816 (0), 5880 (1), 5944 (1), 6584 (2), -tower 1593: eta = -2.45, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3129 (2), 5753 (2), 5817 (0), 5881 (1), 5945 (1), 6585 (2), -tower 1594: eta = -2.45, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3130 (2), 5754 (2), 5818 (0), 5882 (1), 5946 (1), 6586 (2), -tower 1595: eta = -2.45, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3131 (2), 5755 (2), 5819 (0), 5883 (1), 5947 (1), 6587 (2), -tower 1596: eta = -2.45, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3132 (2), 5756 (2), 5820 (0), 5884 (1), 5948 (2), 6588 (2), -tower 1597: eta = -2.45, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 510.273 - sampling = 0, 6 SCIndices: 3133 (2), 5757 (2), 5821 (0), 5885 (1), 5949 (2), 6589 (2), -tower 1598: eta = -2.45, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 200.123 - sampling = 0, 6 SCIndices: 3134 (2), 5758 (2), 5822 (0), 5886 (1), 5950 (2), 6590 (2), -tower 1599: eta = -2.45, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 3135 (2), 5759 (2), 5823 (0), 5887 (1), 5951 (2), 6591 (2), -tower 1600: eta = -2.6, phi = 0.0981748, deta = 0.2, dphi = 0.19635, et = 3897.59 - sampling = 0, 2 SCIndices: 0 (0), 128 (1), -tower 1601: eta = -2.6, phi = 0.294524, deta = 0.2, dphi = 0.19635, et = 142.013 - sampling = 0, 2 SCIndices: 1 (0), 129 (1), -tower 1602: eta = -2.6, phi = 0.490874, deta = 0.2, dphi = 0.19635, et = 218.52 - sampling = 0, 2 SCIndices: 2 (0), 130 (1), -tower 1603: eta = -2.6, phi = 0.687223, deta = 0.2, dphi = 0.19635, et = 3718.02 - sampling = 0, 2 SCIndices: 3 (0), 131 (1), -tower 1604: eta = -2.6, phi = 0.883573, deta = 0.2, dphi = 0.19635, et = 1398.54 - sampling = 0, 2 SCIndices: 4 (0), 132 (1), -tower 1605: eta = -2.6, phi = 1.07992, deta = 0.2, dphi = 0.19635, et = 1419.73 - sampling = 0, 2 SCIndices: 5 (0), 133 (1), -tower 1606: eta = -2.6, phi = 1.27627, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 6 (0), 134 (1), -tower 1607: eta = -2.6, phi = 1.47262, deta = 0.2, dphi = 0.19635, et = 2156.37 - sampling = 0, 2 SCIndices: 7 (0), 135 (1), -tower 1608: eta = -2.6, phi = 1.66897, deta = 0.2, dphi = 0.19635, et = 1965.86 - sampling = 0, 2 SCIndices: 8 (0), 136 (1), -tower 1609: eta = -2.6, phi = 1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 9 (0), 137 (1), -tower 1610: eta = -2.6, phi = 2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 10 (0), 138 (1), -tower 1611: eta = -2.6, phi = 2.25802, deta = 0.2, dphi = 0.19635, et = 64.0376 - sampling = 0, 2 SCIndices: 11 (0), 139 (1), -tower 1612: eta = -2.6, phi = 2.45437, deta = 0.2, dphi = 0.19635, et = 112.63 - sampling = 0, 2 SCIndices: 12 (0), 140 (1), -tower 1613: eta = -2.6, phi = 2.65072, deta = 0.2, dphi = 0.19635, et = 2185.04 - sampling = 0, 2 SCIndices: 13 (0), 141 (1), -tower 1614: eta = -2.6, phi = 2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 14 (0), 142 (1), -tower 1615: eta = -2.6, phi = 3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 15 (0), 143 (1), -tower 1616: eta = -2.6, phi = -3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 16 (0), 144 (1), -tower 1617: eta = -2.6, phi = -2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 17 (0), 145 (1), -tower 1618: eta = -2.6, phi = -2.65072, deta = 0.2, dphi = 0.19635, et = 430.446 - sampling = 0, 2 SCIndices: 18 (0), 146 (1), -tower 1619: eta = -2.6, phi = -2.45437, deta = 0.2, dphi = 0.19635, et = 153.825 - sampling = 0, 2 SCIndices: 19 (0), 147 (1), -tower 1620: eta = -2.6, phi = -2.25802, deta = 0.2, dphi = 0.19635, et = 6625.35 - sampling = 0, 2 SCIndices: 20 (0), 148 (2), -tower 1621: eta = -2.6, phi = -2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 21 (0), 149 (2), -tower 1622: eta = -2.6, phi = -1.86532, deta = 0.2, dphi = 0.19635, et = 100.145 - sampling = 0, 2 SCIndices: 22 (0), 150 (2), -tower 1623: eta = -2.6, phi = -1.66897, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 23 (0), 151 (2), -tower 1624: eta = -2.6, phi = -1.47262, deta = 0.2, dphi = 0.19635, et = 721.084 - sampling = 0, 2 SCIndices: 24 (0), 152 (2), -tower 1625: eta = -2.6, phi = -1.27627, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 25 (0), 153 (2), -tower 1626: eta = -2.6, phi = -1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 26 (0), 154 (2), -tower 1627: eta = -2.6, phi = -0.883573, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 27 (0), 155 (2), -tower 1628: eta = -2.6, phi = -0.687223, deta = 0.2, dphi = 0.19635, et = 1719.49 - sampling = 0, 2 SCIndices: 28 (0), 156 (2), -tower 1629: eta = -2.6, phi = -0.490874, deta = 0.2, dphi = 0.19635, et = 2654.34 - sampling = 0, 2 SCIndices: 29 (0), 157 (2), -tower 1630: eta = -2.6, phi = -0.294524, deta = 0.2, dphi = 0.19635, et = 64.1447 - sampling = 0, 2 SCIndices: 30 (1), 158 (2), -tower 1631: eta = -2.6, phi = -0.0981744, deta = 0.2, dphi = 0.19635, et = 154.318 - sampling = 0, 2 SCIndices: 31 (1), 159 (2), -tower 1632: eta = -2.8, phi = 0.0981748, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 32 (1), 160 (2), -tower 1633: eta = -2.8, phi = 0.294524, deta = 0.2, dphi = 0.19635, et = 1967.75 - sampling = 0, 2 SCIndices: 33 (1), 161 (2), -tower 1634: eta = -2.8, phi = 0.490874, deta = 0.2, dphi = 0.19635, et = 3542.53 - sampling = 0, 2 SCIndices: 34 (1), 162 (2), -tower 1635: eta = -2.8, phi = 0.687223, deta = 0.2, dphi = 0.19635, et = 3254.67 - sampling = 0, 2 SCIndices: 35 (1), 163 (2), -tower 1636: eta = -2.8, phi = 0.883573, deta = 0.2, dphi = 0.19635, et = 2326.47 - sampling = 0, 2 SCIndices: 36 (1), 164 (2), -tower 1637: eta = -2.8, phi = 1.07992, deta = 0.2, dphi = 0.19635, et = 333.993 - sampling = 0, 2 SCIndices: 37 (1), 165 (2), -tower 1638: eta = -2.8, phi = 1.27627, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 38 (1), 166 (2), -tower 1639: eta = -2.8, phi = 1.47262, deta = 0.2, dphi = 0.19635, et = 50.57 - sampling = 0, 2 SCIndices: 39 (1), 167 (2), -tower 1640: eta = -2.8, phi = 1.66897, deta = 0.2, dphi = 0.19635, et = 479.597 - sampling = 0, 2 SCIndices: 40 (1), 168 (2), -tower 1641: eta = -2.8, phi = 1.86532, deta = 0.2, dphi = 0.19635, et = 1075.66 - sampling = 0, 2 SCIndices: 41 (1), 169 (2), -tower 1642: eta = -2.8, phi = 2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 42 (1), 170 (2), -tower 1643: eta = -2.8, phi = 2.25802, deta = 0.2, dphi = 0.19635, et = 3053.4 - sampling = 0, 2 SCIndices: 43 (1), 171 (2), -tower 1644: eta = -2.8, phi = 2.45437, deta = 0.2, dphi = 0.19635, et = 51.1971 - sampling = 0, 2 SCIndices: 44 (1), 172 (2), -tower 1645: eta = -2.8, phi = 2.65072, deta = 0.2, dphi = 0.19635, et = 360.547 - sampling = 0, 2 SCIndices: 45 (1), 173 (2), -tower 1646: eta = -2.8, phi = 2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 46 (1), 174 (2), -tower 1647: eta = -2.8, phi = 3.04342, deta = 0.2, dphi = 0.19635, et = 227.095 - sampling = 0, 2 SCIndices: 47 (1), 175 (2), -tower 1648: eta = -2.8, phi = -3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 48 (1), 176 (2), -tower 1649: eta = -2.8, phi = -2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 49 (1), 177 (2), -tower 1650: eta = -2.8, phi = -2.65072, deta = 0.2, dphi = 0.19635, et = 332.682 - sampling = 0, 2 SCIndices: 50 (1), 178 (2), -tower 1651: eta = -2.8, phi = -2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 51 (1), 179 (2), -tower 1652: eta = -2.8, phi = -2.25802, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 52 (1), 180 (2), -tower 1653: eta = -2.8, phi = -2.06167, deta = 0.2, dphi = 0.19635, et = 51.1523 - sampling = 0, 2 SCIndices: 53 (1), 181 (2), -tower 1654: eta = -2.8, phi = -1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 54 (1), 182 (2), -tower 1655: eta = -2.8, phi = -1.66897, deta = 0.2, dphi = 0.19635, et = 1920.34 - sampling = 0, 2 SCIndices: 55 (1), 183 (2), -tower 1656: eta = -2.8, phi = -1.47262, deta = 0.2, dphi = 0.19635, et = 2127.43 - sampling = 0, 2 SCIndices: 56 (1), 184 (2), -tower 1657: eta = -2.8, phi = -1.27627, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 57 (1), 185 (2), -tower 1658: eta = -2.8, phi = -1.07992, deta = 0.2, dphi = 0.19635, et = 125.709 - sampling = 0, 2 SCIndices: 58 (1), 186 (2), -tower 1659: eta = -2.8, phi = -0.883573, deta = 0.2, dphi = 0.19635, et = 343.261 - sampling = 0, 2 SCIndices: 59 (1), 187 (2), -tower 1660: eta = -2.8, phi = -0.687223, deta = 0.2, dphi = 0.19635, et = 64.6087 - sampling = 0, 2 SCIndices: 60 (1), 188 (2), -tower 1661: eta = -2.8, phi = -0.490874, deta = 0.2, dphi = 0.19635, et = 2073.06 - sampling = 0, 2 SCIndices: 61 (1), 189 (2), -tower 1662: eta = -2.8, phi = -0.294524, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 62 (1), 190 (2), -tower 1663: eta = -2.8, phi = -0.0981744, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 63 (1), 191 (2), -tower 1664: eta = -3, phi = 0.0981748, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 64 (1), 192 (2), -tower 1665: eta = -3, phi = 0.294524, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 65 (1), 193 (2), -tower 1666: eta = -3, phi = 0.490874, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 66 (1), 194 (2), -tower 1667: eta = -3, phi = 0.687223, deta = 0.2, dphi = 0.19635, et = 3888.15 - sampling = 0, 2 SCIndices: 67 (1), 195 (2), -tower 1668: eta = -3, phi = 0.883573, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 68 (1), 196 (2), -tower 1669: eta = -3, phi = 1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 69 (1), 197 (2), -tower 1670: eta = -3, phi = 1.27627, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 70 (1), 198 (2), -tower 1671: eta = -3, phi = 1.47262, deta = 0.2, dphi = 0.19635, et = 140.349 - sampling = 0, 2 SCIndices: 71 (1), 199 (2), -tower 1672: eta = -3, phi = 1.66897, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 72 (1), 200 (2), -tower 1673: eta = -3, phi = 1.86532, deta = 0.2, dphi = 0.19635, et = 246.032 - sampling = 0, 2 SCIndices: 73 (1), 201 (2), -tower 1674: eta = -3, phi = 2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 74 (1), 202 (2), -tower 1675: eta = -3, phi = 2.25802, deta = 0.2, dphi = 0.19635, et = 191.697 - sampling = 0, 2 SCIndices: 75 (1), 203 (2), -tower 1676: eta = -3, phi = 2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 76 (1), 204 (2), -tower 1677: eta = -3, phi = 2.65072, deta = 0.2, dphi = 0.19635, et = 921.519 - sampling = 0, 2 SCIndices: 77 (1), 205 (2), -tower 1678: eta = -3, phi = 2.84707, deta = 0.2, dphi = 0.19635, et = 234.869 - sampling = 0, 2 SCIndices: 78 (1), 206 (2), -tower 1679: eta = -3, phi = 3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 79 (1), 207 (2), -tower 1680: eta = -3, phi = -3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 80 (1), 208 (2), -tower 1681: eta = -3, phi = -2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 81 (1), 209 (2), -tower 1682: eta = -3, phi = -2.65072, deta = 0.2, dphi = 0.19635, et = 254.645 - sampling = 0, 2 SCIndices: 82 (1), 210 (2), -tower 1683: eta = -3, phi = -2.45437, deta = 0.2, dphi = 0.19635, et = 413.476 - sampling = 0, 2 SCIndices: 83 (1), 211 (2), -tower 1684: eta = -3, phi = -2.25802, deta = 0.2, dphi = 0.19635, et = 2008.02 - sampling = 0, 2 SCIndices: 84 (1), 212 (2), -tower 1685: eta = -3, phi = -2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 85 (1), 213 (2), -tower 1686: eta = -3, phi = -1.86532, deta = 0.2, dphi = 0.19635, et = 254.86 - sampling = 0, 2 SCIndices: 86 (1), 214 (2), -tower 1687: eta = -3, phi = -1.66897, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 87 (1), 215 (2), -tower 1688: eta = -3, phi = -1.47262, deta = 0.2, dphi = 0.19635, et = 4096.78 - sampling = 0, 2 SCIndices: 88 (1), 216 (2), -tower 1689: eta = -3, phi = -1.27627, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 89 (1), 217 (2), -tower 1690: eta = -3, phi = -1.07992, deta = 0.2, dphi = 0.19635, et = 4714.01 - sampling = 0, 2 SCIndices: 90 (1), 218 (2), -tower 1691: eta = -3, phi = -0.883573, deta = 0.2, dphi = 0.19635, et = 4869.41 - sampling = 0, 2 SCIndices: 91 (1), 219 (2), -tower 1692: eta = -3, phi = -0.687223, deta = 0.2, dphi = 0.19635, et = 2119.55 - sampling = 0, 2 SCIndices: 92 (1), 220 (2), -tower 1693: eta = -3, phi = -0.490874, deta = 0.2, dphi = 0.19635, et = 2944.98 - sampling = 0, 2 SCIndices: 93 (1), 221 (2), -tower 1694: eta = -3, phi = -0.294524, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 94 (1), 222 (2), -tower 1695: eta = -3, phi = -0.0981744, deta = 0.2, dphi = 0.19635, et = 1967.67 - sampling = 0, 2 SCIndices: 95 (1), 223 (2), -tower 1696: eta = -3.15, phi = 0.0981748, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 96 (1), 224 (2), -tower 1697: eta = -3.15, phi = 0.294524, deta = 0.1, dphi = 0.19635, et = 1251.12 - sampling = 0, 2 SCIndices: 97 (1), 225 (2), -tower 1698: eta = -3.15, phi = 0.490874, deta = 0.1, dphi = 0.19635, et = 224.492 - sampling = 0, 2 SCIndices: 98 (1), 226 (2), -tower 1699: eta = -3.15, phi = 0.687223, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 99 (1), 227 (2), -tower 1700: eta = -3.15, phi = 0.883573, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 100 (1), 228 (2), -tower 1701: eta = -3.15, phi = 1.07992, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 101 (1), 229 (2), -tower 1702: eta = -3.15, phi = 1.27627, deta = 0.1, dphi = 0.19635, et = 112.187 - sampling = 0, 2 SCIndices: 102 (1), 230 (2), -tower 1703: eta = -3.15, phi = 1.47262, deta = 0.1, dphi = 0.19635, et = 536.057 - sampling = 0, 2 SCIndices: 103 (1), 231 (2), -tower 1704: eta = -3.15, phi = 1.66897, deta = 0.1, dphi = 0.19635, et = 1523.35 - sampling = 0, 2 SCIndices: 104 (1), 232 (2), -tower 1705: eta = -3.15, phi = 1.86532, deta = 0.1, dphi = 0.19635, et = 371.092 - sampling = 0, 2 SCIndices: 105 (1), 233 (2), -tower 1706: eta = -3.15, phi = 2.06167, deta = 0.1, dphi = 0.19635, et = 1070.65 - sampling = 0, 2 SCIndices: 106 (1), 234 (2), -tower 1707: eta = -3.15, phi = 2.25802, deta = 0.1, dphi = 0.19635, et = 223.636 - sampling = 0, 2 SCIndices: 107 (1), 235 (2), -tower 1708: eta = -3.15, phi = 2.45437, deta = 0.1, dphi = 0.19635, et = 2249.57 - sampling = 0, 2 SCIndices: 108 (1), 236 (2), -tower 1709: eta = -3.15, phi = 2.65072, deta = 0.1, dphi = 0.19635, et = 1351.62 - sampling = 0, 2 SCIndices: 109 (1), 237 (2), -tower 1710: eta = -3.15, phi = 2.84707, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 110 (1), 238 (2), -tower 1711: eta = -3.15, phi = 3.04342, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 111 (1), 239 (2), -tower 1712: eta = -3.15, phi = -3.04342, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 112 (1), 240 (2), -tower 1713: eta = -3.15, phi = -2.84707, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 113 (1), 241 (2), -tower 1714: eta = -3.15, phi = -2.65072, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 114 (1), 242 (2), -tower 1715: eta = -3.15, phi = -2.45437, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 115 (1), 243 (2), -tower 1716: eta = -3.15, phi = -2.25802, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 116 (1), 244 (2), -tower 1717: eta = -3.15, phi = -2.06167, deta = 0.1, dphi = 0.19635, et = 1449.77 - sampling = 0, 2 SCIndices: 117 (1), 245 (2), -tower 1718: eta = -3.15, phi = -1.86532, deta = 0.1, dphi = 0.19635, et = 2136.65 - sampling = 0, 2 SCIndices: 118 (1), 246 (2), -tower 1719: eta = -3.15, phi = -1.66897, deta = 0.1, dphi = 0.19635, et = 481.892 - sampling = 0, 2 SCIndices: 119 (1), 247 (2), -tower 1720: eta = -3.15, phi = -1.47262, deta = 0.1, dphi = 0.19635, et = 154.547 - sampling = 0, 2 SCIndices: 120 (1), 248 (2), -tower 1721: eta = -3.15, phi = -1.27627, deta = 0.1, dphi = 0.19635, et = 162.621 - sampling = 0, 2 SCIndices: 121 (1), 249 (2), -tower 1722: eta = -3.15, phi = -1.07992, deta = 0.1, dphi = 0.19635, et = 1237.58 - sampling = 0, 2 SCIndices: 122 (1), 250 (2), -tower 1723: eta = -3.15, phi = -0.883573, deta = 0.1, dphi = 0.19635, et = 242.811 - sampling = 0, 2 SCIndices: 123 (1), 251 (2), -tower 1724: eta = -3.15, phi = -0.687223, deta = 0.1, dphi = 0.19635, et = 524.978 - sampling = 0, 2 SCIndices: 124 (1), 252 (2), -tower 1725: eta = -3.15, phi = -0.490874, deta = 0.1, dphi = 0.19635, et = 525.274 - sampling = 0, 2 SCIndices: 125 (1), 253 (2), -tower 1726: eta = -3.15, phi = -0.294524, deta = 0.1, dphi = 0.19635, et = 203.124 - sampling = 0, 2 SCIndices: 126 (1), 254 (2), -tower 1727: eta = -3.15, phi = -0.0981744, deta = 0.1, dphi = 0.19635, et = 267.617 - sampling = 0, 2 SCIndices: 127 (1), 255 (2), -tower 1728: eta = -0.05, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1729: eta = -0.05, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1730: eta = -0.05, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1731: eta = -0.05, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1732: eta = -0.05, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1733: eta = -0.05, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1734: eta = -0.05, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1735: eta = -0.05, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1736: eta = -0.05, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1737: eta = -0.05, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1738: eta = -0.05, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1739: eta = -0.05, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1740: eta = -0.05, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1741: eta = -0.05, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1742: eta = -0.05, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1743: eta = -0.05, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1744: eta = -0.05, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1745: eta = -0.05, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1746: eta = -0.05, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1747: eta = -0.05, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1748: eta = -0.05, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1749: eta = -0.05, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1750: eta = -0.05, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1751: eta = -0.05, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1752: eta = -0.05, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1753: eta = -0.05, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1754: eta = -0.05, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1755: eta = -0.05, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1756: eta = -0.05, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1757: eta = -0.05, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1758: eta = -0.05, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1759: eta = -0.05, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1760: eta = -0.05, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1761: eta = -0.05, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1762: eta = -0.05, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1763: eta = -0.05, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1764: eta = -0.05, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1765: eta = -0.05, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1766: eta = -0.05, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1767: eta = -0.05, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1768: eta = -0.05, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1769: eta = -0.05, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1770: eta = -0.05, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1771: eta = -0.05, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1772: eta = -0.05, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1773: eta = -0.05, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1774: eta = -0.05, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1775: eta = -0.05, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1776: eta = -0.05, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1777: eta = -0.05, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1778: eta = -0.05, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1779: eta = -0.05, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1780: eta = -0.05, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1781: eta = -0.05, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1782: eta = -0.05, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1783: eta = -0.05, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1784: eta = -0.05, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1785: eta = -0.05, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1786: eta = -0.05, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1787: eta = -0.05, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1788: eta = -0.05, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1789: eta = -0.05, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1790: eta = -0.05, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1791: eta = -0.05, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1792: eta = -0.15, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1793: eta = -0.15, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1794: eta = -0.15, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1795: eta = -0.15, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1796: eta = -0.15, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1797: eta = -0.15, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1798: eta = -0.15, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1799: eta = -0.15, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1800: eta = -0.15, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1801: eta = -0.15, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1802: eta = -0.15, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1803: eta = -0.15, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1804: eta = -0.15, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1805: eta = -0.15, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1806: eta = -0.15, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1807: eta = -0.15, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1808: eta = -0.15, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1809: eta = -0.15, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1810: eta = -0.15, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1811: eta = -0.15, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1812: eta = -0.15, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1813: eta = -0.15, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1814: eta = -0.15, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1815: eta = -0.15, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1816: eta = -0.15, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1817: eta = -0.15, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1818: eta = -0.15, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1819: eta = -0.15, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1820: eta = -0.15, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1821: eta = -0.15, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1822: eta = -0.15, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1823: eta = -0.15, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1824: eta = -0.15, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1825: eta = -0.15, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1826: eta = -0.15, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1827: eta = -0.15, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1828: eta = -0.15, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1829: eta = -0.15, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1830: eta = -0.15, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1831: eta = -0.15, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1832: eta = -0.15, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1833: eta = -0.15, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1834: eta = -0.15, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1835: eta = -0.15, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1836: eta = -0.15, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1837: eta = -0.15, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1838: eta = -0.15, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1839: eta = -0.15, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1840: eta = -0.15, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1841: eta = -0.15, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1842: eta = -0.15, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1843: eta = -0.15, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1844: eta = -0.15, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1845: eta = -0.15, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1846: eta = -0.15, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1847: eta = -0.15, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1848: eta = -0.15, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1849: eta = -0.15, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1850: eta = -0.15, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1851: eta = -0.15, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1852: eta = -0.15, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1853: eta = -0.15, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1854: eta = -0.15, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1855: eta = -0.15, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1856: eta = -0.25, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1857: eta = -0.25, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1858: eta = -0.25, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1859: eta = -0.25, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1860: eta = -0.25, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1861: eta = -0.25, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1862: eta = -0.25, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1863: eta = -0.25, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1864: eta = -0.25, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1865: eta = -0.25, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1866: eta = -0.25, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1867: eta = -0.25, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1868: eta = -0.25, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1869: eta = -0.25, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1870: eta = -0.25, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1871: eta = -0.25, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1872: eta = -0.25, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1873: eta = -0.25, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1874: eta = -0.25, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1875: eta = -0.25, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1876: eta = -0.25, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1877: eta = -0.25, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1878: eta = -0.25, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1879: eta = -0.25, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1880: eta = -0.25, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1881: eta = -0.25, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1882: eta = -0.25, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1883: eta = -0.25, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1884: eta = -0.25, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1885: eta = -0.25, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1886: eta = -0.25, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1887: eta = -0.25, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1888: eta = -0.25, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1889: eta = -0.25, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1890: eta = -0.25, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1891: eta = -0.25, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1892: eta = -0.25, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1893: eta = -0.25, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1894: eta = -0.25, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1895: eta = -0.25, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1896: eta = -0.25, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1897: eta = -0.25, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1898: eta = -0.25, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1899: eta = -0.25, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1900: eta = -0.25, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1901: eta = -0.25, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1902: eta = -0.25, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1903: eta = -0.25, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1904: eta = -0.25, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1905: eta = -0.25, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1906: eta = -0.25, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1907: eta = -0.25, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1908: eta = -0.25, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1909: eta = -0.25, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1910: eta = -0.25, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1911: eta = -0.25, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1912: eta = -0.25, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1913: eta = -0.25, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1914: eta = -0.25, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1915: eta = -0.25, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1916: eta = -0.25, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1917: eta = -0.25, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1918: eta = -0.25, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1919: eta = -0.25, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1920: eta = -0.35, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1921: eta = -0.35, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1922: eta = -0.35, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1923: eta = -0.35, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1924: eta = -0.35, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1925: eta = -0.35, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1926: eta = -0.35, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1927: eta = -0.35, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1928: eta = -0.35, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1929: eta = -0.35, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1930: eta = -0.35, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1931: eta = -0.35, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1932: eta = -0.35, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1933: eta = -0.35, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1934: eta = -0.35, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1935: eta = -0.35, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1936: eta = -0.35, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1937: eta = -0.35, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1938: eta = -0.35, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1939: eta = -0.35, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1940: eta = -0.35, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1941: eta = -0.35, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1942: eta = -0.35, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1943: eta = -0.35, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1944: eta = -0.35, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1945: eta = -0.35, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1946: eta = -0.35, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1947: eta = -0.35, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1948: eta = -0.35, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1949: eta = -0.35, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1950: eta = -0.35, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1951: eta = -0.35, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1952: eta = -0.35, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1953: eta = -0.35, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1954: eta = -0.35, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1955: eta = -0.35, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1956: eta = -0.35, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1957: eta = -0.35, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1958: eta = -0.35, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1959: eta = -0.35, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1960: eta = -0.35, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1961: eta = -0.35, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1962: eta = -0.35, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1963: eta = -0.35, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1964: eta = -0.35, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1965: eta = -0.35, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1966: eta = -0.35, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1967: eta = -0.35, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1968: eta = -0.35, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1969: eta = -0.35, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1970: eta = -0.35, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1971: eta = -0.35, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1972: eta = -0.35, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1973: eta = -0.35, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1974: eta = -0.35, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1975: eta = -0.35, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1976: eta = -0.35, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1977: eta = -0.35, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1978: eta = -0.35, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1979: eta = -0.35, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1980: eta = -0.35, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1981: eta = -0.35, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1982: eta = -0.35, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1983: eta = -0.35, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1984: eta = -0.45, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1985: eta = -0.45, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1986: eta = -0.45, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1987: eta = -0.45, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1988: eta = -0.45, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1989: eta = -0.45, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1990: eta = -0.45, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1991: eta = -0.45, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1992: eta = -0.45, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1993: eta = -0.45, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1994: eta = -0.45, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1995: eta = -0.45, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1996: eta = -0.45, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1997: eta = -0.45, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1998: eta = -0.45, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 1999: eta = -0.45, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2000: eta = -0.45, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2001: eta = -0.45, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2002: eta = -0.45, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2003: eta = -0.45, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2004: eta = -0.45, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2005: eta = -0.45, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2006: eta = -0.45, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2007: eta = -0.45, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2008: eta = -0.45, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2009: eta = -0.45, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2010: eta = -0.45, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2011: eta = -0.45, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2012: eta = -0.45, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2013: eta = -0.45, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2014: eta = -0.45, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2015: eta = -0.45, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2016: eta = -0.45, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2017: eta = -0.45, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2018: eta = -0.45, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2019: eta = -0.45, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2020: eta = -0.45, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2021: eta = -0.45, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2022: eta = -0.45, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2023: eta = -0.45, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2024: eta = -0.45, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2025: eta = -0.45, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2026: eta = -0.45, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2027: eta = -0.45, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2028: eta = -0.45, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2029: eta = -0.45, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2030: eta = -0.45, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2031: eta = -0.45, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2032: eta = -0.45, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2033: eta = -0.45, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2034: eta = -0.45, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2035: eta = -0.45, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2036: eta = -0.45, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2037: eta = -0.45, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2038: eta = -0.45, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2039: eta = -0.45, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2040: eta = -0.45, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2041: eta = -0.45, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2042: eta = -0.45, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2043: eta = -0.45, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2044: eta = -0.45, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2045: eta = -0.45, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2046: eta = -0.45, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2047: eta = -0.45, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2048: eta = -0.55, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2049: eta = -0.55, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2050: eta = -0.55, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2051: eta = -0.55, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2052: eta = -0.55, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2053: eta = -0.55, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2054: eta = -0.55, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2055: eta = -0.55, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2056: eta = -0.55, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2057: eta = -0.55, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2058: eta = -0.55, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2059: eta = -0.55, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2060: eta = -0.55, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2061: eta = -0.55, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 2062: eta = -0.55, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2063: eta = -0.55, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2064: eta = -0.55, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2065: eta = -0.55, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2066: eta = -0.55, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2067: eta = -0.55, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2068: eta = -0.55, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2069: eta = -0.55, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2070: eta = -0.55, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2071: eta = -0.55, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2072: eta = -0.55, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2073: eta = -0.55, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2074: eta = -0.55, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2075: eta = -0.55, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2076: eta = -0.55, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2077: eta = -0.55, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2078: eta = -0.55, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2079: eta = -0.55, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2080: eta = -0.55, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2081: eta = -0.55, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2082: eta = -0.55, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2083: eta = -0.55, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2084: eta = -0.55, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2085: eta = -0.55, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2086: eta = -0.55, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2087: eta = -0.55, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2088: eta = -0.55, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2089: eta = -0.55, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2090: eta = -0.55, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2091: eta = -0.55, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2092: eta = -0.55, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2093: eta = -0.55, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2094: eta = -0.55, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2095: eta = -0.55, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2096: eta = -0.55, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2097: eta = -0.55, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2098: eta = -0.55, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2099: eta = -0.55, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2100: eta = -0.55, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2101: eta = -0.55, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2102: eta = -0.55, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2103: eta = -0.55, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2104: eta = -0.55, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2105: eta = -0.55, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2106: eta = -0.55, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2107: eta = -0.55, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2108: eta = -0.55, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2109: eta = -0.55, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2110: eta = -0.55, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2111: eta = -0.55, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2112: eta = -0.65, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2113: eta = -0.65, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2114: eta = -0.65, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2115: eta = -0.65, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2116: eta = -0.65, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2117: eta = -0.65, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2118: eta = -0.65, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2119: eta = -0.65, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2120: eta = -0.65, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2121: eta = -0.65, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2122: eta = -0.65, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2123: eta = -0.65, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2124: eta = -0.65, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2125: eta = -0.65, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2126: eta = -0.65, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2127: eta = -0.65, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2128: eta = -0.65, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2129: eta = -0.65, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2130: eta = -0.65, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2131: eta = -0.65, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2132: eta = -0.65, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2133: eta = -0.65, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2134: eta = -0.65, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2135: eta = -0.65, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2136: eta = -0.65, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2137: eta = -0.65, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2138: eta = -0.65, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2139: eta = -0.65, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2140: eta = -0.65, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2141: eta = -0.65, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2142: eta = -0.65, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2143: eta = -0.65, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2144: eta = -0.65, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2145: eta = -0.65, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2146: eta = -0.65, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2147: eta = -0.65, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2148: eta = -0.65, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2149: eta = -0.65, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2150: eta = -0.65, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2151: eta = -0.65, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2152: eta = -0.65, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2153: eta = -0.65, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2154: eta = -0.65, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2155: eta = -0.65, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2156: eta = -0.65, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2157: eta = -0.65, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2158: eta = -0.65, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2159: eta = -0.65, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2160: eta = -0.65, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2161: eta = -0.65, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2162: eta = -0.65, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2163: eta = -0.65, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2164: eta = -0.65, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2165: eta = -0.65, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2166: eta = -0.65, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2167: eta = -0.65, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2168: eta = -0.65, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2169: eta = -0.65, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2170: eta = -0.65, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2171: eta = -0.65, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2172: eta = -0.65, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2173: eta = -0.65, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2174: eta = -0.65, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2175: eta = -0.65, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2176: eta = -0.75, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2177: eta = -0.75, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2178: eta = -0.75, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2179: eta = -0.75, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2180: eta = -0.75, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2181: eta = -0.75, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2182: eta = -0.75, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2183: eta = -0.75, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2184: eta = -0.75, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2185: eta = -0.75, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2186: eta = -0.75, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2187: eta = -0.75, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2188: eta = -0.75, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2189: eta = -0.75, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2190: eta = -0.75, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2191: eta = -0.75, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2192: eta = -0.75, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2193: eta = -0.75, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2194: eta = -0.75, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2195: eta = -0.75, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2196: eta = -0.75, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2197: eta = -0.75, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2198: eta = -0.75, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2199: eta = -0.75, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2200: eta = -0.75, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2201: eta = -0.75, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2202: eta = -0.75, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2203: eta = -0.75, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2204: eta = -0.75, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2205: eta = -0.75, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2206: eta = -0.75, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2207: eta = -0.75, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2208: eta = -0.75, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2209: eta = -0.75, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2210: eta = -0.75, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2211: eta = -0.75, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2212: eta = -0.75, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2213: eta = -0.75, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2214: eta = -0.75, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2215: eta = -0.75, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2216: eta = -0.75, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2217: eta = -0.75, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2218: eta = -0.75, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2219: eta = -0.75, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2220: eta = -0.75, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2221: eta = -0.75, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2222: eta = -0.75, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2223: eta = -0.75, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2224: eta = -0.75, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2225: eta = -0.75, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2226: eta = -0.75, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2227: eta = -0.75, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2228: eta = -0.75, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2229: eta = -0.75, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2230: eta = -0.75, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2231: eta = -0.75, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2232: eta = -0.75, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2233: eta = -0.75, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2234: eta = -0.75, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2235: eta = -0.75, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2236: eta = -0.75, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2237: eta = -0.75, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2238: eta = -0.75, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2239: eta = -0.75, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2240: eta = -0.85, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2241: eta = -0.85, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2242: eta = -0.85, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2243: eta = -0.85, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2244: eta = -0.85, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2245: eta = -0.85, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2246: eta = -0.85, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2247: eta = -0.85, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2248: eta = -0.85, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2249: eta = -0.85, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2250: eta = -0.85, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2251: eta = -0.85, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2252: eta = -0.85, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2253: eta = -0.85, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2254: eta = -0.85, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2255: eta = -0.85, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2256: eta = -0.85, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2257: eta = -0.85, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2258: eta = -0.85, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2259: eta = -0.85, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2260: eta = -0.85, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2261: eta = -0.85, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2262: eta = -0.85, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2263: eta = -0.85, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2264: eta = -0.85, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2265: eta = -0.85, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2266: eta = -0.85, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2267: eta = -0.85, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2268: eta = -0.85, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2269: eta = -0.85, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2270: eta = -0.85, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2271: eta = -0.85, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2272: eta = -0.85, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2273: eta = -0.85, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2274: eta = -0.85, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2275: eta = -0.85, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2276: eta = -0.85, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2277: eta = -0.85, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2278: eta = -0.85, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2279: eta = -0.85, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2280: eta = -0.85, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2281: eta = -0.85, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2282: eta = -0.85, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2283: eta = -0.85, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2284: eta = -0.85, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2285: eta = -0.85, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2286: eta = -0.85, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2287: eta = -0.85, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2288: eta = -0.85, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2289: eta = -0.85, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2290: eta = -0.85, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2291: eta = -0.85, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2292: eta = -0.85, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2293: eta = -0.85, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2294: eta = -0.85, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2295: eta = -0.85, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2296: eta = -0.85, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2297: eta = -0.85, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2298: eta = -0.85, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2299: eta = -0.85, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2300: eta = -0.85, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2301: eta = -0.85, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2302: eta = -0.85, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2303: eta = -0.85, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2304: eta = -0.95, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2305: eta = -0.95, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2306: eta = -0.95, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2307: eta = -0.95, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2308: eta = -0.95, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2309: eta = -0.95, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2310: eta = -0.95, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2311: eta = -0.95, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2312: eta = -0.95, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2313: eta = -0.95, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2314: eta = -0.95, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2315: eta = -0.95, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2316: eta = -0.95, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2317: eta = -0.95, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2318: eta = -0.95, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2319: eta = -0.95, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2320: eta = -0.95, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2321: eta = -0.95, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2322: eta = -0.95, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2323: eta = -0.95, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2324: eta = -0.95, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2325: eta = -0.95, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2326: eta = -0.95, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2327: eta = -0.95, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2328: eta = -0.95, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2329: eta = -0.95, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2330: eta = -0.95, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2331: eta = -0.95, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2332: eta = -0.95, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2333: eta = -0.95, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2334: eta = -0.95, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2335: eta = -0.95, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2336: eta = -0.95, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2337: eta = -0.95, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2338: eta = -0.95, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2339: eta = -0.95, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2340: eta = -0.95, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2341: eta = -0.95, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2342: eta = -0.95, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2343: eta = -0.95, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2344: eta = -0.95, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2345: eta = -0.95, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2346: eta = -0.95, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2347: eta = -0.95, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2348: eta = -0.95, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2349: eta = -0.95, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2350: eta = -0.95, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2351: eta = -0.95, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2352: eta = -0.95, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2353: eta = -0.95, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2354: eta = -0.95, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2355: eta = -0.95, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2356: eta = -0.95, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2357: eta = -0.95, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2358: eta = -0.95, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2359: eta = -0.95, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2360: eta = -0.95, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2361: eta = -0.95, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2362: eta = -0.95, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2363: eta = -0.95, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2364: eta = -0.95, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2365: eta = -0.95, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2366: eta = -0.95, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2367: eta = -0.95, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2368: eta = -1.05, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2369: eta = -1.05, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2370: eta = -1.05, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2371: eta = -1.05, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2372: eta = -1.05, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2373: eta = -1.05, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2374: eta = -1.05, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2375: eta = -1.05, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2376: eta = -1.05, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2377: eta = -1.05, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2378: eta = -1.05, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2379: eta = -1.05, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2380: eta = -1.05, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 2381: eta = -1.05, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2382: eta = -1.05, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2383: eta = -1.05, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2384: eta = -1.05, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2385: eta = -1.05, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2386: eta = -1.05, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2387: eta = -1.05, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2388: eta = -1.05, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2389: eta = -1.05, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2390: eta = -1.05, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2391: eta = -1.05, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2392: eta = -1.05, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2393: eta = -1.05, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2394: eta = -1.05, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2395: eta = -1.05, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2396: eta = -1.05, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2397: eta = -1.05, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2398: eta = -1.05, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2399: eta = -1.05, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2400: eta = -1.05, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2401: eta = -1.05, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2402: eta = -1.05, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2403: eta = -1.05, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2404: eta = -1.05, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2405: eta = -1.05, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2406: eta = -1.05, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2407: eta = -1.05, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2408: eta = -1.05, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2409: eta = -1.05, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2410: eta = -1.05, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2411: eta = -1.05, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2412: eta = -1.05, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2413: eta = -1.05, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2414: eta = -1.05, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2415: eta = -1.05, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2416: eta = -1.05, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2417: eta = -1.05, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2418: eta = -1.05, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2419: eta = -1.05, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2420: eta = -1.05, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2421: eta = -1.05, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2422: eta = -1.05, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2423: eta = -1.05, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2424: eta = -1.05, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2425: eta = -1.05, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2426: eta = -1.05, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2427: eta = -1.05, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2428: eta = -1.05, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2429: eta = -1.05, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2430: eta = -1.05, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2431: eta = -1.05, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2432: eta = -1.15, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2433: eta = -1.15, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2434: eta = -1.15, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2435: eta = -1.15, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2436: eta = -1.15, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2437: eta = -1.15, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2438: eta = -1.15, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2439: eta = -1.15, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2440: eta = -1.15, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2441: eta = -1.15, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2442: eta = -1.15, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2443: eta = -1.15, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2444: eta = -1.15, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2445: eta = -1.15, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2446: eta = -1.15, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2447: eta = -1.15, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2448: eta = -1.15, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2449: eta = -1.15, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2450: eta = -1.15, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2451: eta = -1.15, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2452: eta = -1.15, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2453: eta = -1.15, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2454: eta = -1.15, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2455: eta = -1.15, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2456: eta = -1.15, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2457: eta = -1.15, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2458: eta = -1.15, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2459: eta = -1.15, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2460: eta = -1.15, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2461: eta = -1.15, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2462: eta = -1.15, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2463: eta = -1.15, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2464: eta = -1.15, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2465: eta = -1.15, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2466: eta = -1.15, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2467: eta = -1.15, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2468: eta = -1.15, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2469: eta = -1.15, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2470: eta = -1.15, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2471: eta = -1.15, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2472: eta = -1.15, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2473: eta = -1.15, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2474: eta = -1.15, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2475: eta = -1.15, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2476: eta = -1.15, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2477: eta = -1.15, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2478: eta = -1.15, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2479: eta = -1.15, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2480: eta = -1.15, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2481: eta = -1.15, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2482: eta = -1.15, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2483: eta = -1.15, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2484: eta = -1.15, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2485: eta = -1.15, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2486: eta = -1.15, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2487: eta = -1.15, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2488: eta = -1.15, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2489: eta = -1.15, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2490: eta = -1.15, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2491: eta = -1.15, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2492: eta = -1.15, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2493: eta = -1.15, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2494: eta = -1.15, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2495: eta = -1.15, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2496: eta = -1.25, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2497: eta = -1.25, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2498: eta = -1.25, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2499: eta = -1.25, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2500: eta = -1.25, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2501: eta = -1.25, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2502: eta = -1.25, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2503: eta = -1.25, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2504: eta = -1.25, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2505: eta = -1.25, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2506: eta = -1.25, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2507: eta = -1.25, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2508: eta = -1.25, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2509: eta = -1.25, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2510: eta = -1.25, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2511: eta = -1.25, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2512: eta = -1.25, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2513: eta = -1.25, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2514: eta = -1.25, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2515: eta = -1.25, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2516: eta = -1.25, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2517: eta = -1.25, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2518: eta = -1.25, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2519: eta = -1.25, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2520: eta = -1.25, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2521: eta = -1.25, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2522: eta = -1.25, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2523: eta = -1.25, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2524: eta = -1.25, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2525: eta = -1.25, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2526: eta = -1.25, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2527: eta = -1.25, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2528: eta = -1.25, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2529: eta = -1.25, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2530: eta = -1.25, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2531: eta = -1.25, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2532: eta = -1.25, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2533: eta = -1.25, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2534: eta = -1.25, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2535: eta = -1.25, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2536: eta = -1.25, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2537: eta = -1.25, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2538: eta = -1.25, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2539: eta = -1.25, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2540: eta = -1.25, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2541: eta = -1.25, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2542: eta = -1.25, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2543: eta = -1.25, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2544: eta = -1.25, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2545: eta = -1.25, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2546: eta = -1.25, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2547: eta = -1.25, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2548: eta = -1.25, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2549: eta = -1.25, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2550: eta = -1.25, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2551: eta = -1.25, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2552: eta = -1.25, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2553: eta = -1.25, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2554: eta = -1.25, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2555: eta = -1.25, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2556: eta = -1.25, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2557: eta = -1.25, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2558: eta = -1.25, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2559: eta = -1.25, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2560: eta = -1.35, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2561: eta = -1.35, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2562: eta = -1.35, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2563: eta = -1.35, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2564: eta = -1.35, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2565: eta = -1.35, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2566: eta = -1.35, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2567: eta = -1.35, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2568: eta = -1.35, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2569: eta = -1.35, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2570: eta = -1.35, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2571: eta = -1.35, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2572: eta = -1.35, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2573: eta = -1.35, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2574: eta = -1.35, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2575: eta = -1.35, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2576: eta = -1.35, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2577: eta = -1.35, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2578: eta = -1.35, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2579: eta = -1.35, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2580: eta = -1.35, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2581: eta = -1.35, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2582: eta = -1.35, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2583: eta = -1.35, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2584: eta = -1.35, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2585: eta = -1.35, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2586: eta = -1.35, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2587: eta = -1.35, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2588: eta = -1.35, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2589: eta = -1.35, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2590: eta = -1.35, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2591: eta = -1.35, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2592: eta = -1.35, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2593: eta = -1.35, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2594: eta = -1.35, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2595: eta = -1.35, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2596: eta = -1.35, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2597: eta = -1.35, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2598: eta = -1.35, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2599: eta = -1.35, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2600: eta = -1.35, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2601: eta = -1.35, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2602: eta = -1.35, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2603: eta = -1.35, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2604: eta = -1.35, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2605: eta = -1.35, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2606: eta = -1.35, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2607: eta = -1.35, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2608: eta = -1.35, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2609: eta = -1.35, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2610: eta = -1.35, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2611: eta = -1.35, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2612: eta = -1.35, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2613: eta = -1.35, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2614: eta = -1.35, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2615: eta = -1.35, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2616: eta = -1.35, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2617: eta = -1.35, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2618: eta = -1.35, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2619: eta = -1.35, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2620: eta = -1.35, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2621: eta = -1.35, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2622: eta = -1.35, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2623: eta = -1.35, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2624: eta = -1.45, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2625: eta = -1.45, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2626: eta = -1.45, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2627: eta = -1.45, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2628: eta = -1.45, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2629: eta = -1.45, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2630: eta = -1.45, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2631: eta = -1.45, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2632: eta = -1.45, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2633: eta = -1.45, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2634: eta = -1.45, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2635: eta = -1.45, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2636: eta = -1.45, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2637: eta = -1.45, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2638: eta = -1.45, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2639: eta = -1.45, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2640: eta = -1.45, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2641: eta = -1.45, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2642: eta = -1.45, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2643: eta = -1.45, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2644: eta = -1.45, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2645: eta = -1.45, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2646: eta = -1.45, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2647: eta = -1.45, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2648: eta = -1.45, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2649: eta = -1.45, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2650: eta = -1.45, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2651: eta = -1.45, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2652: eta = -1.45, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2653: eta = -1.45, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2654: eta = -1.45, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2655: eta = -1.45, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2656: eta = -1.45, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2657: eta = -1.45, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2658: eta = -1.45, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2659: eta = -1.45, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2660: eta = -1.45, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2661: eta = -1.45, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2662: eta = -1.45, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2663: eta = -1.45, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2664: eta = -1.45, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2665: eta = -1.45, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2666: eta = -1.45, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2667: eta = -1.45, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2668: eta = -1.45, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2669: eta = -1.45, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2670: eta = -1.45, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2671: eta = -1.45, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2672: eta = -1.45, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2673: eta = -1.45, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2674: eta = -1.45, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2675: eta = -1.45, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2676: eta = -1.45, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2677: eta = -1.45, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2678: eta = -1.45, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2679: eta = -1.45, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2680: eta = -1.45, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2681: eta = -1.45, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2682: eta = -1.45, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2683: eta = -1.45, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2684: eta = -1.45, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2685: eta = -1.45, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2686: eta = -1.45, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2687: eta = -1.45, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 2688: eta = -1.55, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31744 (6), -tower 2689: eta = -1.55, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31745 (6), -tower 2690: eta = -1.55, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31746 (6), -tower 2691: eta = -1.55, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 450.69 - sampling = 1, 1 SCIndices: 31747 (6), -tower 2692: eta = -1.55, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31748 (6), -tower 2693: eta = -1.55, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 257.844 - sampling = 1, 1 SCIndices: 31749 (6), -tower 2694: eta = -1.55, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 316.74 - sampling = 1, 1 SCIndices: 31750 (6), -tower 2695: eta = -1.55, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31751 (6), -tower 2696: eta = -1.55, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31752 (6), -tower 2697: eta = -1.55, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31753 (6), -tower 2698: eta = -1.55, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 540.421 - sampling = 1, 1 SCIndices: 31754 (6), -tower 2699: eta = -1.55, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31755 (6), -tower 2700: eta = -1.55, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 1317.38 - sampling = 1, 1 SCIndices: 31756 (6), -tower 2701: eta = -1.55, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 371.486 - sampling = 1, 1 SCIndices: 31757 (6), -tower 2702: eta = -1.55, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31758 (6), -tower 2703: eta = -1.55, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 696.19 - sampling = 1, 1 SCIndices: 31759 (6), -tower 2704: eta = -1.55, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 504.233 - sampling = 1, 1 SCIndices: 31760 (6), -tower 2705: eta = -1.55, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31761 (6), -tower 2706: eta = -1.55, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 504.233 - sampling = 1, 1 SCIndices: 31762 (6), -tower 2707: eta = -1.55, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 721.542 - sampling = 1, 1 SCIndices: 31763 (6), -tower 2708: eta = -1.55, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31764 (6), -tower 2709: eta = -1.55, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31765 (6), -tower 2710: eta = -1.55, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31766 (6), -tower 2711: eta = -1.55, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31767 (6), -tower 2712: eta = -1.55, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31768 (6), -tower 2713: eta = -1.55, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 450.69 - sampling = 1, 1 SCIndices: 31769 (6), -tower 2714: eta = -1.55, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31770 (6), -tower 2715: eta = -1.55, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31771 (6), -tower 2716: eta = -1.55, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31772 (6), -tower 2717: eta = -1.55, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 484.298 - sampling = 1, 1 SCIndices: 31773 (6), -tower 2718: eta = -1.55, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 15.8393 - sampling = 1, 1 SCIndices: 31774 (6), -tower 2719: eta = -1.55, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31775 (6), -tower 2720: eta = -1.55, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31776 (6), -tower 2721: eta = -1.55, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31777 (6), -tower 2722: eta = -1.55, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = -8.73666 - sampling = 1, 1 SCIndices: 31778 (6), -tower 2723: eta = -1.55, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31779 (6), -tower 2724: eta = -1.55, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31780 (6), -tower 2725: eta = -1.55, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31781 (6), -tower 2726: eta = -1.55, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31782 (6), -tower 2727: eta = -1.55, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31783 (6), -tower 2728: eta = -1.55, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 405.43 - sampling = 1, 1 SCIndices: 31784 (6), -tower 2729: eta = -1.55, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31785 (6), -tower 2730: eta = -1.55, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31786 (6), -tower 2731: eta = -1.55, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31787 (6), -tower 2732: eta = -1.55, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31788 (6), -tower 2733: eta = -1.55, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31789 (6), -tower 2734: eta = -1.55, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31790 (6), -tower 2735: eta = -1.55, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31791 (6), -tower 2736: eta = -1.55, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31792 (6), -tower 2737: eta = -1.55, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 494.198 - sampling = 1, 1 SCIndices: 31793 (6), -tower 2738: eta = -1.55, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31794 (6), -tower 2739: eta = -1.55, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31795 (6), -tower 2740: eta = -1.55, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 177.571 - sampling = 1, 1 SCIndices: 31796 (6), -tower 2741: eta = -1.55, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 160.517 - sampling = 1, 1 SCIndices: 31797 (6), -tower 2742: eta = -1.55, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31798 (6), -tower 2743: eta = -1.55, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 82.034 - sampling = 1, 1 SCIndices: 31799 (6), -tower 2744: eta = -1.55, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31800 (6), -tower 2745: eta = -1.55, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31801 (6), -tower 2746: eta = -1.55, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31802 (6), -tower 2747: eta = -1.55, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31803 (6), -tower 2748: eta = -1.55, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31804 (6), -tower 2749: eta = -1.55, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31805 (6), -tower 2750: eta = -1.55, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31806 (6), -tower 2751: eta = -1.55, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 324.207 - sampling = 1, 1 SCIndices: 31807 (6), -tower 2752: eta = -1.65, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31808 (6), -tower 2753: eta = -1.65, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31809 (6), -tower 2754: eta = -1.65, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31810 (6), -tower 2755: eta = -1.65, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31811 (6), -tower 2756: eta = -1.65, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31812 (6), -tower 2757: eta = -1.65, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31813 (6), -tower 2758: eta = -1.65, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31814 (6), -tower 2759: eta = -1.65, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31815 (6), -tower 2760: eta = -1.65, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31816 (6), -tower 2761: eta = -1.65, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31817 (6), -tower 2762: eta = -1.65, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31818 (6), -tower 2763: eta = -1.65, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31819 (6), -tower 2764: eta = -1.65, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31820 (6), -tower 2765: eta = -1.65, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 842.731 - sampling = 1, 1 SCIndices: 31821 (6), -tower 2766: eta = -1.65, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31822 (6), -tower 2767: eta = -1.65, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 441.712 - sampling = 1, 1 SCIndices: 31823 (6), -tower 2768: eta = -1.65, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31824 (6), -tower 2769: eta = -1.65, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31825 (6), -tower 2770: eta = -1.65, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31826 (6), -tower 2771: eta = -1.65, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31827 (6), -tower 2772: eta = -1.65, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31828 (6), -tower 2773: eta = -1.65, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31829 (6), -tower 2774: eta = -1.65, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31830 (6), -tower 2775: eta = -1.65, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 507.515 - sampling = 1, 1 SCIndices: 31831 (6), -tower 2776: eta = -1.65, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31832 (6), -tower 2777: eta = -1.65, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31833 (6), -tower 2778: eta = -1.65, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31834 (6), -tower 2779: eta = -1.65, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 808.708 - sampling = 1, 1 SCIndices: 31835 (6), -tower 2780: eta = -1.65, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31836 (6), -tower 2781: eta = -1.65, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31837 (6), -tower 2782: eta = -1.65, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 687.778 - sampling = 1, 1 SCIndices: 31838 (6), -tower 2783: eta = -1.65, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31839 (6), -tower 2784: eta = -1.65, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31840 (6), -tower 2785: eta = -1.65, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31841 (6), -tower 2786: eta = -1.65, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 928.249 - sampling = 1, 1 SCIndices: 31842 (6), -tower 2787: eta = -1.65, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31843 (6), -tower 2788: eta = -1.65, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 606.838 - sampling = 1, 1 SCIndices: 31844 (6), -tower 2789: eta = -1.65, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 634.972 - sampling = 1, 1 SCIndices: 31845 (6), -tower 2790: eta = -1.65, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31846 (6), -tower 2791: eta = -1.65, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31847 (6), -tower 2792: eta = -1.65, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31848 (6), -tower 2793: eta = -1.65, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31849 (6), -tower 2794: eta = -1.65, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 1227.95 - sampling = 1, 1 SCIndices: 31850 (6), -tower 2795: eta = -1.65, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 269.085 - sampling = 1, 1 SCIndices: 31851 (6), -tower 2796: eta = -1.65, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 288.888 - sampling = 1, 1 SCIndices: 31852 (6), -tower 2797: eta = -1.65, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31853 (6), -tower 2798: eta = -1.65, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31854 (6), -tower 2799: eta = -1.65, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31855 (6), -tower 2800: eta = -1.65, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = -133.89 - sampling = 1, 1 SCIndices: 31856 (6), -tower 2801: eta = -1.65, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 718.342 - sampling = 1, 1 SCIndices: 31857 (6), -tower 2802: eta = -1.65, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31858 (6), -tower 2803: eta = -1.65, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31859 (6), -tower 2804: eta = -1.65, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31860 (6), -tower 2805: eta = -1.65, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31861 (6), -tower 2806: eta = -1.65, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 478.567 - sampling = 1, 1 SCIndices: 31862 (6), -tower 2807: eta = -1.65, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31863 (6), -tower 2808: eta = -1.65, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31864 (7), -tower 2809: eta = -1.65, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31865 (7), -tower 2810: eta = -1.65, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 634.972 - sampling = 1, 1 SCIndices: 31866 (7), -tower 2811: eta = -1.65, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31867 (7), -tower 2812: eta = -1.65, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31868 (7), -tower 2813: eta = -1.65, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31869 (7), -tower 2814: eta = -1.65, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 419.667 - sampling = 1, 1 SCIndices: 31870 (7), -tower 2815: eta = -1.65, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 782.159 - sampling = 1, 1 SCIndices: 31871 (7), -tower 2816: eta = -1.75, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31872 (7), -tower 2817: eta = -1.75, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 838.791 - sampling = 1, 1 SCIndices: 31873 (7), -tower 2818: eta = -1.75, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31874 (7), -tower 2819: eta = -1.75, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31875 (7), -tower 2820: eta = -1.75, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31876 (7), -tower 2821: eta = -1.75, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = -137.298 - sampling = 1, 1 SCIndices: 31877 (7), -tower 2822: eta = -1.75, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31878 (7), -tower 2823: eta = -1.75, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31879 (7), -tower 2824: eta = -1.75, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31880 (7), -tower 2825: eta = -1.75, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 312.042 - sampling = 1, 1 SCIndices: 31881 (7), -tower 2826: eta = -1.75, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31882 (7), -tower 2827: eta = -1.75, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31883 (7), -tower 2828: eta = -1.75, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31884 (7), -tower 2829: eta = -1.75, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31885 (7), -tower 2830: eta = -1.75, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31886 (7), -tower 2831: eta = -1.75, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 1118.45 - sampling = 1, 1 SCIndices: 31887 (7), -tower 2832: eta = -1.75, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 1296.75 - sampling = 1, 1 SCIndices: 31888 (7), -tower 2833: eta = -1.75, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 773.882 - sampling = 1, 1 SCIndices: 31889 (7), -tower 2834: eta = -1.75, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31890 (7), -tower 2835: eta = -1.75, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31891 (7), -tower 2836: eta = -1.75, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31892 (7), -tower 2837: eta = -1.75, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31893 (7), -tower 2838: eta = -1.75, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31894 (7), -tower 2839: eta = -1.75, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 453.355 - sampling = 1, 1 SCIndices: 31895 (7), -tower 2840: eta = -1.75, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 471.278 - sampling = 1, 1 SCIndices: 31896 (4), -tower 2841: eta = -1.75, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 724.435 - sampling = 1, 1 SCIndices: 31897 (4), -tower 2842: eta = -1.75, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31898 (4), -tower 2843: eta = -1.75, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31899 (4), -tower 2844: eta = -1.75, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31900 (4), -tower 2845: eta = -1.75, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31901 (4), -tower 2846: eta = -1.75, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 671.378 - sampling = 1, 1 SCIndices: 31902 (4), -tower 2847: eta = -1.75, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 1473.56 - sampling = 1, 1 SCIndices: 31903 (4), -tower 2848: eta = -1.75, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31904 (5), -tower 2849: eta = -1.75, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31905 (5), -tower 2850: eta = -1.75, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 201.063 - sampling = 1, 1 SCIndices: 31906 (5), -tower 2851: eta = -1.75, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31907 (5), -tower 2852: eta = -1.75, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31908 (5), -tower 2853: eta = -1.75, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31909 (5), -tower 2854: eta = -1.75, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = -21.6136 - sampling = 1, 1 SCIndices: 31910 (5), -tower 2855: eta = -1.75, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 914.273 - sampling = 1, 1 SCIndices: 31911 (5), -tower 2856: eta = -1.75, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31912 (5), -tower 2857: eta = -1.75, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 1086.46 - sampling = 1, 1 SCIndices: 31913 (5), -tower 2858: eta = -1.75, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 557.788 - sampling = 1, 1 SCIndices: 31914 (5), -tower 2859: eta = -1.75, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31915 (5), -tower 2860: eta = -1.75, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31916 (5), -tower 2861: eta = -1.75, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31917 (5), -tower 2862: eta = -1.75, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31918 (5), -tower 2863: eta = -1.75, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 3671.25 - sampling = 1, 1 SCIndices: 31919 (5), -tower 2864: eta = -1.75, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31920 (5), -tower 2865: eta = -1.75, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31921 (5), -tower 2866: eta = -1.75, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31922 (5), -tower 2867: eta = -1.75, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31923 (5), -tower 2868: eta = -1.75, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31924 (5), -tower 2869: eta = -1.75, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31925 (5), -tower 2870: eta = -1.75, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31926 (5), -tower 2871: eta = -1.75, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31927 (5), -tower 2872: eta = -1.75, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31928 (5), -tower 2873: eta = -1.75, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 347.807 - sampling = 1, 1 SCIndices: 31929 (5), -tower 2874: eta = -1.75, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31930 (5), -tower 2875: eta = -1.75, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31931 (5), -tower 2876: eta = -1.75, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31932 (5), -tower 2877: eta = -1.75, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31933 (5), -tower 2878: eta = -1.75, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31934 (5), -tower 2879: eta = -1.75, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31935 (5), -tower 2880: eta = -1.85, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31936 (5), -tower 2881: eta = -1.85, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 475.642 - sampling = 1, 1 SCIndices: 31937 (5), -tower 2882: eta = -1.85, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31938 (5), -tower 2883: eta = -1.85, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31939 (5), -tower 2884: eta = -1.85, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 793.571 - sampling = 1, 1 SCIndices: 31940 (5), -tower 2885: eta = -1.85, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31941 (5), -tower 2886: eta = -1.85, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31942 (5), -tower 2887: eta = -1.85, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31943 (5), -tower 2888: eta = -1.85, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 280.668 - sampling = 1, 1 SCIndices: 31944 (5), -tower 2889: eta = -1.85, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31945 (5), -tower 2890: eta = -1.85, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31946 (5), -tower 2891: eta = -1.85, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31947 (5), -tower 2892: eta = -1.85, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31948 (5), -tower 2893: eta = -1.85, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31949 (5), -tower 2894: eta = -1.85, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31950 (5), -tower 2895: eta = -1.85, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31951 (5), -tower 2896: eta = -1.85, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31952 (5), -tower 2897: eta = -1.85, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 319.703 - sampling = 1, 1 SCIndices: 31953 (5), -tower 2898: eta = -1.85, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 540.315 - sampling = 1, 1 SCIndices: 31954 (5), -tower 2899: eta = -1.85, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31955 (5), -tower 2900: eta = -1.85, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 1421.18 - sampling = 1, 1 SCIndices: 31956 (5), -tower 2901: eta = -1.85, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 825.1 - sampling = 1, 1 SCIndices: 31957 (5), -tower 2902: eta = -1.85, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31958 (5), -tower 2903: eta = -1.85, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31959 (5), -tower 2904: eta = -1.85, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 799.811 - sampling = 1, 1 SCIndices: 31960 (5), -tower 2905: eta = -1.85, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31961 (5), -tower 2906: eta = -1.85, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31962 (5), -tower 2907: eta = -1.85, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 559.813 - sampling = 1, 1 SCIndices: 31963 (5), -tower 2908: eta = -1.85, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31964 (5), -tower 2909: eta = -1.85, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31965 (5), -tower 2910: eta = -1.85, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31966 (5), -tower 2911: eta = -1.85, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31967 (5), -tower 2912: eta = -1.85, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31968 (5), -tower 2913: eta = -1.85, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31969 (5), -tower 2914: eta = -1.85, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31970 (5), -tower 2915: eta = -1.85, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 336.981 - sampling = 1, 1 SCIndices: 31971 (5), -tower 2916: eta = -1.85, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 147.926 - sampling = 1, 1 SCIndices: 31972 (5), -tower 2917: eta = -1.85, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = -93.475 - sampling = 1, 1 SCIndices: 31973 (5), -tower 2918: eta = -1.85, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31974 (5), -tower 2919: eta = -1.85, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 466.848 - sampling = 1, 1 SCIndices: 31975 (5), -tower 2920: eta = -1.85, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 812.39 - sampling = 1, 1 SCIndices: 31976 (5), -tower 2921: eta = -1.85, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31977 (5), -tower 2922: eta = -1.85, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 1139.29 - sampling = 1, 1 SCIndices: 31978 (5), -tower 2923: eta = -1.85, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31979 (5), -tower 2924: eta = -1.85, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31980 (5), -tower 2925: eta = -1.85, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31981 (5), -tower 2926: eta = -1.85, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31982 (5), -tower 2927: eta = -1.85, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 1331.35 - sampling = 1, 1 SCIndices: 31983 (5), -tower 2928: eta = -1.85, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31984 (5), -tower 2929: eta = -1.85, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 416.348 - sampling = 1, 1 SCIndices: 31985 (5), -tower 2930: eta = -1.85, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31986 (5), -tower 2931: eta = -1.85, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31987 (5), -tower 2932: eta = -1.85, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 358.522 - sampling = 1, 1 SCIndices: 31988 (5), -tower 2933: eta = -1.85, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = -354.87 - sampling = 1, 1 SCIndices: 31989 (5), -tower 2934: eta = -1.85, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31990 (5), -tower 2935: eta = -1.85, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31991 (5), -tower 2936: eta = -1.85, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31992 (5), -tower 2937: eta = -1.85, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31993 (5), -tower 2938: eta = -1.85, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31994 (5), -tower 2939: eta = -1.85, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 669.91 - sampling = 1, 1 SCIndices: 31995 (5), -tower 2940: eta = -1.85, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31996 (5), -tower 2941: eta = -1.85, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31997 (5), -tower 2942: eta = -1.85, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 31998 (5), -tower 2943: eta = -1.85, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 1139.29 - sampling = 1, 1 SCIndices: 31999 (5), -tower 2944: eta = -1.95, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32000 (5), -tower 2945: eta = -1.95, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32001 (5), -tower 2946: eta = -1.95, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32002 (5), -tower 2947: eta = -1.95, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 329.11 - sampling = 1, 1 SCIndices: 32003 (5), -tower 2948: eta = -1.95, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32004 (5), -tower 2949: eta = -1.95, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32005 (5), -tower 2950: eta = -1.95, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32006 (5), -tower 2951: eta = -1.95, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32007 (5), -tower 2952: eta = -1.95, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32008 (5), -tower 2953: eta = -1.95, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32009 (5), -tower 2954: eta = -1.95, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32010 (5), -tower 2955: eta = -1.95, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 278.331 - sampling = 1, 1 SCIndices: 32011 (5), -tower 2956: eta = -1.95, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 118.478 - sampling = 1, 1 SCIndices: 32012 (5), -tower 2957: eta = -1.95, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32013 (5), -tower 2958: eta = -1.95, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 930.959 - sampling = 1, 1 SCIndices: 32014 (5), -tower 2959: eta = -1.95, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 149.724 - sampling = 1, 1 SCIndices: 32015 (5), -tower 2960: eta = -1.95, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32016 (5), -tower 2961: eta = -1.95, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32017 (5), -tower 2962: eta = -1.95, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32018 (5), -tower 2963: eta = -1.95, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32019 (5), -tower 2964: eta = -1.95, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32020 (5), -tower 2965: eta = -1.95, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32021 (5), -tower 2966: eta = -1.95, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 743.933 - sampling = 1, 1 SCIndices: 32022 (5), -tower 2967: eta = -1.95, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32023 (5), -tower 2968: eta = -1.95, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 1131.62 - sampling = 1, 1 SCIndices: 32024 (5), -tower 2969: eta = -1.95, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32025 (5), -tower 2970: eta = -1.95, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32026 (5), -tower 2971: eta = -1.95, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32027 (5), -tower 2972: eta = -1.95, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 263.607 - sampling = 1, 1 SCIndices: 32028 (5), -tower 2973: eta = -1.95, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32029 (5), -tower 2974: eta = -1.95, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32030 (5), -tower 2975: eta = -1.95, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32031 (5), -tower 2976: eta = -1.95, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32032 (5), -tower 2977: eta = -1.95, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32033 (5), -tower 2978: eta = -1.95, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32034 (5), -tower 2979: eta = -1.95, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32035 (5), -tower 2980: eta = -1.95, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 149.724 - sampling = 1, 1 SCIndices: 32036 (5), -tower 2981: eta = -1.95, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32037 (5), -tower 2982: eta = -1.95, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32038 (5), -tower 2983: eta = -1.95, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 709.822 - sampling = 1, 1 SCIndices: 32039 (5), -tower 2984: eta = -1.95, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 252.21 - sampling = 1, 1 SCIndices: 32040 (5), -tower 2985: eta = -1.95, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32041 (5), -tower 2986: eta = -1.95, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32042 (5), -tower 2987: eta = -1.95, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32043 (5), -tower 2988: eta = -1.95, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32044 (5), -tower 2989: eta = -1.95, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 2114.65 - sampling = 1, 1 SCIndices: 32045 (5), -tower 2990: eta = -1.95, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32046 (5), -tower 2991: eta = -1.95, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32047 (5), -tower 2992: eta = -1.95, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32048 (6), -tower 2993: eta = -1.95, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32049 (6), -tower 2994: eta = -1.95, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 281.34 - sampling = 1, 1 SCIndices: 32050 (6), -tower 2995: eta = -1.95, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32051 (6), -tower 2996: eta = -1.95, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32052 (6), -tower 2997: eta = -1.95, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32053 (6), -tower 2998: eta = -1.95, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32054 (6), -tower 2999: eta = -1.95, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32055 (6), -tower 3000: eta = -1.95, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32056 (6), -tower 3001: eta = -1.95, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32057 (6), -tower 3002: eta = -1.95, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32058 (6), -tower 3003: eta = -1.95, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 495.344 - sampling = 1, 1 SCIndices: 32059 (6), -tower 3004: eta = -1.95, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32060 (6), -tower 3005: eta = -1.95, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32061 (6), -tower 3006: eta = -1.95, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32062 (6), -tower 3007: eta = -1.95, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 660.636 - sampling = 1, 1 SCIndices: 32063 (6), -tower 3008: eta = -2.05, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32064 (6), -tower 3009: eta = -2.05, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32065 (6), -tower 3010: eta = -2.05, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32066 (6), -tower 3011: eta = -2.05, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 55.9698 - sampling = 1, 1 SCIndices: 32067 (6), -tower 3012: eta = -2.05, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32068 (6), -tower 3013: eta = -2.05, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 206.813 - sampling = 1, 1 SCIndices: 32069 (6), -tower 3014: eta = -2.05, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 97.147 - sampling = 1, 1 SCIndices: 32070 (6), -tower 3015: eta = -2.05, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = -34.5709 - sampling = 1, 1 SCIndices: 32071 (6), -tower 3016: eta = -2.05, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32072 (6), -tower 3017: eta = -2.05, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32073 (6), -tower 3018: eta = -2.05, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 430.06 - sampling = 1, 1 SCIndices: 32074 (6), -tower 3019: eta = -2.05, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32075 (6), -tower 3020: eta = -2.05, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32076 (6), -tower 3021: eta = -2.05, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32077 (6), -tower 3022: eta = -2.05, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32078 (6), -tower 3023: eta = -2.05, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 629.369 - sampling = 1, 1 SCIndices: 32079 (6), -tower 3024: eta = -2.05, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32080 (6), -tower 3025: eta = -2.05, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32081 (6), -tower 3026: eta = -2.05, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32082 (6), -tower 3027: eta = -2.05, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32083 (6), -tower 3028: eta = -2.05, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32084 (6), -tower 3029: eta = -2.05, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32085 (6), -tower 3030: eta = -2.05, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32086 (6), -tower 3031: eta = -2.05, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32087 (6), -tower 3032: eta = -2.05, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32088 (6), -tower 3033: eta = -2.05, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32089 (6), -tower 3034: eta = -2.05, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32090 (6), -tower 3035: eta = -2.05, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32091 (6), -tower 3036: eta = -2.05, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32092 (6), -tower 3037: eta = -2.05, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 1076.78 - sampling = 1, 1 SCIndices: 32093 (6), -tower 3038: eta = -2.05, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32094 (6), -tower 3039: eta = -2.05, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 1640.25 - sampling = 1, 1 SCIndices: 32095 (6), -tower 3040: eta = -2.05, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 734.794 - sampling = 1, 1 SCIndices: 32096 (6), -tower 3041: eta = -2.05, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32097 (6), -tower 3042: eta = -2.05, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32098 (6), -tower 3043: eta = -2.05, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32099 (6), -tower 3044: eta = -2.05, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32100 (6), -tower 3045: eta = -2.05, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32101 (6), -tower 3046: eta = -2.05, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32102 (6), -tower 3047: eta = -2.05, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32103 (6), -tower 3048: eta = -2.05, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32104 (6), -tower 3049: eta = -2.05, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32105 (6), -tower 3050: eta = -2.05, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32106 (6), -tower 3051: eta = -2.05, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32107 (6), -tower 3052: eta = -2.05, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32108 (6), -tower 3053: eta = -2.05, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32109 (6), -tower 3054: eta = -2.05, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 82.1601 - sampling = 1, 1 SCIndices: 32110 (6), -tower 3055: eta = -2.05, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32111 (6), -tower 3056: eta = -2.05, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32112 (6), -tower 3057: eta = -2.05, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32113 (6), -tower 3058: eta = -2.05, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 474.171 - sampling = 1, 1 SCIndices: 32114 (6), -tower 3059: eta = -2.05, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 585.419 - sampling = 1, 1 SCIndices: 32115 (6), -tower 3060: eta = -2.05, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32116 (6), -tower 3061: eta = -2.05, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32117 (6), -tower 3062: eta = -2.05, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32118 (6), -tower 3063: eta = -2.05, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32119 (6), -tower 3064: eta = -2.05, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32120 (6), -tower 3065: eta = -2.05, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32121 (6), -tower 3066: eta = -2.05, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32122 (6), -tower 3067: eta = -2.05, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32123 (6), -tower 3068: eta = -2.05, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32124 (6), -tower 3069: eta = -2.05, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 433.952 - sampling = 1, 1 SCIndices: 32125 (6), -tower 3070: eta = -2.05, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 327.062 - sampling = 1, 1 SCIndices: 32126 (6), -tower 3071: eta = -2.05, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 785.843 - sampling = 1, 1 SCIndices: 32127 (6), -tower 3072: eta = -2.15, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32128 (6), -tower 3073: eta = -2.15, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32129 (6), -tower 3074: eta = -2.15, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32130 (6), -tower 3075: eta = -2.15, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32131 (6), -tower 3076: eta = -2.15, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32132 (6), -tower 3077: eta = -2.15, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32133 (6), -tower 3078: eta = -2.15, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32134 (6), -tower 3079: eta = -2.15, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 247.043 - sampling = 1, 1 SCIndices: 32135 (6), -tower 3080: eta = -2.15, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32136 (6), -tower 3081: eta = -2.15, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32137 (6), -tower 3082: eta = -2.15, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 285.197 - sampling = 1, 1 SCIndices: 32138 (6), -tower 3083: eta = -2.15, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32139 (6), -tower 3084: eta = -2.15, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32140 (6), -tower 3085: eta = -2.15, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32141 (6), -tower 3086: eta = -2.15, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32142 (6), -tower 3087: eta = -2.15, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32143 (6), -tower 3088: eta = -2.15, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32144 (6), -tower 3089: eta = -2.15, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 138.653 - sampling = 1, 1 SCIndices: 32145 (6), -tower 3090: eta = -2.15, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32146 (6), -tower 3091: eta = -2.15, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32147 (6), -tower 3092: eta = -2.15, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32148 (6), -tower 3093: eta = -2.15, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32149 (6), -tower 3094: eta = -2.15, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32150 (6), -tower 3095: eta = -2.15, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32151 (6), -tower 3096: eta = -2.15, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32152 (6), -tower 3097: eta = -2.15, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32153 (6), -tower 3098: eta = -2.15, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32154 (6), -tower 3099: eta = -2.15, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32155 (6), -tower 3100: eta = -2.15, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 535.548 - sampling = 1, 1 SCIndices: 32156 (6), -tower 3101: eta = -2.15, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 1291.47 - sampling = 1, 1 SCIndices: 32157 (6), -tower 3102: eta = -2.15, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32158 (6), -tower 3103: eta = -2.15, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32159 (6), -tower 3104: eta = -2.15, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 426.517 - sampling = 1, 1 SCIndices: 32160 (6), -tower 3105: eta = -2.15, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 18.5745 - sampling = 1, 1 SCIndices: 32161 (6), -tower 3106: eta = -2.15, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32162 (6), -tower 3107: eta = -2.15, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32163 (6), -tower 3108: eta = -2.15, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32164 (6), -tower 3109: eta = -2.15, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32165 (6), -tower 3110: eta = -2.15, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 96.2217 - sampling = 1, 1 SCIndices: 32166 (6), -tower 3111: eta = -2.15, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 288.064 - sampling = 1, 1 SCIndices: 32167 (6), -tower 3112: eta = -2.15, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32168 (6), -tower 3113: eta = -2.15, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32169 (6), -tower 3114: eta = -2.15, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32170 (6), -tower 3115: eta = -2.15, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32171 (6), -tower 3116: eta = -2.15, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32172 (6), -tower 3117: eta = -2.15, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32173 (6), -tower 3118: eta = -2.15, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 229.314 - sampling = 1, 1 SCIndices: 32174 (6), -tower 3119: eta = -2.15, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 666.755 - sampling = 1, 1 SCIndices: 32175 (6), -tower 3120: eta = -2.15, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32176 (7), -tower 3121: eta = -2.15, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32177 (7), -tower 3122: eta = -2.15, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32178 (7), -tower 3123: eta = -2.15, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 468.946 - sampling = 1, 1 SCIndices: 32179 (7), -tower 3124: eta = -2.15, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32180 (7), -tower 3125: eta = -2.15, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 207.793 - sampling = 1, 1 SCIndices: 32181 (7), -tower 3126: eta = -2.15, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32182 (7), -tower 3127: eta = -2.15, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32183 (7), -tower 3128: eta = -2.15, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32184 (7), -tower 3129: eta = -2.15, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32185 (7), -tower 3130: eta = -2.15, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32186 (7), -tower 3131: eta = -2.15, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32187 (7), -tower 3132: eta = -2.15, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 376.323 - sampling = 1, 1 SCIndices: 32188 (7), -tower 3133: eta = -2.15, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 1330.97 - sampling = 1, 1 SCIndices: 32189 (7), -tower 3134: eta = -2.15, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32190 (7), -tower 3135: eta = -2.15, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32191 (7), -tower 3136: eta = -2.25, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32192 (7), -tower 3137: eta = -2.25, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32193 (7), -tower 3138: eta = -2.25, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32194 (7), -tower 3139: eta = -2.25, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32195 (7), -tower 3140: eta = -2.25, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32196 (7), -tower 3141: eta = -2.25, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32197 (7), -tower 3142: eta = -2.25, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32198 (7), -tower 3143: eta = -2.25, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32199 (7), -tower 3144: eta = -2.25, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32200 (7), -tower 3145: eta = -2.25, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32201 (7), -tower 3146: eta = -2.25, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 404.017 - sampling = 1, 1 SCIndices: 32202 (7), -tower 3147: eta = -2.25, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32203 (7), -tower 3148: eta = -2.25, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32204 (7), -tower 3149: eta = -2.25, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32205 (7), -tower 3150: eta = -2.25, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32206 (7), -tower 3151: eta = -2.25, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32207 (7), -tower 3152: eta = -2.25, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32208 (4), -tower 3153: eta = -2.25, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32209 (4), -tower 3154: eta = -2.25, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 226.417 - sampling = 1, 1 SCIndices: 32210 (4), -tower 3155: eta = -2.25, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32211 (4), -tower 3156: eta = -2.25, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 62.4556 - sampling = 1, 1 SCIndices: 32212 (4), -tower 3157: eta = -2.25, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32213 (4), -tower 3158: eta = -2.25, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32214 (4), -tower 3159: eta = -2.25, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32215 (4), -tower 3160: eta = -2.25, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32216 (5), -tower 3161: eta = -2.25, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32217 (5), -tower 3162: eta = -2.25, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32218 (5), -tower 3163: eta = -2.25, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32219 (5), -tower 3164: eta = -2.25, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32220 (5), -tower 3165: eta = -2.25, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32221 (5), -tower 3166: eta = -2.25, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 184.292 - sampling = 1, 1 SCIndices: 32222 (5), -tower 3167: eta = -2.25, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32223 (5), -tower 3168: eta = -2.25, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 203.526 - sampling = 1, 1 SCIndices: 32224 (5), -tower 3169: eta = -2.25, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32225 (5), -tower 3170: eta = -2.25, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 685.66 - sampling = 1, 1 SCIndices: 32226 (5), -tower 3171: eta = -2.25, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32227 (5), -tower 3172: eta = -2.25, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32228 (5), -tower 3173: eta = -2.25, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 274.517 - sampling = 1, 1 SCIndices: 32229 (5), -tower 3174: eta = -2.25, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32230 (5), -tower 3175: eta = -2.25, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 226.417 - sampling = 1, 1 SCIndices: 32231 (5), -tower 3176: eta = -2.25, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32232 (5), -tower 3177: eta = -2.25, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32233 (5), -tower 3178: eta = -2.25, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32234 (5), -tower 3179: eta = -2.25, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32235 (5), -tower 3180: eta = -2.25, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32236 (5), -tower 3181: eta = -2.25, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32237 (5), -tower 3182: eta = -2.25, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32238 (5), -tower 3183: eta = -2.25, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 341.304 - sampling = 1, 1 SCIndices: 32239 (5), -tower 3184: eta = -2.25, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32240 (5), -tower 3185: eta = -2.25, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32241 (5), -tower 3186: eta = -2.25, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 332.038 - sampling = 1, 1 SCIndices: 32242 (5), -tower 3187: eta = -2.25, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32243 (5), -tower 3188: eta = -2.25, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32244 (5), -tower 3189: eta = -2.25, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 70.8425 - sampling = 1, 1 SCIndices: 32245 (5), -tower 3190: eta = -2.25, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32246 (5), -tower 3191: eta = -2.25, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32247 (5), -tower 3192: eta = -2.25, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32248 (5), -tower 3193: eta = -2.25, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32249 (5), -tower 3194: eta = -2.25, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32250 (5), -tower 3195: eta = -2.25, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32251 (5), -tower 3196: eta = -2.25, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32252 (5), -tower 3197: eta = -2.25, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32253 (5), -tower 3198: eta = -2.25, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32254 (5), -tower 3199: eta = -2.25, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32255 (5), -tower 3200: eta = -2.35, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32256 (5), -tower 3201: eta = -2.35, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 266.369 - sampling = 1, 1 SCIndices: 32257 (5), -tower 3202: eta = -2.35, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 73.5575 - sampling = 1, 1 SCIndices: 32258 (5), -tower 3203: eta = -2.35, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 101.423 - sampling = 1, 1 SCIndices: 32259 (5), -tower 3204: eta = -2.35, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32260 (5), -tower 3205: eta = -2.35, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32261 (5), -tower 3206: eta = -2.35, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32262 (5), -tower 3207: eta = -2.35, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 180.535 - sampling = 1, 1 SCIndices: 32263 (5), -tower 3208: eta = -2.35, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32264 (5), -tower 3209: eta = -2.35, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32265 (5), -tower 3210: eta = -2.35, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 556.524 - sampling = 1, 1 SCIndices: 32266 (5), -tower 3211: eta = -2.35, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32267 (5), -tower 3212: eta = -2.35, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32268 (5), -tower 3213: eta = -2.35, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32269 (5), -tower 3214: eta = -2.35, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32270 (5), -tower 3215: eta = -2.35, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 127.576 - sampling = 1, 1 SCIndices: 32271 (5), -tower 3216: eta = -2.35, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32272 (5), -tower 3217: eta = -2.35, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32273 (5), -tower 3218: eta = -2.35, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 577.683 - sampling = 1, 1 SCIndices: 32274 (5), -tower 3219: eta = -2.35, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 76.8589 - sampling = 1, 1 SCIndices: 32275 (5), -tower 3220: eta = -2.35, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32276 (5), -tower 3221: eta = -2.35, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32277 (5), -tower 3222: eta = -2.35, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32278 (5), -tower 3223: eta = -2.35, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32279 (5), -tower 3224: eta = -2.35, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32280 (5), -tower 3225: eta = -2.35, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32281 (5), -tower 3226: eta = -2.35, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32282 (5), -tower 3227: eta = -2.35, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32283 (5), -tower 3228: eta = -2.35, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = -57.5357 - sampling = 1, 1 SCIndices: 32284 (5), -tower 3229: eta = -2.35, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 415.774 - sampling = 1, 1 SCIndices: 32285 (5), -tower 3230: eta = -2.35, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32286 (5), -tower 3231: eta = -2.35, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32287 (5), -tower 3232: eta = -2.35, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32288 (5), -tower 3233: eta = -2.35, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32289 (5), -tower 3234: eta = -2.35, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32290 (5), -tower 3235: eta = -2.35, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 222.941 - sampling = 1, 1 SCIndices: 32291 (5), -tower 3236: eta = -2.35, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32292 (5), -tower 3237: eta = -2.35, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32293 (5), -tower 3238: eta = -2.35, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32294 (5), -tower 3239: eta = -2.35, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32295 (5), -tower 3240: eta = -2.35, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 92.3076 - sampling = 1, 1 SCIndices: 32296 (5), -tower 3241: eta = -2.35, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32297 (5), -tower 3242: eta = -2.35, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32298 (5), -tower 3243: eta = -2.35, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 372.628 - sampling = 1, 1 SCIndices: 32299 (5), -tower 3244: eta = -2.35, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32300 (5), -tower 3245: eta = -2.35, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32301 (5), -tower 3246: eta = -2.35, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32302 (5), -tower 3247: eta = -2.35, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32303 (5), -tower 3248: eta = -2.35, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 626.104 - sampling = 1, 1 SCIndices: 32304 (5), -tower 3249: eta = -2.35, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32305 (5), -tower 3250: eta = -2.35, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32306 (5), -tower 3251: eta = -2.35, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32307 (5), -tower 3252: eta = -2.35, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32308 (5), -tower 3253: eta = -2.35, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32309 (5), -tower 3254: eta = -2.35, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32310 (5), -tower 3255: eta = -2.35, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 157.878 - sampling = 1, 1 SCIndices: 32311 (5), -tower 3256: eta = -2.35, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32312 (5), -tower 3257: eta = -2.35, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 440.329 - sampling = 1, 1 SCIndices: 32313 (5), -tower 3258: eta = -2.35, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 408.931 - sampling = 1, 1 SCIndices: 32314 (5), -tower 3259: eta = -2.35, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32315 (5), -tower 3260: eta = -2.35, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32316 (5), -tower 3261: eta = -2.35, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32317 (5), -tower 3262: eta = -2.35, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32318 (5), -tower 3263: eta = -2.35, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32319 (5), -tower 3264: eta = -2.45, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32320 (5), -tower 3265: eta = -2.45, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32321 (5), -tower 3266: eta = -2.45, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 463.827 - sampling = 1, 1 SCIndices: 32322 (5), -tower 3267: eta = -2.45, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32323 (5), -tower 3268: eta = -2.45, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32324 (5), -tower 3269: eta = -2.45, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32325 (5), -tower 3270: eta = -2.45, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 280.407 - sampling = 1, 1 SCIndices: 32326 (5), -tower 3271: eta = -2.45, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32327 (5), -tower 3272: eta = -2.45, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32328 (5), -tower 3273: eta = -2.45, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32329 (5), -tower 3274: eta = -2.45, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 6.88959 - sampling = 1, 1 SCIndices: 32330 (5), -tower 3275: eta = -2.45, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 96.8715 - sampling = 1, 1 SCIndices: 32331 (5), -tower 3276: eta = -2.45, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 250.787 - sampling = 1, 1 SCIndices: 32332 (5), -tower 3277: eta = -2.45, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32333 (5), -tower 3278: eta = -2.45, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32334 (5), -tower 3279: eta = -2.45, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32335 (5), -tower 3280: eta = -2.45, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32336 (5), -tower 3281: eta = -2.45, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32337 (5), -tower 3282: eta = -2.45, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32338 (5), -tower 3283: eta = -2.45, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 579.789 - sampling = 1, 1 SCIndices: 32339 (5), -tower 3284: eta = -2.45, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32340 (5), -tower 3285: eta = -2.45, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 288.16 - sampling = 1, 1 SCIndices: 32341 (5), -tower 3286: eta = -2.45, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 474.656 - sampling = 1, 1 SCIndices: 32342 (5), -tower 3287: eta = -2.45, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32343 (5), -tower 3288: eta = -2.45, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32344 (5), -tower 3289: eta = -2.45, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32345 (5), -tower 3290: eta = -2.45, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32346 (5), -tower 3291: eta = -2.45, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32347 (5), -tower 3292: eta = -2.45, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32348 (5), -tower 3293: eta = -2.45, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32349 (5), -tower 3294: eta = -2.45, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32350 (5), -tower 3295: eta = -2.45, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32351 (5), -tower 3296: eta = -2.45, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32352 (5), -tower 3297: eta = -2.45, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32353 (5), -tower 3298: eta = -2.45, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32354 (5), -tower 3299: eta = -2.45, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32355 (5), -tower 3300: eta = -2.45, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 212.507 - sampling = 1, 1 SCIndices: 32356 (5), -tower 3301: eta = -2.45, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 531.331 - sampling = 1, 1 SCIndices: 32357 (5), -tower 3302: eta = -2.45, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32358 (5), -tower 3303: eta = -2.45, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32359 (5), -tower 3304: eta = -2.45, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32360 (6), -tower 3305: eta = -2.45, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32361 (6), -tower 3306: eta = -2.45, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32362 (6), -tower 3307: eta = -2.45, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32363 (6), -tower 3308: eta = -2.45, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32364 (6), -tower 3309: eta = -2.45, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32365 (6), -tower 3310: eta = -2.45, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 298.718 - sampling = 1, 1 SCIndices: 32366 (6), -tower 3311: eta = -2.45, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32367 (6), -tower 3312: eta = -2.45, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32368 (6), -tower 3313: eta = -2.45, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32369 (6), -tower 3314: eta = -2.45, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32370 (6), -tower 3315: eta = -2.45, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32371 (6), -tower 3316: eta = -2.45, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32372 (6), -tower 3317: eta = -2.45, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32373 (6), -tower 3318: eta = -2.45, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32374 (6), -tower 3319: eta = -2.45, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32375 (6), -tower 3320: eta = -2.45, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32376 (6), -tower 3321: eta = -2.45, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32377 (6), -tower 3322: eta = -2.45, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32378 (6), -tower 3323: eta = -2.45, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32379 (6), -tower 3324: eta = -2.45, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32380 (6), -tower 3325: eta = -2.45, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 41.3125 - sampling = 1, 1 SCIndices: 32381 (6), -tower 3326: eta = -2.45, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 453.165 - sampling = 1, 1 SCIndices: 32382 (6), -tower 3327: eta = -2.45, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32383 (6), -tower 3328: eta = -2.6, phi = 0.0981748, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32384 (6), -tower 3329: eta = -2.6, phi = 0.294524, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32385 (6), -tower 3330: eta = -2.6, phi = 0.490874, deta = 0.2, dphi = 0.19635, et = 1111.43 - sampling = 1, 1 SCIndices: 32386 (6), -tower 3331: eta = -2.6, phi = 0.687223, deta = 0.2, dphi = 0.19635, et = 227.531 - sampling = 1, 1 SCIndices: 32387 (6), -tower 3332: eta = -2.6, phi = 0.883573, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32388 (6), -tower 3333: eta = -2.6, phi = 1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32389 (6), -tower 3334: eta = -2.6, phi = 1.27627, deta = 0.2, dphi = 0.19635, et = 1643.69 - sampling = 1, 1 SCIndices: 32390 (6), -tower 3335: eta = -2.6, phi = 1.47262, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32391 (6), -tower 3336: eta = -2.6, phi = 1.66897, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32392 (6), -tower 3337: eta = -2.6, phi = 1.86532, deta = 0.2, dphi = 0.19635, et = 1353.27 - sampling = 1, 1 SCIndices: 32393 (6), -tower 3338: eta = -2.6, phi = 2.06167, deta = 0.2, dphi = 0.19635, et = 1318.72 - sampling = 1, 1 SCIndices: 32394 (6), -tower 3339: eta = -2.6, phi = 2.25802, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32395 (6), -tower 3340: eta = -2.6, phi = 2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32396 (6), -tower 3341: eta = -2.6, phi = 2.65072, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32397 (6), -tower 3342: eta = -2.6, phi = 2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32398 (6), -tower 3343: eta = -2.6, phi = 3.04342, deta = 0.2, dphi = 0.19635, et = 2780.17 - sampling = 1, 1 SCIndices: 32399 (6), -tower 3344: eta = -2.6, phi = -3.04342, deta = 0.2, dphi = 0.19635, et = 982.306 - sampling = 1, 1 SCIndices: 32400 (6), -tower 3345: eta = -2.6, phi = -2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32401 (6), -tower 3346: eta = -2.6, phi = -2.65072, deta = 0.2, dphi = 0.19635, et = 29.3804 - sampling = 1, 1 SCIndices: 32402 (6), -tower 3347: eta = -2.6, phi = -2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32403 (6), -tower 3348: eta = -2.6, phi = -2.25802, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32404 (6), -tower 3349: eta = -2.6, phi = -2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32405 (6), -tower 3350: eta = -2.6, phi = -1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32406 (6), -tower 3351: eta = -2.6, phi = -1.66897, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32407 (6), -tower 3352: eta = -2.6, phi = -1.47262, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32408 (6), -tower 3353: eta = -2.6, phi = -1.27627, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32409 (6), -tower 3354: eta = -2.6, phi = -1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32410 (6), -tower 3355: eta = -2.6, phi = -0.883573, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32411 (6), -tower 3356: eta = -2.6, phi = -0.687223, deta = 0.2, dphi = 0.19635, et = 1016.47 - sampling = 1, 1 SCIndices: 32412 (6), -tower 3357: eta = -2.6, phi = -0.490874, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32413 (6), -tower 3358: eta = -2.6, phi = -0.294524, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32414 (6), -tower 3359: eta = -2.6, phi = -0.0981744, deta = 0.2, dphi = 0.19635, et = 982.306 - sampling = 1, 1 SCIndices: 32415 (6), -tower 3360: eta = -2.8, phi = 0.0981748, deta = 0.2, dphi = 0.19635, et = 603.711 - sampling = 1, 1 SCIndices: 32416 (6), -tower 3361: eta = -2.8, phi = 0.294524, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32417 (6), -tower 3362: eta = -2.8, phi = 0.490874, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32418 (6), -tower 3363: eta = -2.8, phi = 0.687223, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32419 (6), -tower 3364: eta = -2.8, phi = 0.883573, deta = 0.2, dphi = 0.19635, et = 1335.06 - sampling = 1, 1 SCIndices: 32420 (6), -tower 3365: eta = -2.8, phi = 1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32421 (6), -tower 3366: eta = -2.8, phi = 1.27627, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32422 (6), -tower 3367: eta = -2.8, phi = 1.47262, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32423 (6), -tower 3368: eta = -2.8, phi = 1.66897, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32424 (6), -tower 3369: eta = -2.8, phi = 1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32425 (6), -tower 3370: eta = -2.8, phi = 2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32426 (6), -tower 3371: eta = -2.8, phi = 2.25802, deta = 0.2, dphi = 0.19635, et = 417.518 - sampling = 1, 1 SCIndices: 32427 (6), -tower 3372: eta = -2.8, phi = 2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32428 (6), -tower 3373: eta = -2.8, phi = 2.65072, deta = 0.2, dphi = 0.19635, et = 747.076 - sampling = 1, 1 SCIndices: 32429 (6), -tower 3374: eta = -2.8, phi = 2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32430 (6), -tower 3375: eta = -2.8, phi = 3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32431 (6), -tower 3376: eta = -2.8, phi = -3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32432 (6), -tower 3377: eta = -2.8, phi = -2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32433 (6), -tower 3378: eta = -2.8, phi = -2.65072, deta = 0.2, dphi = 0.19635, et = 622.956 - sampling = 1, 1 SCIndices: 32434 (6), -tower 3379: eta = -2.8, phi = -2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32435 (6), -tower 3380: eta = -2.8, phi = -2.25802, deta = 0.2, dphi = 0.19635, et = 1441.2 - sampling = 1, 1 SCIndices: 32436 (6), -tower 3381: eta = -2.8, phi = -2.06167, deta = 0.2, dphi = 0.19635, et = 1856.75 - sampling = 1, 1 SCIndices: 32437 (6), -tower 3382: eta = -2.8, phi = -1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32438 (6), -tower 3383: eta = -2.8, phi = -1.66897, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32439 (6), -tower 3384: eta = -2.8, phi = -1.47262, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32440 (6), -tower 3385: eta = -2.8, phi = -1.27627, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32441 (6), -tower 3386: eta = -2.8, phi = -1.07992, deta = 0.2, dphi = 0.19635, et = 1042.66 - sampling = 1, 1 SCIndices: 32442 (6), -tower 3387: eta = -2.8, phi = -0.883573, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32443 (6), -tower 3388: eta = -2.8, phi = -0.687223, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32444 (6), -tower 3389: eta = -2.8, phi = -0.490874, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32445 (6), -tower 3390: eta = -2.8, phi = -0.294524, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32446 (6), -tower 3391: eta = -2.8, phi = -0.0981744, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32447 (6), -tower 3392: eta = -3, phi = 0.0981748, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32448 (6), -tower 3393: eta = -3, phi = 0.294524, deta = 0.2, dphi = 0.19635, et = 1142.7 - sampling = 1, 1 SCIndices: 32449 (6), -tower 3394: eta = -3, phi = 0.490874, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32450 (6), -tower 3395: eta = -3, phi = 0.687223, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32451 (6), -tower 3396: eta = -3, phi = 0.883573, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32452 (6), -tower 3397: eta = -3, phi = 1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32453 (6), -tower 3398: eta = -3, phi = 1.27627, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32454 (6), -tower 3399: eta = -3, phi = 1.47262, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32455 (6), -tower 3400: eta = -3, phi = 1.66897, deta = 0.2, dphi = 0.19635, et = 1393.65 - sampling = 1, 1 SCIndices: 32456 (6), -tower 3401: eta = -3, phi = 1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32457 (6), -tower 3402: eta = -3, phi = 2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32458 (6), -tower 3403: eta = -3, phi = 2.25802, deta = 0.2, dphi = 0.19635, et = 797.535 - sampling = 1, 1 SCIndices: 32459 (6), -tower 3404: eta = -3, phi = 2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32460 (6), -tower 3405: eta = -3, phi = 2.65072, deta = 0.2, dphi = 0.19635, et = 652.797 - sampling = 1, 1 SCIndices: 32461 (6), -tower 3406: eta = -3, phi = 2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32462 (6), -tower 3407: eta = -3, phi = 3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32463 (6), -tower 3408: eta = -3, phi = -3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32464 (6), -tower 3409: eta = -3, phi = -2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32465 (6), -tower 3410: eta = -3, phi = -2.65072, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32466 (6), -tower 3411: eta = -3, phi = -2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32467 (6), -tower 3412: eta = -3, phi = -2.25802, deta = 0.2, dphi = 0.19635, et = 1816.42 - sampling = 1, 1 SCIndices: 32468 (6), -tower 3413: eta = -3, phi = -2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32469 (6), -tower 3414: eta = -3, phi = -1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32470 (6), -tower 3415: eta = -3, phi = -1.66897, deta = 0.2, dphi = 0.19635, et = 1192.49 - sampling = 1, 1 SCIndices: 32471 (6), -tower 3416: eta = -3, phi = -1.47262, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32472 (6), -tower 3417: eta = -3, phi = -1.27627, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32473 (6), -tower 3418: eta = -3, phi = -1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32474 (6), -tower 3419: eta = -3, phi = -0.883573, deta = 0.2, dphi = 0.19635, et = 1809 - sampling = 1, 1 SCIndices: 32475 (6), -tower 3420: eta = -3, phi = -0.687223, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32476 (6), -tower 3421: eta = -3, phi = -0.490874, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32477 (6), -tower 3422: eta = -3, phi = -0.294524, deta = 0.2, dphi = 0.19635, et = 793.251 - sampling = 1, 1 SCIndices: 32478 (6), -tower 3423: eta = -3, phi = -0.0981744, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 32479 (6), -tower 3424: eta = -3.15, phi = 0.0981748, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 3425: eta = -3.15, phi = 0.294524, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33280 (8), -tower 3426: eta = -3.15, phi = 0.490874, deta = 0.1, dphi = 0.19635, et = 631.207 - sampling = 1, 1 SCIndices: 33281 (8), -tower 3427: eta = -3.15, phi = 0.687223, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 3428: eta = -3.15, phi = 0.883573, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 3429: eta = -3.15, phi = 1.07992, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33282 (8), -tower 3430: eta = -3.15, phi = 1.27627, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33283 (8), -tower 3431: eta = -3.15, phi = 1.47262, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 3432: eta = -3.15, phi = 1.66897, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 3433: eta = -3.15, phi = 1.86532, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33284 (8), -tower 3434: eta = -3.15, phi = 2.06167, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33285 (8), -tower 3435: eta = -3.15, phi = 2.25802, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 3436: eta = -3.15, phi = 2.45437, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 3437: eta = -3.15, phi = 2.65072, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33286 (8), -tower 3438: eta = -3.15, phi = 2.84707, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33287 (8), -tower 3439: eta = -3.15, phi = 3.04342, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 3440: eta = -3.15, phi = -3.04342, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 3441: eta = -3.15, phi = -2.84707, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33288 (8), -tower 3442: eta = -3.15, phi = -2.65072, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33289 (8), -tower 3443: eta = -3.15, phi = -2.45437, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 3444: eta = -3.15, phi = -2.25802, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 3445: eta = -3.15, phi = -2.06167, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33290 (8), -tower 3446: eta = -3.15, phi = -1.86532, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33291 (8), -tower 3447: eta = -3.15, phi = -1.66897, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 3448: eta = -3.15, phi = -1.47262, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 3449: eta = -3.15, phi = -1.27627, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33292 (8), -tower 3450: eta = -3.15, phi = -1.07992, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33293 (8), -tower 3451: eta = -3.15, phi = -0.883573, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 3452: eta = -3.15, phi = -0.687223, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 3453: eta = -3.15, phi = -0.490874, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33294 (8), -tower 3454: eta = -3.15, phi = -0.294524, deta = 0.1, dphi = 0.19635, et = 904.161 - sampling = 1, 1 SCIndices: 33295 (8), -tower 3455: eta = -3.15, phi = -0.0981744, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 3456: eta = 0.05, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 21.9055 - sampling = 0, 10 SCIndices: 15872 (2), 16832 (0), 16896 (1), 16960 (1), 17024 (2), 20608 (22), 20672 (22), 20736 (23), 20800 (5), 24256 (5), -tower 3457: eta = 0.05, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 301.94 - sampling = 0, 10 SCIndices: 15873 (2), 16833 (0), 16897 (1), 16961 (1), 17025 (2), 20609 (22), 20673 (22), 20737 (23), 20801 (5), 24257 (5), -tower 3458: eta = 0.05, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15874 (2), 16834 (0), 16898 (1), 16962 (1), 17026 (2), 20610 (22), 20674 (22), 20738 (23), 20802 (5), 24258 (5), -tower 3459: eta = 0.05, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = -187.605 - sampling = 0, 10 SCIndices: 15875 (2), 16835 (0), 16899 (1), 16963 (1), 17027 (2), 20611 (22), 20675 (22), 20739 (23), 20803 (5), 24259 (5), -tower 3460: eta = 0.05, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 73.4821 - sampling = 0, 10 SCIndices: 15876 (2), 16836 (0), 16900 (1), 16964 (1), 17028 (2), 20612 (22), 20676 (22), 20740 (23), 20804 (5), 24260 (5), -tower 3461: eta = 0.05, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 95.0927 - sampling = 0, 10 SCIndices: 15877 (2), 16837 (0), 16901 (1), 16965 (1), 17029 (2), 20613 (22), 20677 (22), 20741 (23), 20805 (5), 24261 (5), -tower 3462: eta = 0.05, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 554.581 - sampling = 0, 10 SCIndices: 15878 (2), 16838 (0), 16902 (1), 16966 (1), 17030 (2), 20614 (22), 20678 (22), 20742 (23), 20806 (5), 24262 (5), -tower 3463: eta = 0.05, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = -104.846 - sampling = 0, 10 SCIndices: 15879 (2), 16839 (0), 16903 (1), 16967 (1), 17031 (2), 20615 (22), 20679 (22), 20743 (23), 20807 (5), 24263 (5), -tower 3464: eta = 0.05, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15880 (2), 16840 (0), 16904 (1), 16968 (2), 17032 (2), 20616 (22), 20680 (22), 20744 (23), 20808 (5), 24264 (5), -tower 3465: eta = 0.05, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 469.198 - sampling = 0, 10 SCIndices: 15881 (2), 16841 (0), 16905 (1), 16969 (2), 17033 (2), 20617 (22), 20681 (22), 20745 (23), 20809 (5), 24265 (5), -tower 3466: eta = 0.05, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 160.983 - sampling = 0, 10 SCIndices: 15882 (2), 16842 (0), 16906 (1), 16970 (2), 17034 (2), 20618 (22), 20682 (22), 20746 (23), 20810 (5), 24266 (5), -tower 3467: eta = 0.05, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 177.36 - sampling = 0, 10 SCIndices: 15883 (2), 16843 (0), 16907 (1), 16971 (2), 17035 (2), 20619 (22), 20683 (22), 20747 (23), 20811 (5), 24267 (5), -tower 3468: eta = 0.05, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 423.112 - sampling = 0, 10 SCIndices: 15884 (2), 16844 (0), 16908 (1), 16972 (2), 17036 (2), 20620 (22), 20684 (22), 20748 (23), 20812 (5), 24268 (5), -tower 3469: eta = 0.05, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = -198.951 - sampling = 0, 10 SCIndices: 15885 (2), 16845 (0), 16909 (1), 16973 (2), 17037 (2), 20621 (22), 20685 (22), 20749 (23), 20813 (5), 24269 (5), -tower 3470: eta = 0.05, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 357.25 - sampling = 0, 10 SCIndices: 15886 (2), 16846 (0), 16910 (1), 16974 (2), 17038 (2), 20622 (22), 20686 (22), 20750 (23), 20814 (5), 24270 (5), -tower 3471: eta = 0.05, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 57.9753 - sampling = 0, 10 SCIndices: 15887 (2), 16847 (0), 16911 (1), 16975 (2), 17039 (2), 20623 (22), 20687 (22), 20751 (23), 20815 (5), 24271 (5), -tower 3472: eta = 0.05, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 470.602 - sampling = 0, 10 SCIndices: 15888 (2), 16848 (0), 16912 (1), 16976 (2), 17040 (2), 20624 (22), 20688 (22), 20752 (23), 20816 (5), 24272 (5), -tower 3473: eta = 0.05, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15889 (2), 16849 (0), 16913 (1), 16977 (2), 17041 (2), 20625 (22), 20689 (22), 20753 (23), 20817 (5), 24273 (5), -tower 3474: eta = 0.05, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 176.002 - sampling = 0, 10 SCIndices: 15890 (2), 16850 (1), 16914 (1), 16978 (2), 17042 (2), 20626 (22), 20690 (22), 20754 (23), 20818 (5), 24274 (5), -tower 3475: eta = 0.05, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 262.068 - sampling = 0, 10 SCIndices: 15891 (2), 16851 (1), 16915 (1), 16979 (2), 17043 (2), 20627 (22), 20691 (22), 20755 (23), 20819 (5), 24275 (5), -tower 3476: eta = 0.05, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 453.54 - sampling = 0, 10 SCIndices: 15892 (2), 16852 (1), 16916 (1), 16980 (2), 17044 (2), 20628 (22), 20692 (22), 20756 (23), 20820 (5), 24276 (5), -tower 3477: eta = 0.05, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15893 (2), 16853 (1), 16917 (1), 16981 (2), 17045 (2), 20629 (22), 20693 (22), 20757 (23), 20821 (5), 24277 (5), -tower 3478: eta = 0.05, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 83.4511 - sampling = 0, 10 SCIndices: 15894 (2), 16854 (1), 16918 (1), 16982 (2), 17046 (2), 20630 (22), 20694 (22), 20758 (23), 20822 (5), 24278 (5), -tower 3479: eta = 0.05, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15895 (2), 16855 (1), 16919 (1), 16983 (2), 17047 (2), 20631 (22), 20695 (22), 20759 (23), 20823 (5), 24279 (5), -tower 3480: eta = 0.05, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15896 (2), 16856 (1), 16920 (1), 16984 (2), 17048 (2), 20632 (22), 20696 (22), 20760 (23), 20824 (5), 24280 (5), -tower 3481: eta = 0.05, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 658.202 - sampling = 0, 10 SCIndices: 15897 (2), 16857 (1), 16921 (1), 16985 (2), 17049 (2), 20633 (22), 20697 (22), 20761 (23), 20825 (5), 24281 (5), -tower 3482: eta = 0.05, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 276.49 - sampling = 0, 10 SCIndices: 15898 (2), 16858 (1), 16922 (1), 16986 (2), 17050 (2), 20634 (22), 20698 (22), 20762 (23), 20826 (5), 24282 (5), -tower 3483: eta = 0.05, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 276.383 - sampling = 0, 10 SCIndices: 15899 (2), 16859 (1), 16923 (1), 16987 (2), 17051 (2), 20635 (22), 20699 (22), 20763 (23), 20827 (5), 24283 (5), -tower 3484: eta = 0.05, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 219.599 - sampling = 0, 10 SCIndices: 15900 (2), 16860 (1), 16924 (1), 16988 (2), 17052 (2), 20636 (22), 20700 (22), 20764 (23), 20828 (5), 24284 (5), -tower 3485: eta = 0.05, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 185.133 - sampling = 0, 10 SCIndices: 15901 (2), 16861 (1), 16925 (1), 16989 (2), 17053 (2), 20637 (22), 20701 (22), 20765 (23), 20829 (5), 24285 (5), -tower 3486: eta = 0.05, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 372.278 - sampling = 0, 10 SCIndices: 15902 (2), 16862 (1), 16926 (1), 16990 (2), 17054 (2), 20638 (22), 20702 (22), 20766 (23), 20830 (5), 24286 (5), -tower 3487: eta = 0.05, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 1575.26 - sampling = 0, 10 SCIndices: 15903 (2), 16863 (1), 16927 (1), 16991 (2), 17055 (2), 20639 (22), 20703 (22), 20767 (23), 20831 (5), 24287 (5), -tower 3488: eta = 0.05, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 374.35 - sampling = 0, 10 SCIndices: 15904 (2), 16864 (1), 16928 (1), 16992 (2), 17056 (2), 20640 (22), 20704 (22), 20768 (23), 20832 (5), 24288 (5), -tower 3489: eta = 0.05, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 530.112 - sampling = 0, 10 SCIndices: 15905 (2), 16865 (1), 16929 (1), 16993 (2), 17057 (2), 20641 (22), 20705 (22), 20769 (23), 20833 (5), 24289 (5), -tower 3490: eta = 0.05, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15906 (2), 16866 (1), 16930 (1), 16994 (2), 17058 (2), 20642 (22), 20706 (22), 20770 (23), 20834 (5), 24290 (5), -tower 3491: eta = 0.05, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 90.7434 - sampling = 0, 10 SCIndices: 15907 (2), 16867 (1), 16931 (1), 16995 (2), 17059 (2), 20643 (22), 20707 (22), 20771 (23), 20835 (5), 24291 (5), -tower 3492: eta = 0.05, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 86.7519 - sampling = 0, 10 SCIndices: 15908 (2), 16868 (1), 16932 (1), 16996 (2), 17060 (2), 20644 (22), 20708 (22), 20772 (23), 20836 (5), 24292 (5), -tower 3493: eta = 0.05, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 95.0928 - sampling = 0, 10 SCIndices: 15909 (2), 16869 (1), 16933 (1), 16997 (2), 17061 (2), 20645 (22), 20709 (22), 20773 (23), 20837 (5), 24293 (5), -tower 3494: eta = 0.05, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 176.229 - sampling = 0, 10 SCIndices: 15910 (2), 16870 (1), 16934 (1), 16998 (2), 17062 (2), 20646 (22), 20710 (22), 20774 (23), 20838 (5), 24294 (5), -tower 3495: eta = 0.05, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 789.456 - sampling = 0, 10 SCIndices: 15911 (2), 16871 (1), 16935 (1), 16999 (2), 17063 (2), 20647 (22), 20711 (22), 20775 (23), 20839 (5), 24295 (5), -tower 3496: eta = 0.05, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 319.999 - sampling = 0, 10 SCIndices: 15912 (2), 16872 (1), 16936 (1), 17000 (2), 17064 (2), 20648 (22), 20712 (22), 20776 (23), 20840 (5), 24296 (5), -tower 3497: eta = 0.05, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15913 (2), 16873 (1), 16937 (1), 17001 (2), 17065 (2), 20649 (22), 20713 (22), 20777 (23), 20841 (5), 24297 (5), -tower 3498: eta = 0.05, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 40.0306 - sampling = 0, 10 SCIndices: 15914 (2), 16874 (1), 16938 (1), 17002 (2), 17066 (2), 20650 (22), 20714 (22), 20778 (23), 20842 (5), 24298 (5), -tower 3499: eta = 0.05, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 500.153 - sampling = 0, 10 SCIndices: 15915 (2), 16875 (1), 16939 (1), 17003 (2), 17067 (2), 20651 (22), 20715 (22), 20779 (23), 20843 (5), 24299 (5), -tower 3500: eta = 0.05, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 425.65 - sampling = 0, 10 SCIndices: 15916 (2), 16876 (1), 16940 (1), 17004 (2), 17068 (2), 20652 (22), 20716 (22), 20780 (23), 20844 (5), 24300 (5), -tower 3501: eta = 0.05, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 172.971 - sampling = 0, 10 SCIndices: 15917 (2), 16877 (1), 16941 (1), 17005 (2), 17069 (2), 20653 (22), 20717 (22), 20781 (23), 20845 (5), 24301 (5), -tower 3502: eta = 0.05, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 272.834 - sampling = 0, 10 SCIndices: 15918 (2), 16878 (1), 16942 (1), 17006 (2), 17070 (2), 20654 (22), 20718 (22), 20782 (23), 20846 (5), 24302 (5), -tower 3503: eta = 0.05, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 246.304 - sampling = 0, 10 SCIndices: 15919 (2), 16879 (1), 16943 (1), 17007 (2), 17071 (2), 20655 (22), 20719 (22), 20783 (23), 20847 (5), 24303 (5), -tower 3504: eta = 0.05, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 448.561 - sampling = 0, 10 SCIndices: 15920 (2), 16880 (1), 16944 (1), 17008 (2), 17072 (2), 20656 (22), 20720 (23), 20784 (4), 20848 (5), 24304 (6), -tower 3505: eta = 0.05, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 271.593 - sampling = 0, 10 SCIndices: 15921 (2), 16881 (1), 16945 (1), 17009 (2), 17073 (2), 20657 (22), 20721 (23), 20785 (4), 20849 (5), 24305 (6), -tower 3506: eta = 0.05, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 299.412 - sampling = 0, 10 SCIndices: 15922 (3), 16882 (1), 16946 (1), 17010 (2), 17074 (2), 20658 (22), 20722 (23), 20786 (4), 20850 (5), 24306 (6), -tower 3507: eta = 0.05, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15923 (3), 16883 (1), 16947 (1), 17011 (2), 17075 (2), 20659 (22), 20723 (23), 20787 (4), 20851 (5), 24307 (6), -tower 3508: eta = 0.05, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15924 (3), 16884 (1), 16948 (1), 17012 (2), 17076 (2), 20660 (22), 20724 (23), 20788 (4), 20852 (5), 24308 (6), -tower 3509: eta = 0.05, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 488.603 - sampling = 0, 10 SCIndices: 15925 (3), 16885 (1), 16949 (1), 17013 (2), 17077 (2), 20661 (22), 20725 (23), 20789 (4), 20853 (5), 24309 (6), -tower 3510: eta = 0.05, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 309.081 - sampling = 0, 10 SCIndices: 15926 (3), 16886 (1), 16950 (1), 17014 (2), 17078 (2), 20662 (22), 20726 (23), 20790 (4), 20854 (5), 24310 (6), -tower 3511: eta = 0.05, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 367.655 - sampling = 0, 10 SCIndices: 15927 (3), 16887 (1), 16951 (1), 17015 (2), 17079 (2), 20663 (22), 20727 (23), 20791 (4), 20855 (5), 24311 (6), -tower 3512: eta = 0.05, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 456.238 - sampling = 0, 10 SCIndices: 15928 (3), 16888 (1), 16952 (1), 17016 (2), 17080 (2), 20664 (22), 20728 (23), 20792 (5), 20856 (5), 24312 (6), -tower 3513: eta = 0.05, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 533.403 - sampling = 0, 10 SCIndices: 15929 (3), 16889 (1), 16953 (1), 17017 (2), 17081 (2), 20665 (22), 20729 (23), 20793 (5), 20857 (5), 24313 (6), -tower 3514: eta = 0.05, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 903.108 - sampling = 0, 10 SCIndices: 15930 (3), 16890 (1), 16954 (1), 17018 (2), 17082 (3), 20666 (22), 20730 (23), 20794 (5), 20858 (5), 24314 (6), -tower 3515: eta = 0.05, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15931 (3), 16891 (1), 16955 (1), 17019 (2), 17083 (3), 20667 (22), 20731 (23), 20795 (5), 20859 (5), 24315 (6), -tower 3516: eta = 0.05, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 358.047 - sampling = 0, 10 SCIndices: 15932 (3), 16892 (1), 16956 (1), 17020 (2), 17084 (3), 20668 (22), 20732 (23), 20796 (5), 20860 (5), 24316 (6), -tower 3517: eta = 0.05, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 353.334 - sampling = 0, 10 SCIndices: 15933 (3), 16893 (1), 16957 (1), 17021 (2), 17085 (3), 20669 (22), 20733 (23), 20797 (5), 20861 (5), 24317 (6), -tower 3518: eta = 0.05, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 308.029 - sampling = 0, 10 SCIndices: 15934 (3), 16894 (1), 16958 (1), 17022 (2), 17086 (3), 20670 (22), 20734 (23), 20798 (5), 20862 (5), 24318 (6), -tower 3519: eta = 0.05, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15935 (3), 16895 (1), 16959 (1), 17023 (2), 17087 (3), 20671 (22), 20735 (23), 20799 (5), 20863 (5), 24319 (6), -tower 3520: eta = 0.15, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 500.179 - sampling = 0, 10 SCIndices: 15936 (3), 17088 (3), 17152 (1), 17216 (1), 17280 (2), 20864 (5), 20928 (5), 20992 (6), 21056 (6), 24320 (6), -tower 3521: eta = 0.15, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 273.603 - sampling = 0, 10 SCIndices: 15937 (3), 17089 (3), 17153 (1), 17217 (1), 17281 (2), 20865 (5), 20929 (5), 20993 (6), 21057 (6), 24321 (6), -tower 3522: eta = 0.15, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15938 (3), 17090 (3), 17154 (1), 17218 (1), 17282 (2), 20866 (5), 20930 (5), 20994 (6), 21058 (6), 24322 (6), -tower 3523: eta = 0.15, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 277.573 - sampling = 0, 10 SCIndices: 15939 (3), 17091 (3), 17155 (1), 17219 (1), 17283 (2), 20867 (5), 20931 (5), 20995 (6), 21059 (6), 24323 (6), -tower 3524: eta = 0.15, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 216.407 - sampling = 0, 10 SCIndices: 15940 (3), 17092 (3), 17156 (1), 17220 (1), 17284 (2), 20868 (5), 20932 (5), 20996 (6), 21060 (6), 24324 (6), -tower 3525: eta = 0.15, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 875.336 - sampling = 0, 10 SCIndices: 15941 (3), 17093 (3), 17157 (1), 17221 (1), 17285 (2), 20869 (5), 20933 (5), 20997 (6), 21061 (6), 24325 (6), -tower 3526: eta = 0.15, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15942 (3), 17094 (3), 17158 (1), 17222 (1), 17286 (2), 20870 (5), 20934 (5), 20998 (6), 21062 (6), 24326 (6), -tower 3527: eta = 0.15, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 101.959 - sampling = 0, 10 SCIndices: 15943 (3), 17095 (3), 17159 (1), 17223 (1), 17287 (2), 20871 (5), 20935 (5), 20999 (6), 21063 (6), 24327 (6), -tower 3528: eta = 0.15, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 33.7018 - sampling = 0, 10 SCIndices: 15944 (3), 17096 (3), 17160 (1), 17224 (1), 17288 (2), 20872 (5), 20936 (6), 21000 (6), 21064 (7), 24328 (6), -tower 3529: eta = 0.15, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 379.135 - sampling = 0, 10 SCIndices: 15945 (3), 17097 (3), 17161 (1), 17225 (1), 17289 (2), 20873 (5), 20937 (6), 21001 (6), 21065 (7), 24329 (6), -tower 3530: eta = 0.15, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 364.54 - sampling = 0, 10 SCIndices: 15946 (3), 17098 (3), 17162 (1), 17226 (1), 17290 (2), 20874 (5), 20938 (6), 21002 (6), 21066 (7), 24330 (6), -tower 3531: eta = 0.15, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 433.847 - sampling = 0, 10 SCIndices: 15947 (3), 17099 (3), 17163 (1), 17227 (1), 17291 (2), 20875 (5), 20939 (6), 21003 (6), 21067 (7), 24331 (6), -tower 3532: eta = 0.15, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 1205.83 - sampling = 0, 10 SCIndices: 15948 (3), 17100 (3), 17164 (1), 17228 (1), 17292 (2), 20876 (5), 20940 (6), 21004 (6), 21068 (7), 24332 (6), -tower 3533: eta = 0.15, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15949 (3), 17101 (3), 17165 (1), 17229 (1), 17293 (2), 20877 (5), 20941 (6), 21005 (6), 21069 (7), 24333 (6), -tower 3534: eta = 0.15, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 112.256 - sampling = 0, 10 SCIndices: 15950 (0), 17102 (3), 17166 (1), 17230 (1), 17294 (2), 20878 (5), 20942 (6), 21006 (6), 21070 (7), 24334 (6), -tower 3535: eta = 0.15, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 568.496 - sampling = 0, 10 SCIndices: 15951 (0), 17103 (3), 17167 (1), 17231 (1), 17295 (2), 20879 (5), 20943 (6), 21007 (6), 21071 (7), 24335 (6), -tower 3536: eta = 0.15, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = -81.1464 - sampling = 0, 10 SCIndices: 15952 (0), 17104 (3), 17168 (1), 17232 (1), 17296 (2), 20880 (5), 20944 (6), 21008 (6), 21072 (7), 24336 (6), -tower 3537: eta = 0.15, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 134.63 - sampling = 0, 10 SCIndices: 15953 (0), 17105 (3), 17169 (1), 17233 (1), 17297 (2), 20881 (5), 20945 (6), 21009 (6), 21073 (7), 24337 (6), -tower 3538: eta = 0.15, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 641.039 - sampling = 0, 10 SCIndices: 15954 (0), 17106 (3), 17170 (1), 17234 (1), 17298 (2), 20882 (5), 20946 (6), 21010 (6), 21074 (7), 24338 (6), -tower 3539: eta = 0.15, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 227.28 - sampling = 0, 10 SCIndices: 15955 (0), 17107 (3), 17171 (1), 17235 (1), 17299 (2), 20883 (5), 20947 (6), 21011 (6), 21075 (7), 24339 (6), -tower 3540: eta = 0.15, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 750.227 - sampling = 0, 10 SCIndices: 15956 (0), 17108 (3), 17172 (1), 17236 (1), 17300 (2), 20884 (5), 20948 (6), 21012 (6), 21076 (7), 24340 (6), -tower 3541: eta = 0.15, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 107.678 - sampling = 0, 10 SCIndices: 15957 (0), 17109 (3), 17173 (1), 17237 (1), 17301 (2), 20885 (5), 20949 (6), 21013 (6), 21077 (7), 24341 (6), -tower 3542: eta = 0.15, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 311.114 - sampling = 0, 10 SCIndices: 15958 (0), 17110 (0), 17174 (1), 17238 (1), 17302 (2), 20886 (5), 20950 (6), 21014 (6), 21078 (7), 24342 (6), -tower 3543: eta = 0.15, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 273.455 - sampling = 0, 10 SCIndices: 15959 (0), 17111 (0), 17175 (1), 17239 (1), 17303 (2), 20887 (5), 20951 (6), 21015 (6), 21079 (7), 24343 (6), -tower 3544: eta = 0.15, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 212.974 - sampling = 0, 10 SCIndices: 15960 (0), 17112 (0), 17176 (1), 17240 (1), 17304 (2), 20888 (5), 20952 (6), 21016 (6), 21080 (7), 24344 (6), -tower 3545: eta = 0.15, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 639.256 - sampling = 0, 10 SCIndices: 15961 (0), 17113 (0), 17177 (1), 17241 (1), 17305 (2), 20889 (5), 20953 (6), 21017 (6), 21081 (7), 24345 (6), -tower 3546: eta = 0.15, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 98.1468 - sampling = 0, 10 SCIndices: 15962 (0), 17114 (0), 17178 (1), 17242 (1), 17306 (2), 20890 (5), 20954 (6), 21018 (6), 21082 (7), 24346 (6), -tower 3547: eta = 0.15, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = -66.2106 - sampling = 0, 10 SCIndices: 15963 (0), 17115 (0), 17179 (1), 17243 (1), 17307 (2), 20891 (5), 20955 (6), 21019 (6), 21083 (7), 24347 (6), -tower 3548: eta = 0.15, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 275.546 - sampling = 0, 10 SCIndices: 15964 (0), 17116 (0), 17180 (1), 17244 (1), 17308 (2), 20892 (5), 20956 (6), 21020 (6), 21084 (7), 24348 (6), -tower 3549: eta = 0.15, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = -103.795 - sampling = 0, 10 SCIndices: 15965 (0), 17117 (0), 17181 (1), 17245 (1), 17309 (2), 20893 (5), 20957 (6), 21021 (6), 21085 (7), 24349 (6), -tower 3550: eta = 0.15, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15966 (0), 17118 (0), 17182 (1), 17246 (1), 17310 (2), 20894 (5), 20958 (6), 21022 (6), 21086 (7), 24350 (6), -tower 3551: eta = 0.15, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15967 (0), 17119 (0), 17183 (1), 17247 (1), 17311 (2), 20895 (5), 20959 (6), 21023 (6), 21087 (7), 24351 (6), -tower 3552: eta = 0.15, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 197.966 - sampling = 0, 10 SCIndices: 15968 (0), 17120 (0), 17184 (1), 17248 (1), 17312 (2), 20896 (5), 20960 (6), 21024 (6), 21088 (7), 24352 (6), -tower 3553: eta = 0.15, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 801.826 - sampling = 0, 10 SCIndices: 15969 (0), 17121 (0), 17185 (1), 17249 (1), 17313 (2), 20897 (5), 20961 (6), 21025 (6), 21089 (7), 24353 (6), -tower 3554: eta = 0.15, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 91.9903 - sampling = 0, 10 SCIndices: 15970 (0), 17122 (0), 17186 (1), 17250 (1), 17314 (2), 20898 (5), 20962 (6), 21026 (6), 21090 (7), 24354 (6), -tower 3555: eta = 0.15, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 923.046 - sampling = 0, 10 SCIndices: 15971 (0), 17123 (0), 17187 (1), 17251 (1), 17315 (2), 20899 (5), 20963 (6), 21027 (6), 21091 (7), 24355 (6), -tower 3556: eta = 0.15, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15972 (0), 17124 (0), 17188 (1), 17252 (1), 17316 (2), 20900 (5), 20964 (6), 21028 (6), 21092 (7), 24356 (6), -tower 3557: eta = 0.15, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 176.077 - sampling = 0, 10 SCIndices: 15973 (0), 17125 (0), 17189 (1), 17253 (1), 17317 (2), 20901 (5), 20965 (6), 21029 (6), 21093 (7), 24357 (6), -tower 3558: eta = 0.15, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 101.391 - sampling = 0, 10 SCIndices: 15974 (0), 17126 (0), 17190 (1), 17254 (1), 17318 (2), 20902 (5), 20966 (6), 21030 (6), 21094 (7), 24358 (6), -tower 3559: eta = 0.15, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 987.198 - sampling = 0, 10 SCIndices: 15975 (0), 17127 (0), 17191 (1), 17255 (1), 17319 (2), 20903 (5), 20967 (6), 21031 (6), 21095 (7), 24359 (6), -tower 3560: eta = 0.15, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15976 (0), 17128 (0), 17192 (1), 17256 (1), 17320 (2), 20904 (5), 20968 (6), 21032 (6), 21096 (4), 24360 (6), -tower 3561: eta = 0.15, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 623.739 - sampling = 0, 10 SCIndices: 15977 (0), 17129 (0), 17193 (1), 17257 (1), 17321 (2), 20905 (5), 20969 (6), 21033 (6), 21097 (4), 24361 (6), -tower 3562: eta = 0.15, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15978 (0), 17130 (0), 17194 (1), 17258 (2), 17322 (2), 20906 (5), 20970 (6), 21034 (6), 21098 (4), 24362 (6), -tower 3563: eta = 0.15, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15979 (0), 17131 (0), 17195 (1), 17259 (2), 17323 (2), 20907 (5), 20971 (6), 21035 (6), 21099 (4), 24363 (6), -tower 3564: eta = 0.15, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 177.749 - sampling = 0, 10 SCIndices: 15980 (1), 17132 (0), 17196 (1), 17260 (2), 17324 (2), 20908 (5), 20972 (6), 21036 (6), 21100 (4), 24364 (6), -tower 3565: eta = 0.15, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 155.001 - sampling = 0, 10 SCIndices: 15981 (1), 17133 (0), 17197 (1), 17261 (2), 17325 (2), 20909 (5), 20973 (6), 21037 (6), 21101 (4), 24365 (6), -tower 3566: eta = 0.15, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 456.591 - sampling = 0, 10 SCIndices: 15982 (1), 17134 (0), 17198 (1), 17262 (2), 17326 (2), 20910 (5), 20974 (6), 21038 (6), 21102 (4), 24366 (6), -tower 3567: eta = 0.15, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 342.97 - sampling = 0, 10 SCIndices: 15983 (1), 17135 (0), 17199 (1), 17263 (2), 17327 (2), 20911 (5), 20975 (6), 21039 (6), 21103 (4), 24367 (6), -tower 3568: eta = 0.15, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 292.11 - sampling = 0, 10 SCIndices: 15984 (1), 17136 (0), 17200 (1), 17264 (2), 17328 (2), 20912 (5), 20976 (6), 21040 (6), 21104 (5), 24368 (6), -tower 3569: eta = 0.15, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 174.875 - sampling = 0, 10 SCIndices: 15985 (1), 17137 (0), 17201 (1), 17265 (2), 17329 (2), 20913 (5), 20977 (6), 21041 (6), 21105 (5), 24369 (6), -tower 3570: eta = 0.15, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 571.087 - sampling = 0, 10 SCIndices: 15986 (1), 17138 (0), 17202 (1), 17266 (2), 17330 (2), 20914 (5), 20978 (6), 21042 (6), 21106 (5), 24370 (6), -tower 3571: eta = 0.15, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 969.605 - sampling = 0, 10 SCIndices: 15987 (1), 17139 (0), 17203 (1), 17267 (2), 17331 (2), 20915 (5), 20979 (6), 21043 (6), 21107 (5), 24371 (6), -tower 3572: eta = 0.15, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 234.189 - sampling = 0, 10 SCIndices: 15988 (1), 17140 (1), 17204 (1), 17268 (2), 17332 (2), 20916 (5), 20980 (6), 21044 (6), 21108 (5), 24372 (6), -tower 3573: eta = 0.15, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 468.676 - sampling = 0, 10 SCIndices: 15989 (1), 17141 (1), 17205 (1), 17269 (2), 17333 (2), 20917 (5), 20981 (6), 21045 (6), 21109 (5), 24373 (6), -tower 3574: eta = 0.15, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 281.196 - sampling = 0, 10 SCIndices: 15990 (1), 17142 (1), 17206 (1), 17270 (2), 17334 (2), 20918 (5), 20982 (6), 21046 (6), 21110 (5), 24374 (6), -tower 3575: eta = 0.15, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 159.972 - sampling = 0, 10 SCIndices: 15991 (1), 17143 (1), 17207 (1), 17271 (2), 17335 (2), 20919 (5), 20983 (6), 21047 (6), 21111 (5), 24375 (6), -tower 3576: eta = 0.15, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 231.352 - sampling = 0, 10 SCIndices: 15992 (1), 17144 (1), 17208 (1), 17272 (2), 17336 (2), 20920 (5), 20984 (6), 21048 (6), 21112 (5), 24376 (6), -tower 3577: eta = 0.15, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 93.8474 - sampling = 0, 10 SCIndices: 15993 (1), 17145 (1), 17209 (1), 17273 (2), 17337 (2), 20921 (5), 20985 (6), 21049 (6), 21113 (5), 24377 (6), -tower 3578: eta = 0.15, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15994 (1), 17146 (1), 17210 (1), 17274 (2), 17338 (2), 20922 (5), 20986 (6), 21050 (6), 21114 (5), 24378 (6), -tower 3579: eta = 0.15, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15995 (1), 17147 (1), 17211 (1), 17275 (2), 17339 (2), 20923 (5), 20987 (6), 21051 (6), 21115 (5), 24379 (6), -tower 3580: eta = 0.15, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 581.176 - sampling = 0, 10 SCIndices: 15996 (1), 17148 (1), 17212 (1), 17276 (2), 17340 (2), 20924 (5), 20988 (6), 21052 (6), 21116 (5), 24380 (6), -tower 3581: eta = 0.15, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 239.04 - sampling = 0, 10 SCIndices: 15997 (1), 17149 (1), 17213 (1), 17277 (2), 17341 (2), 20925 (5), 20989 (6), 21053 (6), 21117 (5), 24381 (6), -tower 3582: eta = 0.15, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 670.065 - sampling = 0, 10 SCIndices: 15998 (1), 17150 (1), 17214 (1), 17278 (2), 17342 (2), 20926 (5), 20990 (6), 21054 (6), 21118 (5), 24382 (6), -tower 3583: eta = 0.15, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 15999 (1), 17151 (1), 17215 (1), 17279 (2), 17343 (2), 20927 (5), 20991 (6), 21055 (6), 21119 (5), 24383 (6), -tower 3584: eta = 0.25, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = -144.972 - sampling = 0, 10 SCIndices: 16000 (1), 17344 (2), 17408 (0), 17472 (1), 17536 (1), 21120 (5), 21184 (5), 21248 (6), 21312 (6), 24384 (6), -tower 3585: eta = 0.25, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 789.65 - sampling = 0, 10 SCIndices: 16001 (1), 17345 (2), 17409 (0), 17473 (1), 17537 (1), 21121 (5), 21185 (5), 21249 (6), 21313 (6), 24385 (6), -tower 3586: eta = 0.25, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 181.274 - sampling = 0, 10 SCIndices: 16002 (1), 17346 (2), 17410 (0), 17474 (1), 17538 (1), 21122 (5), 21186 (5), 21250 (6), 21314 (6), 24386 (6), -tower 3587: eta = 0.25, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = -173.971 - sampling = 0, 10 SCIndices: 16003 (1), 17347 (2), 17411 (0), 17475 (1), 17539 (1), 21123 (5), 21187 (5), 21251 (6), 21315 (6), 24387 (6), -tower 3588: eta = 0.25, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 520.738 - sampling = 0, 10 SCIndices: 16004 (1), 17348 (2), 17412 (0), 17476 (1), 17540 (1), 21124 (5), 21188 (5), 21252 (6), 21316 (6), 24388 (6), -tower 3589: eta = 0.25, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 1347.01 - sampling = 0, 10 SCIndices: 16005 (1), 17349 (2), 17413 (0), 17477 (1), 17541 (1), 21125 (5), 21189 (5), 21253 (6), 21317 (6), 24389 (6), -tower 3590: eta = 0.25, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 450.352 - sampling = 0, 10 SCIndices: 16006 (1), 17350 (2), 17414 (0), 17478 (1), 17542 (1), 21126 (5), 21190 (5), 21254 (6), 21318 (6), 24390 (6), -tower 3591: eta = 0.25, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 52.4267 - sampling = 0, 10 SCIndices: 16007 (1), 17351 (2), 17415 (0), 17479 (1), 17543 (1), 21127 (5), 21191 (5), 21255 (6), 21319 (6), 24391 (6), -tower 3592: eta = 0.25, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 136.985 - sampling = 0, 10 SCIndices: 16008 (1), 17352 (2), 17416 (0), 17480 (1), 17544 (1), 21128 (5), 21192 (5), 21256 (6), 21320 (6), 24392 (6), -tower 3593: eta = 0.25, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 134.472 - sampling = 0, 10 SCIndices: 16009 (1), 17353 (2), 17417 (0), 17481 (1), 17545 (1), 21129 (5), 21193 (5), 21257 (6), 21321 (6), 24393 (6), -tower 3594: eta = 0.25, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 612.766 - sampling = 0, 10 SCIndices: 16010 (1), 17354 (2), 17418 (0), 17482 (1), 17546 (1), 21130 (5), 21194 (5), 21258 (6), 21322 (6), 24394 (6), -tower 3595: eta = 0.25, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 738.82 - sampling = 0, 10 SCIndices: 16011 (1), 17355 (2), 17419 (0), 17483 (1), 17547 (1), 21131 (5), 21195 (5), 21259 (6), 21323 (6), 24395 (6), -tower 3596: eta = 0.25, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 292.642 - sampling = 0, 10 SCIndices: 16012 (1), 17356 (2), 17420 (0), 17484 (1), 17548 (2), 21132 (5), 21196 (5), 21260 (6), 21324 (6), 24396 (6), -tower 3597: eta = 0.25, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16013 (1), 17357 (2), 17421 (0), 17485 (1), 17549 (2), 21133 (5), 21197 (5), 21261 (6), 21325 (6), 24397 (6), -tower 3598: eta = 0.25, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 405.997 - sampling = 0, 10 SCIndices: 16014 (1), 17358 (2), 17422 (0), 17486 (1), 17550 (2), 21134 (5), 21198 (5), 21262 (6), 21326 (6), 24398 (6), -tower 3599: eta = 0.25, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16015 (1), 17359 (2), 17423 (0), 17487 (1), 17551 (2), 21135 (5), 21199 (5), 21263 (6), 21327 (6), 24399 (6), -tower 3600: eta = 0.25, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 134.473 - sampling = 0, 10 SCIndices: 16016 (1), 17360 (2), 17424 (0), 17488 (1), 17552 (2), 21136 (5), 21200 (5), 21264 (6), 21328 (6), 24400 (6), -tower 3601: eta = 0.25, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = -19.5739 - sampling = 0, 10 SCIndices: 16017 (1), 17361 (2), 17425 (0), 17489 (1), 17553 (2), 21137 (5), 21201 (5), 21265 (6), 21329 (6), 24401 (6), -tower 3602: eta = 0.25, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16018 (1), 17362 (2), 17426 (0), 17490 (1), 17554 (2), 21138 (5), 21202 (5), 21266 (6), 21330 (6), 24402 (6), -tower 3603: eta = 0.25, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16019 (1), 17363 (2), 17427 (0), 17491 (1), 17555 (2), 21139 (5), 21203 (5), 21267 (6), 21331 (6), 24403 (6), -tower 3604: eta = 0.25, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 423.236 - sampling = 0, 10 SCIndices: 16020 (1), 17364 (2), 17428 (0), 17492 (1), 17556 (2), 21140 (5), 21204 (5), 21268 (6), 21332 (6), 24404 (6), -tower 3605: eta = 0.25, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 22.4239 - sampling = 0, 10 SCIndices: 16021 (1), 17365 (2), 17429 (0), 17493 (1), 17557 (2), 21141 (5), 21205 (5), 21269 (6), 21333 (6), 24405 (6), -tower 3606: eta = 0.25, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 38.7259 - sampling = 0, 10 SCIndices: 16022 (1), 17366 (2), 17430 (1), 17494 (1), 17558 (2), 21142 (5), 21206 (5), 21270 (6), 21334 (6), 24406 (6), -tower 3607: eta = 0.25, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 141.971 - sampling = 0, 10 SCIndices: 16023 (1), 17367 (2), 17431 (1), 17495 (1), 17559 (2), 21143 (5), 21207 (5), 21271 (6), 21335 (6), 24407 (6), -tower 3608: eta = 0.25, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 597.98 - sampling = 0, 10 SCIndices: 16024 (1), 17368 (2), 17432 (1), 17496 (1), 17560 (2), 21144 (5), 21208 (5), 21272 (6), 21336 (6), 24408 (6), -tower 3609: eta = 0.25, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 395.251 - sampling = 0, 10 SCIndices: 16025 (1), 17369 (2), 17433 (1), 17497 (1), 17561 (2), 21145 (5), 21209 (5), 21273 (6), 21337 (6), 24409 (6), -tower 3610: eta = 0.25, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 96.8627 - sampling = 0, 10 SCIndices: 16026 (1), 17370 (2), 17434 (1), 17498 (1), 17562 (2), 21146 (5), 21210 (5), 21274 (6), 21338 (6), 24410 (6), -tower 3611: eta = 0.25, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 153.324 - sampling = 0, 10 SCIndices: 16027 (1), 17371 (2), 17435 (1), 17499 (1), 17563 (2), 21147 (5), 21211 (5), 21275 (6), 21339 (6), 24411 (6), -tower 3612: eta = 0.25, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 418.927 - sampling = 0, 10 SCIndices: 16028 (1), 17372 (3), 17436 (1), 17500 (1), 17564 (2), 21148 (5), 21212 (5), 21276 (6), 21340 (6), 24412 (6), -tower 3613: eta = 0.25, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 138.922 - sampling = 0, 10 SCIndices: 16029 (1), 17373 (3), 17437 (1), 17501 (1), 17565 (2), 21149 (5), 21213 (5), 21277 (6), 21341 (6), 24413 (6), -tower 3614: eta = 0.25, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16030 (1), 17374 (3), 17438 (1), 17502 (1), 17566 (2), 21150 (5), 21214 (5), 21278 (6), 21342 (6), 24414 (6), -tower 3615: eta = 0.25, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = -89.2225 - sampling = 0, 10 SCIndices: 16031 (1), 17375 (3), 17439 (1), 17503 (1), 17567 (2), 21151 (5), 21215 (5), 21279 (6), 21343 (6), 24415 (6), -tower 3616: eta = 0.25, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 616.838 - sampling = 0, 10 SCIndices: 16032 (1), 17376 (3), 17440 (1), 17504 (1), 17568 (2), 21152 (5), 21216 (5), 21280 (6), 21344 (6), 24416 (6), -tower 3617: eta = 0.25, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 405.454 - sampling = 0, 10 SCIndices: 16033 (1), 17377 (3), 17441 (1), 17505 (1), 17569 (2), 21153 (5), 21217 (5), 21281 (6), 21345 (6), 24417 (6), -tower 3618: eta = 0.25, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 273.006 - sampling = 0, 10 SCIndices: 16034 (1), 17378 (3), 17442 (1), 17506 (1), 17570 (2), 21154 (5), 21218 (5), 21282 (6), 21346 (6), 24418 (6), -tower 3619: eta = 0.25, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 359.814 - sampling = 0, 10 SCIndices: 16035 (1), 17379 (3), 17443 (1), 17507 (1), 17571 (2), 21155 (5), 21219 (5), 21283 (6), 21347 (6), 24419 (6), -tower 3620: eta = 0.25, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 275.77 - sampling = 0, 10 SCIndices: 16036 (1), 17380 (3), 17444 (1), 17508 (1), 17572 (2), 21156 (5), 21220 (5), 21284 (6), 21348 (6), 24420 (6), -tower 3621: eta = 0.25, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 214.947 - sampling = 0, 10 SCIndices: 16037 (1), 17381 (3), 17445 (1), 17509 (1), 17573 (2), 21157 (5), 21221 (5), 21285 (6), 21349 (6), 24421 (6), -tower 3622: eta = 0.25, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16038 (1), 17382 (3), 17446 (1), 17510 (1), 17574 (2), 21158 (5), 21222 (5), 21286 (6), 21350 (6), 24422 (6), -tower 3623: eta = 0.25, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = -185.175 - sampling = 0, 10 SCIndices: 16039 (1), 17383 (3), 17447 (1), 17511 (1), 17575 (2), 21159 (5), 21223 (5), 21287 (6), 21351 (6), 24423 (6), -tower 3624: eta = 0.25, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 140.408 - sampling = 0, 10 SCIndices: 16040 (1), 17384 (3), 17448 (1), 17512 (1), 17576 (2), 21160 (5), 21224 (5), 21288 (6), 21352 (6), 24424 (6), -tower 3625: eta = 0.25, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 638.231 - sampling = 0, 10 SCIndices: 16041 (1), 17385 (3), 17449 (1), 17513 (1), 17577 (2), 21161 (5), 21225 (5), 21289 (6), 21353 (6), 24425 (6), -tower 3626: eta = 0.25, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 183.132 - sampling = 0, 10 SCIndices: 16042 (1), 17386 (3), 17450 (1), 17514 (1), 17578 (2), 21162 (5), 21226 (5), 21290 (6), 21354 (6), 24426 (6), -tower 3627: eta = 0.25, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = -12.4897 - sampling = 0, 10 SCIndices: 16043 (1), 17387 (3), 17451 (1), 17515 (1), 17579 (2), 21163 (5), 21227 (5), 21291 (6), 21355 (6), 24427 (6), -tower 3628: eta = 0.25, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 241.056 - sampling = 0, 10 SCIndices: 16044 (1), 17388 (3), 17452 (1), 17516 (1), 17580 (2), 21164 (5), 21228 (5), 21292 (6), 21356 (6), 24428 (6), -tower 3629: eta = 0.25, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = -80.1354 - sampling = 0, 10 SCIndices: 16045 (1), 17389 (3), 17453 (1), 17517 (1), 17581 (2), 21165 (5), 21229 (5), 21293 (6), 21357 (6), 24429 (6), -tower 3630: eta = 0.25, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 118.96 - sampling = 0, 10 SCIndices: 16046 (1), 17390 (3), 17454 (1), 17518 (1), 17582 (2), 21166 (5), 21230 (5), 21294 (6), 21358 (6), 24430 (6), -tower 3631: eta = 0.25, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16047 (1), 17391 (3), 17455 (1), 17519 (1), 17583 (2), 21167 (5), 21231 (5), 21295 (6), 21359 (6), 24431 (6), -tower 3632: eta = 0.25, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 600.735 - sampling = 0, 10 SCIndices: 16048 (1), 17392 (3), 17456 (1), 17520 (1), 17584 (2), 21168 (5), 21232 (5), 21296 (6), 21360 (6), 24432 (7), -tower 3633: eta = 0.25, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16049 (1), 17393 (3), 17457 (1), 17521 (1), 17585 (2), 21169 (5), 21233 (5), 21297 (6), 21361 (6), 24433 (7), -tower 3634: eta = 0.25, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 810.729 - sampling = 0, 10 SCIndices: 16050 (1), 17394 (3), 17458 (1), 17522 (1), 17586 (2), 21170 (5), 21234 (5), 21298 (6), 21362 (6), 24434 (7), -tower 3635: eta = 0.25, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16051 (1), 17395 (3), 17459 (1), 17523 (1), 17587 (2), 21171 (5), 21235 (5), 21299 (6), 21363 (6), 24435 (7), -tower 3636: eta = 0.25, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 157.99 - sampling = 0, 10 SCIndices: 16052 (1), 17396 (3), 17460 (1), 17524 (1), 17588 (2), 21172 (5), 21236 (5), 21300 (6), 21364 (6), 24436 (7), -tower 3637: eta = 0.25, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 121.829 - sampling = 0, 10 SCIndices: 16053 (1), 17397 (3), 17461 (1), 17525 (1), 17589 (2), 21173 (5), 21237 (5), 21301 (6), 21365 (6), 24437 (7), -tower 3638: eta = 0.25, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16054 (1), 17398 (3), 17462 (1), 17526 (1), 17590 (2), 21174 (5), 21238 (5), 21302 (6), 21366 (6), 24438 (7), -tower 3639: eta = 0.25, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16055 (1), 17399 (3), 17463 (1), 17527 (1), 17591 (2), 21175 (5), 21239 (5), 21303 (6), 21367 (6), 24439 (7), -tower 3640: eta = 0.25, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 144.983 - sampling = 0, 10 SCIndices: 16056 (1), 17400 (0), 17464 (1), 17528 (1), 17592 (2), 21176 (5), 21240 (5), 21304 (6), 21368 (6), 24440 (7), -tower 3641: eta = 0.25, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16057 (1), 17401 (0), 17465 (1), 17529 (1), 17593 (2), 21177 (5), 21241 (5), 21305 (6), 21369 (6), 24441 (7), -tower 3642: eta = 0.25, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 170.905 - sampling = 0, 10 SCIndices: 16058 (1), 17402 (0), 17466 (1), 17530 (1), 17594 (2), 21178 (5), 21242 (5), 21306 (6), 21370 (6), 24442 (7), -tower 3643: eta = 0.25, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = -49.6508 - sampling = 0, 10 SCIndices: 16059 (1), 17403 (0), 17467 (1), 17531 (1), 17595 (2), 21179 (5), 21243 (5), 21307 (6), 21371 (6), 24443 (7), -tower 3644: eta = 0.25, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 140.389 - sampling = 0, 10 SCIndices: 16060 (1), 17404 (0), 17468 (1), 17532 (1), 17596 (2), 21180 (5), 21244 (5), 21308 (6), 21372 (6), 24444 (7), -tower 3645: eta = 0.25, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 371.833 - sampling = 0, 10 SCIndices: 16061 (1), 17405 (0), 17469 (1), 17533 (1), 17597 (2), 21181 (5), 21245 (5), 21309 (6), 21373 (6), 24445 (7), -tower 3646: eta = 0.25, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16062 (1), 17406 (0), 17470 (1), 17534 (1), 17598 (2), 21182 (5), 21246 (5), 21310 (6), 21374 (6), 24446 (7), -tower 3647: eta = 0.25, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16063 (1), 17407 (0), 17471 (1), 17535 (1), 17599 (2), 21183 (5), 21247 (5), 21311 (6), 21375 (6), 24447 (7), -tower 3648: eta = 0.35, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 98.3945 - sampling = 0, 10 SCIndices: 16064 (1), 17600 (2), 17664 (3), 17728 (1), 17792 (1), 21376 (7), 21440 (5), 21504 (6), 21568 (6), 24448 (7), -tower 3649: eta = 0.35, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16065 (1), 17601 (2), 17665 (3), 17729 (1), 17793 (1), 21377 (7), 21441 (5), 21505 (6), 21569 (6), 24449 (7), -tower 3650: eta = 0.35, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 26.6647 - sampling = 0, 10 SCIndices: 16066 (1), 17602 (2), 17666 (3), 17730 (1), 17794 (1), 21378 (7), 21442 (5), 21506 (6), 21570 (6), 24450 (7), -tower 3651: eta = 0.35, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16067 (1), 17603 (2), 17667 (3), 17731 (1), 17795 (1), 21379 (7), 21443 (5), 21507 (6), 21571 (6), 24451 (7), -tower 3652: eta = 0.35, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 788.646 - sampling = 0, 10 SCIndices: 16068 (1), 17604 (2), 17668 (3), 17732 (1), 17796 (1), 21380 (7), 21444 (5), 21508 (6), 21572 (6), 24452 (7), -tower 3653: eta = 0.35, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 371.838 - sampling = 0, 10 SCIndices: 16069 (1), 17605 (2), 17669 (3), 17733 (1), 17797 (1), 21381 (7), 21445 (5), 21509 (6), 21573 (6), 24453 (7), -tower 3654: eta = 0.35, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 347.178 - sampling = 0, 10 SCIndices: 16070 (1), 17606 (2), 17670 (3), 17734 (1), 17798 (1), 21382 (7), 21446 (5), 21510 (6), 21574 (6), 24454 (7), -tower 3655: eta = 0.35, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16071 (1), 17607 (2), 17671 (3), 17735 (1), 17799 (1), 21383 (7), 21447 (5), 21511 (6), 21575 (6), 24455 (7), -tower 3656: eta = 0.35, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 744.619 - sampling = 0, 10 SCIndices: 16072 (1), 17608 (2), 17672 (3), 17736 (1), 17800 (1), 21384 (7), 21448 (5), 21512 (6), 21576 (6), 24456 (7), -tower 3657: eta = 0.35, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = -13.1613 - sampling = 0, 10 SCIndices: 16073 (1), 17609 (2), 17673 (3), 17737 (1), 17801 (1), 21385 (7), 21449 (5), 21513 (6), 21577 (6), 24457 (7), -tower 3658: eta = 0.35, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 441.324 - sampling = 0, 10 SCIndices: 16074 (1), 17610 (2), 17674 (3), 17738 (1), 17802 (1), 21386 (7), 21450 (5), 21514 (6), 21578 (6), 24458 (7), -tower 3659: eta = 0.35, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 1031.61 - sampling = 0, 10 SCIndices: 16075 (1), 17611 (2), 17675 (3), 17739 (1), 17803 (1), 21387 (7), 21451 (5), 21515 (6), 21579 (6), 24459 (7), -tower 3660: eta = 0.35, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 477.209 - sampling = 0, 10 SCIndices: 16076 (1), 17612 (2), 17676 (3), 17740 (1), 17804 (1), 21388 (7), 21452 (5), 21516 (6), 21580 (6), 24460 (7), -tower 3661: eta = 0.35, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 2481.55 - sampling = 0, 10 SCIndices: 16077 (1), 17613 (2), 17677 (3), 17741 (1), 17805 (1), 21389 (7), 21453 (5), 21517 (6), 21581 (6), 24461 (7), -tower 3662: eta = 0.35, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 700.576 - sampling = 0, 10 SCIndices: 16078 (1), 17614 (2), 17678 (3), 17742 (1), 17806 (1), 21390 (7), 21454 (5), 21518 (6), 21582 (6), 24462 (7), -tower 3663: eta = 0.35, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 174.101 - sampling = 0, 10 SCIndices: 16079 (1), 17615 (2), 17679 (3), 17743 (1), 17807 (1), 21391 (7), 21455 (5), 21519 (6), 21583 (6), 24463 (7), -tower 3664: eta = 0.35, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 42.3648 - sampling = 0, 10 SCIndices: 16080 (1), 17616 (2), 17680 (3), 17744 (1), 17808 (1), 21392 (7), 21456 (5), 21520 (6), 21584 (6), 24464 (4), -tower 3665: eta = 0.35, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 103.757 - sampling = 0, 10 SCIndices: 16081 (1), 17617 (2), 17681 (3), 17745 (1), 17809 (1), 21393 (7), 21457 (5), 21521 (6), 21585 (6), 24465 (4), -tower 3666: eta = 0.35, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 151.951 - sampling = 0, 10 SCIndices: 16082 (1), 17618 (2), 17682 (3), 17746 (1), 17810 (1), 21394 (7), 21458 (5), 21522 (6), 21586 (6), 24466 (4), -tower 3667: eta = 0.35, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 212.794 - sampling = 0, 10 SCIndices: 16083 (1), 17619 (2), 17683 (3), 17747 (1), 17811 (1), 21395 (7), 21459 (5), 21523 (6), 21587 (6), 24467 (4), -tower 3668: eta = 0.35, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 136.865 - sampling = 0, 10 SCIndices: 16084 (1), 17620 (2), 17684 (3), 17748 (1), 17812 (1), 21396 (7), 21460 (5), 21524 (6), 21588 (6), 24468 (4), -tower 3669: eta = 0.35, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 50.9033 - sampling = 0, 10 SCIndices: 16085 (1), 17621 (2), 17685 (3), 17749 (1), 17813 (1), 21397 (7), 21461 (5), 21525 (6), 21589 (6), 24469 (4), -tower 3670: eta = 0.35, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 86.2155 - sampling = 0, 10 SCIndices: 16086 (1), 17622 (2), 17686 (3), 17750 (1), 17814 (1), 21398 (7), 21462 (5), 21526 (6), 21590 (6), 24470 (4), -tower 3671: eta = 0.35, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 477.306 - sampling = 0, 10 SCIndices: 16087 (1), 17623 (2), 17687 (3), 17751 (1), 17815 (1), 21399 (7), 21463 (5), 21527 (6), 21591 (6), 24471 (4), -tower 3672: eta = 0.35, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 166.688 - sampling = 0, 10 SCIndices: 16088 (1), 17624 (2), 17688 (3), 17752 (1), 17816 (1), 21400 (7), 21464 (5), 21528 (6), 21592 (6), 24472 (5), -tower 3673: eta = 0.35, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 235.912 - sampling = 0, 10 SCIndices: 16089 (1), 17625 (2), 17689 (3), 17753 (1), 17817 (1), 21401 (7), 21465 (5), 21529 (6), 21593 (6), 24473 (5), -tower 3674: eta = 0.35, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 170.042 - sampling = 0, 10 SCIndices: 16090 (1), 17626 (2), 17690 (0), 17754 (1), 17818 (1), 21402 (7), 21466 (5), 21530 (6), 21594 (6), 24474 (5), -tower 3675: eta = 0.35, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = -50.0239 - sampling = 0, 10 SCIndices: 16091 (1), 17627 (2), 17691 (0), 17755 (1), 17819 (1), 21403 (7), 21467 (5), 21531 (6), 21595 (6), 24475 (5), -tower 3676: eta = 0.35, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 151.787 - sampling = 0, 10 SCIndices: 16092 (1), 17628 (2), 17692 (0), 17756 (1), 17820 (1), 21404 (7), 21468 (5), 21532 (6), 21596 (6), 24476 (5), -tower 3677: eta = 0.35, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16093 (1), 17629 (2), 17693 (0), 17757 (1), 17821 (1), 21405 (7), 21469 (5), 21533 (6), 21597 (6), 24477 (5), -tower 3678: eta = 0.35, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = -189.394 - sampling = 0, 10 SCIndices: 16094 (1), 17630 (2), 17694 (0), 17758 (1), 17822 (1), 21406 (7), 21470 (5), 21534 (6), 21598 (6), 24478 (5), -tower 3679: eta = 0.35, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 136.904 - sampling = 0, 10 SCIndices: 16095 (1), 17631 (2), 17695 (0), 17759 (1), 17823 (1), 21407 (7), 21471 (5), 21535 (6), 21599 (6), 24479 (5), -tower 3680: eta = 0.35, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 231.455 - sampling = 0, 10 SCIndices: 16096 (1), 17632 (2), 17696 (0), 17760 (1), 17824 (1), 21408 (4), 21472 (5), 21536 (6), 21600 (6), 24480 (5), -tower 3681: eta = 0.35, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 357.986 - sampling = 0, 10 SCIndices: 16097 (1), 17633 (2), 17697 (0), 17761 (1), 17825 (1), 21409 (4), 21473 (5), 21537 (6), 21601 (6), 24481 (5), -tower 3682: eta = 0.35, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 431.87 - sampling = 0, 10 SCIndices: 16098 (2), 17634 (2), 17698 (0), 17762 (1), 17826 (1), 21410 (4), 21474 (5), 21538 (6), 21602 (6), 24482 (5), -tower 3683: eta = 0.35, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = -35.5427 - sampling = 0, 10 SCIndices: 16099 (2), 17635 (2), 17699 (0), 17763 (1), 17827 (1), 21411 (4), 21475 (5), 21539 (6), 21603 (6), 24483 (5), -tower 3684: eta = 0.35, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 699.707 - sampling = 0, 10 SCIndices: 16100 (2), 17636 (2), 17700 (0), 17764 (1), 17828 (1), 21412 (4), 21476 (5), 21540 (6), 21604 (6), 24484 (5), -tower 3685: eta = 0.35, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16101 (2), 17637 (2), 17701 (0), 17765 (1), 17829 (1), 21413 (4), 21477 (5), 21541 (6), 21605 (6), 24485 (5), -tower 3686: eta = 0.35, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 351.487 - sampling = 0, 10 SCIndices: 16102 (2), 17638 (2), 17702 (0), 17766 (1), 17830 (1), 21414 (4), 21478 (5), 21542 (6), 21606 (6), 24486 (5), -tower 3687: eta = 0.35, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = -38.6415 - sampling = 0, 10 SCIndices: 16103 (2), 17639 (2), 17703 (0), 17767 (1), 17831 (1), 21415 (4), 21479 (5), 21543 (6), 21607 (6), 24487 (5), -tower 3688: eta = 0.35, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = -14.1105 - sampling = 0, 10 SCIndices: 16104 (2), 17640 (2), 17704 (0), 17768 (1), 17832 (1), 21416 (4), 21480 (5), 21544 (6), 21608 (6), 24488 (5), -tower 3689: eta = 0.35, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 732.308 - sampling = 0, 10 SCIndices: 16105 (2), 17641 (2), 17705 (0), 17769 (1), 17833 (1), 21417 (4), 21481 (5), 21545 (6), 21609 (6), 24489 (5), -tower 3690: eta = 0.35, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 100.98 - sampling = 0, 10 SCIndices: 16106 (2), 17642 (2), 17706 (0), 17770 (1), 17834 (1), 21418 (4), 21482 (5), 21546 (6), 21610 (6), 24490 (5), -tower 3691: eta = 0.35, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 477.778 - sampling = 0, 10 SCIndices: 16107 (2), 17643 (2), 17707 (0), 17771 (1), 17835 (1), 21419 (4), 21483 (5), 21547 (6), 21611 (6), 24491 (5), -tower 3692: eta = 0.35, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 392.458 - sampling = 0, 10 SCIndices: 16108 (2), 17644 (2), 17708 (0), 17772 (1), 17836 (1), 21420 (4), 21484 (5), 21548 (6), 21612 (6), 24492 (5), -tower 3693: eta = 0.35, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 317.219 - sampling = 0, 10 SCIndices: 16109 (2), 17645 (2), 17709 (0), 17773 (1), 17837 (1), 21421 (4), 21485 (5), 21549 (6), 21613 (6), 24493 (5), -tower 3694: eta = 0.35, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 187.686 - sampling = 0, 10 SCIndices: 16110 (2), 17646 (2), 17710 (0), 17774 (1), 17838 (2), 21422 (4), 21486 (5), 21550 (6), 21614 (6), 24494 (5), -tower 3695: eta = 0.35, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 139.957 - sampling = 0, 10 SCIndices: 16111 (2), 17647 (2), 17711 (0), 17775 (1), 17839 (2), 21423 (4), 21487 (5), 21551 (6), 21615 (6), 24495 (5), -tower 3696: eta = 0.35, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 181.338 - sampling = 0, 10 SCIndices: 16112 (2), 17648 (2), 17712 (0), 17776 (1), 17840 (2), 21424 (5), 21488 (5), 21552 (6), 21616 (6), 24496 (5), -tower 3697: eta = 0.35, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 215.896 - sampling = 0, 10 SCIndices: 16113 (2), 17649 (2), 17713 (0), 17777 (1), 17841 (2), 21425 (5), 21489 (5), 21553 (6), 21617 (6), 24497 (5), -tower 3698: eta = 0.35, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16114 (2), 17650 (2), 17714 (0), 17778 (1), 17842 (2), 21426 (5), 21490 (5), 21554 (6), 21618 (6), 24498 (5), -tower 3699: eta = 0.35, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 136.925 - sampling = 0, 10 SCIndices: 16115 (2), 17651 (2), 17715 (0), 17779 (1), 17843 (2), 21427 (5), 21491 (5), 21555 (6), 21619 (6), 24499 (5), -tower 3700: eta = 0.35, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 593.055 - sampling = 0, 10 SCIndices: 16116 (2), 17652 (2), 17716 (0), 17780 (1), 17844 (2), 21428 (5), 21492 (5), 21556 (6), 21620 (6), 24500 (5), -tower 3701: eta = 0.35, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 28.4256 - sampling = 0, 10 SCIndices: 16117 (2), 17653 (2), 17717 (0), 17781 (1), 17845 (2), 21429 (5), 21493 (5), 21557 (6), 21621 (6), 24501 (5), -tower 3702: eta = 0.35, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 98.4249 - sampling = 0, 10 SCIndices: 16118 (2), 17654 (2), 17718 (0), 17782 (1), 17846 (2), 21430 (5), 21494 (5), 21558 (6), 21622 (6), 24502 (5), -tower 3703: eta = 0.35, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 693.312 - sampling = 0, 10 SCIndices: 16119 (2), 17655 (2), 17719 (0), 17783 (1), 17847 (2), 21431 (5), 21495 (5), 21559 (6), 21623 (6), 24503 (5), -tower 3704: eta = 0.35, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 96.0432 - sampling = 0, 10 SCIndices: 16120 (2), 17656 (2), 17720 (1), 17784 (1), 17848 (2), 21432 (5), 21496 (5), 21560 (6), 21624 (6), 24504 (5), -tower 3705: eta = 0.35, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 674.752 - sampling = 0, 10 SCIndices: 16121 (2), 17657 (2), 17721 (1), 17785 (1), 17849 (2), 21433 (5), 21497 (5), 21561 (6), 21625 (6), 24505 (5), -tower 3706: eta = 0.35, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 291.761 - sampling = 0, 10 SCIndices: 16122 (2), 17658 (2), 17722 (1), 17786 (1), 17850 (2), 21434 (5), 21498 (5), 21562 (6), 21626 (6), 24506 (5), -tower 3707: eta = 0.35, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 546.349 - sampling = 0, 10 SCIndices: 16123 (2), 17659 (2), 17723 (1), 17787 (1), 17851 (2), 21435 (5), 21499 (5), 21563 (6), 21627 (6), 24507 (5), -tower 3708: eta = 0.35, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16124 (2), 17660 (2), 17724 (1), 17788 (1), 17852 (2), 21436 (5), 21500 (5), 21564 (6), 21628 (6), 24508 (5), -tower 3709: eta = 0.35, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 357.797 - sampling = 0, 10 SCIndices: 16125 (2), 17661 (2), 17725 (1), 17789 (1), 17853 (2), 21437 (5), 21501 (5), 21565 (6), 21629 (6), 24509 (5), -tower 3710: eta = 0.35, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16126 (2), 17662 (3), 17726 (1), 17790 (1), 17854 (2), 21438 (5), 21502 (5), 21566 (6), 21630 (6), 24510 (5), -tower 3711: eta = 0.35, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 78.4903 - sampling = 0, 10 SCIndices: 16127 (2), 17663 (3), 17727 (1), 17791 (1), 17855 (2), 21439 (5), 21503 (5), 21567 (6), 21631 (6), 24511 (5), -tower 3712: eta = 0.45, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16128 (2), 17856 (2), 17920 (2), 17984 (0), 18048 (1), 21632 (7), 21696 (7), 21760 (6), 21824 (8), 24512 (5), -tower 3713: eta = 0.45, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 97.6935 - sampling = 0, 10 SCIndices: 16129 (2), 17857 (2), 17921 (2), 17985 (0), 18049 (1), 21633 (7), 21697 (7), 21761 (6), 21825 (8), 24513 (5), -tower 3714: eta = 0.45, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 298.773 - sampling = 0, 10 SCIndices: 16130 (2), 17858 (2), 17922 (2), 17986 (0), 18050 (1), 21634 (7), 21698 (7), 21762 (6), 21826 (8), 24514 (5), -tower 3715: eta = 0.45, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 266.514 - sampling = 0, 10 SCIndices: 16131 (2), 17859 (2), 17923 (2), 17987 (0), 18051 (1), 21635 (7), 21699 (7), 21763 (6), 21827 (8), 24515 (5), -tower 3716: eta = 0.45, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 65.3605 - sampling = 0, 10 SCIndices: 16132 (2), 17860 (2), 17924 (2), 17988 (0), 18052 (1), 21636 (7), 21700 (7), 21764 (6), 21828 (8), 24516 (5), -tower 3717: eta = 0.45, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16133 (2), 17861 (2), 17925 (2), 17989 (0), 18053 (1), 21637 (7), 21701 (7), 21765 (6), 21829 (8), 24517 (5), -tower 3718: eta = 0.45, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16134 (2), 17862 (2), 17926 (2), 17990 (0), 18054 (1), 21638 (7), 21702 (7), 21766 (6), 21830 (8), 24518 (5), -tower 3719: eta = 0.45, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 784.659 - sampling = 0, 10 SCIndices: 16135 (2), 17863 (2), 17927 (2), 17991 (0), 18055 (1), 21639 (7), 21703 (7), 21767 (6), 21831 (8), 24519 (5), -tower 3720: eta = 0.45, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 135.815 - sampling = 0, 10 SCIndices: 16136 (2), 17864 (2), 17928 (2), 17992 (0), 18056 (1), 21640 (7), 21704 (7), 21768 (6), 21832 (8), 24520 (5), -tower 3721: eta = 0.45, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 68.9737 - sampling = 0, 10 SCIndices: 16137 (2), 17865 (2), 17929 (2), 17993 (0), 18057 (1), 21641 (7), 21705 (7), 21769 (6), 21833 (8), 24521 (5), -tower 3722: eta = 0.45, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 407.567 - sampling = 0, 10 SCIndices: 16138 (2), 17866 (2), 17930 (2), 17994 (0), 18058 (1), 21642 (7), 21706 (7), 21770 (6), 21834 (8), 24522 (5), -tower 3723: eta = 0.45, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 175.022 - sampling = 0, 10 SCIndices: 16139 (2), 17867 (2), 17931 (2), 17995 (0), 18059 (1), 21643 (7), 21707 (7), 21771 (6), 21835 (8), 24523 (5), -tower 3724: eta = 0.45, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 141.625 - sampling = 0, 10 SCIndices: 16140 (2), 17868 (2), 17932 (2), 17996 (0), 18060 (1), 21644 (7), 21708 (7), 21772 (6), 21836 (8), 24524 (5), -tower 3725: eta = 0.45, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 7.59244 - sampling = 0, 10 SCIndices: 16141 (2), 17869 (2), 17933 (2), 17997 (0), 18061 (1), 21645 (7), 21709 (7), 21773 (6), 21837 (8), 24525 (5), -tower 3726: eta = 0.45, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 40.7278 - sampling = 0, 10 SCIndices: 16142 (2), 17870 (2), 17934 (2), 17998 (0), 18062 (1), 21646 (7), 21710 (7), 21774 (6), 21838 (8), 24526 (5), -tower 3727: eta = 0.45, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 614.798 - sampling = 0, 10 SCIndices: 16143 (2), 17871 (2), 17935 (2), 17999 (0), 18063 (1), 21647 (7), 21711 (7), 21775 (6), 21839 (8), 24527 (5), -tower 3728: eta = 0.45, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 348.496 - sampling = 0, 10 SCIndices: 16144 (2), 17872 (2), 17936 (2), 18000 (0), 18064 (1), 21648 (6), 21712 (5), 21776 (6), 21840 (8), 24528 (5), -tower 3729: eta = 0.45, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 48.2074 - sampling = 0, 10 SCIndices: 16145 (2), 17873 (2), 17937 (2), 18001 (0), 18065 (1), 21649 (6), 21713 (5), 21777 (6), 21841 (8), 24529 (5), -tower 3730: eta = 0.45, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 330.037 - sampling = 0, 10 SCIndices: 16146 (2), 17874 (2), 17938 (2), 18002 (0), 18066 (1), 21650 (6), 21714 (5), 21778 (6), 21842 (8), 24530 (5), -tower 3731: eta = 0.45, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 750.151 - sampling = 0, 10 SCIndices: 16147 (2), 17875 (2), 17939 (2), 18003 (0), 18067 (1), 21651 (6), 21715 (5), 21779 (6), 21843 (8), 24531 (5), -tower 3732: eta = 0.45, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16148 (2), 17876 (2), 17940 (2), 18004 (0), 18068 (1), 21652 (6), 21716 (5), 21780 (6), 21844 (8), 24532 (5), -tower 3733: eta = 0.45, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 92.4966 - sampling = 0, 10 SCIndices: 16149 (2), 17877 (2), 17941 (2), 18005 (0), 18069 (1), 21653 (6), 21717 (5), 21781 (6), 21845 (8), 24533 (5), -tower 3734: eta = 0.45, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 220.83 - sampling = 0, 10 SCIndices: 16150 (2), 17878 (2), 17942 (2), 18006 (0), 18070 (1), 21654 (6), 21718 (5), 21782 (6), 21846 (8), 24534 (5), -tower 3735: eta = 0.45, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 225.207 - sampling = 0, 10 SCIndices: 16151 (2), 17879 (2), 17943 (2), 18007 (0), 18071 (1), 21655 (6), 21719 (5), 21783 (6), 21847 (8), 24535 (5), -tower 3736: eta = 0.45, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16152 (2), 17880 (2), 17944 (2), 18008 (0), 18072 (1), 21656 (6), 21720 (5), 21784 (6), 21848 (8), 24536 (5), -tower 3737: eta = 0.45, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 798.162 - sampling = 0, 10 SCIndices: 16153 (2), 17881 (2), 17945 (2), 18009 (0), 18073 (1), 21657 (6), 21721 (5), 21785 (6), 21849 (8), 24537 (5), -tower 3738: eta = 0.45, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 309.694 - sampling = 0, 10 SCIndices: 16154 (2), 17882 (2), 17946 (2), 18010 (1), 18074 (1), 21658 (6), 21722 (5), 21786 (6), 21850 (8), 24538 (5), -tower 3739: eta = 0.45, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 5.55935 - sampling = 0, 10 SCIndices: 16155 (2), 17883 (2), 17947 (2), 18011 (1), 18075 (1), 21659 (6), 21723 (5), 21787 (6), 21851 (8), 24539 (5), -tower 3740: eta = 0.45, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 216.68 - sampling = 0, 10 SCIndices: 16156 (2), 17884 (2), 17948 (2), 18012 (1), 18076 (1), 21660 (6), 21724 (5), 21788 (6), 21852 (8), 24540 (5), -tower 3741: eta = 0.45, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 543.573 - sampling = 0, 10 SCIndices: 16157 (2), 17885 (2), 17949 (2), 18013 (1), 18077 (1), 21661 (6), 21725 (5), 21789 (6), 21853 (8), 24541 (5), -tower 3742: eta = 0.45, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = -248.995 - sampling = 0, 10 SCIndices: 16158 (2), 17886 (2), 17950 (2), 18014 (1), 18078 (1), 21662 (6), 21726 (5), 21790 (6), 21854 (8), 24542 (5), -tower 3743: eta = 0.45, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16159 (2), 17887 (2), 17951 (2), 18015 (1), 18079 (1), 21663 (6), 21727 (5), 21791 (6), 21855 (8), 24543 (5), -tower 3744: eta = 0.45, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 596.673 - sampling = 0, 10 SCIndices: 16160 (2), 17888 (2), 17952 (3), 18016 (1), 18080 (1), 21664 (6), 21728 (6), 21792 (7), 21856 (8), 24544 (5), -tower 3745: eta = 0.45, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16161 (2), 17889 (2), 17953 (3), 18017 (1), 18081 (1), 21665 (6), 21729 (6), 21793 (7), 21857 (8), 24545 (5), -tower 3746: eta = 0.45, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 228.514 - sampling = 0, 10 SCIndices: 16162 (2), 17890 (2), 17954 (3), 18018 (1), 18082 (1), 21666 (6), 21730 (6), 21794 (7), 21858 (8), 24546 (5), -tower 3747: eta = 0.45, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 295.226 - sampling = 0, 10 SCIndices: 16163 (2), 17891 (2), 17955 (3), 18019 (1), 18083 (1), 21667 (6), 21731 (6), 21795 (7), 21859 (8), 24547 (5), -tower 3748: eta = 0.45, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 142.853 - sampling = 0, 10 SCIndices: 16164 (2), 17892 (2), 17956 (3), 18020 (1), 18084 (1), 21668 (6), 21732 (6), 21796 (7), 21860 (8), 24548 (5), -tower 3749: eta = 0.45, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 134.405 - sampling = 0, 10 SCIndices: 16165 (2), 17893 (2), 17957 (3), 18021 (1), 18085 (1), 21669 (6), 21733 (6), 21797 (7), 21861 (8), 24549 (5), -tower 3750: eta = 0.45, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 46.5395 - sampling = 0, 10 SCIndices: 16166 (2), 17894 (2), 17958 (3), 18022 (1), 18086 (1), 21670 (6), 21734 (6), 21798 (7), 21862 (8), 24550 (5), -tower 3751: eta = 0.45, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 44.3265 - sampling = 0, 10 SCIndices: 16167 (2), 17895 (2), 17959 (3), 18023 (1), 18087 (1), 21671 (6), 21735 (6), 21799 (7), 21863 (8), 24551 (5), -tower 3752: eta = 0.45, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = -36.8959 - sampling = 0, 10 SCIndices: 16168 (2), 17896 (2), 17960 (3), 18024 (1), 18088 (1), 21672 (6), 21736 (6), 21800 (7), 21864 (8), 24552 (5), -tower 3753: eta = 0.45, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16169 (2), 17897 (2), 17961 (3), 18025 (1), 18089 (1), 21673 (6), 21737 (6), 21801 (7), 21865 (8), 24553 (5), -tower 3754: eta = 0.45, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 927.431 - sampling = 0, 10 SCIndices: 16170 (2), 17898 (2), 17962 (3), 18026 (1), 18090 (1), 21674 (6), 21738 (6), 21802 (7), 21866 (8), 24554 (5), -tower 3755: eta = 0.45, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16171 (2), 17899 (2), 17963 (3), 18027 (1), 18091 (1), 21675 (6), 21739 (6), 21803 (7), 21867 (8), 24555 (5), -tower 3756: eta = 0.45, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 897.294 - sampling = 0, 10 SCIndices: 16172 (2), 17900 (2), 17964 (3), 18028 (1), 18092 (1), 21676 (6), 21740 (6), 21804 (7), 21868 (8), 24556 (5), -tower 3757: eta = 0.45, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 407.114 - sampling = 0, 10 SCIndices: 16173 (2), 17901 (2), 17965 (3), 18029 (1), 18093 (1), 21677 (6), 21741 (6), 21805 (7), 21869 (8), 24557 (5), -tower 3758: eta = 0.45, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 89.108 - sampling = 0, 10 SCIndices: 16174 (2), 17902 (2), 17966 (3), 18030 (1), 18094 (1), 21678 (6), 21742 (6), 21806 (7), 21870 (8), 24558 (5), -tower 3759: eta = 0.45, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 2.28761 - sampling = 0, 10 SCIndices: 16175 (2), 17903 (2), 17967 (3), 18031 (1), 18095 (1), 21679 (6), 21743 (6), 21807 (7), 21871 (8), 24559 (5), -tower 3760: eta = 0.45, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 500.513 - sampling = 0, 10 SCIndices: 16176 (2), 17904 (2), 17968 (3), 18032 (1), 18096 (1), 21680 (7), 21744 (6), 21808 (8), 21872 (8), 24560 (5), -tower 3761: eta = 0.45, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 329.568 - sampling = 0, 10 SCIndices: 16177 (2), 17905 (2), 17969 (3), 18033 (1), 18097 (1), 21681 (7), 21745 (6), 21809 (8), 21873 (8), 24561 (5), -tower 3762: eta = 0.45, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 679.486 - sampling = 0, 10 SCIndices: 16178 (2), 17906 (2), 17970 (3), 18034 (1), 18098 (1), 21682 (7), 21746 (6), 21810 (8), 21874 (8), 24562 (5), -tower 3763: eta = 0.45, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16179 (2), 17907 (2), 17971 (3), 18035 (1), 18099 (1), 21683 (7), 21747 (6), 21811 (8), 21875 (8), 24563 (5), -tower 3764: eta = 0.45, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16180 (2), 17908 (2), 17972 (3), 18036 (1), 18100 (1), 21684 (7), 21748 (6), 21812 (8), 21876 (8), 24564 (5), -tower 3765: eta = 0.45, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 542.019 - sampling = 0, 10 SCIndices: 16181 (2), 17909 (2), 17973 (3), 18037 (1), 18101 (1), 21685 (7), 21749 (6), 21813 (8), 21877 (8), 24565 (5), -tower 3766: eta = 0.45, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 175.137 - sampling = 0, 10 SCIndices: 16182 (2), 17910 (2), 17974 (3), 18038 (1), 18102 (1), 21686 (7), 21750 (6), 21814 (8), 21878 (8), 24566 (5), -tower 3767: eta = 0.45, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 341.581 - sampling = 0, 10 SCIndices: 16183 (2), 17911 (2), 17975 (3), 18039 (1), 18103 (1), 21687 (7), 21751 (6), 21815 (8), 21879 (8), 24567 (5), -tower 3768: eta = 0.45, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 828.392 - sampling = 0, 10 SCIndices: 16184 (2), 17912 (2), 17976 (3), 18040 (1), 18104 (1), 21688 (7), 21752 (6), 21816 (8), 21880 (8), 24568 (5), -tower 3769: eta = 0.45, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 205.98 - sampling = 0, 10 SCIndices: 16185 (2), 17913 (2), 17977 (3), 18041 (1), 18105 (1), 21689 (7), 21753 (6), 21817 (8), 21881 (8), 24569 (5), -tower 3770: eta = 0.45, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 731.585 - sampling = 0, 10 SCIndices: 16186 (2), 17914 (2), 17978 (3), 18042 (1), 18106 (1), 21690 (7), 21754 (6), 21818 (8), 21882 (8), 24570 (5), -tower 3771: eta = 0.45, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 169.851 - sampling = 0, 10 SCIndices: 16187 (2), 17915 (2), 17979 (3), 18043 (1), 18107 (1), 21691 (7), 21755 (6), 21819 (8), 21883 (8), 24571 (5), -tower 3772: eta = 0.45, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 180.885 - sampling = 0, 10 SCIndices: 16188 (2), 17916 (2), 17980 (0), 18044 (1), 18108 (1), 21692 (7), 21756 (6), 21820 (8), 21884 (8), 24572 (5), -tower 3773: eta = 0.45, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 222.546 - sampling = 0, 10 SCIndices: 16189 (2), 17917 (2), 17981 (0), 18045 (1), 18109 (1), 21693 (7), 21757 (6), 21821 (8), 21885 (8), 24573 (5), -tower 3774: eta = 0.45, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 345.004 - sampling = 0, 10 SCIndices: 16190 (2), 17918 (2), 17982 (0), 18046 (1), 18110 (1), 21694 (7), 21758 (6), 21822 (8), 21886 (8), 24574 (5), -tower 3775: eta = 0.45, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 274.243 - sampling = 0, 10 SCIndices: 16191 (2), 17919 (2), 17983 (0), 18047 (1), 18111 (1), 21695 (7), 21759 (6), 21823 (8), 21887 (8), 24575 (5), -tower 3776: eta = 0.55, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 407.834 - sampling = 0, 10 SCIndices: 16192 (2), 18112 (1), 18176 (2), 18240 (2), 18304 (1), 21888 (8), 21952 (8), 22016 (5), 22080 (5), 24576 (5), -tower 3777: eta = 0.55, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 222.239 - sampling = 0, 10 SCIndices: 16193 (2), 18113 (1), 18177 (2), 18241 (2), 18305 (1), 21889 (8), 21953 (8), 22017 (5), 22081 (5), 24577 (5), -tower 3778: eta = 0.55, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 1022.18 - sampling = 0, 10 SCIndices: 16194 (2), 18114 (1), 18178 (2), 18242 (3), 18306 (1), 21890 (8), 21954 (8), 22018 (5), 22082 (5), 24578 (5), -tower 3779: eta = 0.55, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 746.273 - sampling = 0, 10 SCIndices: 16195 (2), 18115 (1), 18179 (2), 18243 (3), 18307 (1), 21891 (8), 21955 (8), 22019 (5), 22083 (5), 24579 (5), -tower 3780: eta = 0.55, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 318.014 - sampling = 0, 10 SCIndices: 16196 (2), 18116 (1), 18180 (2), 18244 (3), 18308 (1), 21892 (8), 21956 (8), 22020 (5), 22084 (5), 24580 (5), -tower 3781: eta = 0.55, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = -88.9661 - sampling = 0, 10 SCIndices: 16197 (2), 18117 (1), 18181 (2), 18245 (3), 18309 (1), 21893 (8), 21957 (8), 22021 (5), 22085 (5), 24581 (5), -tower 3782: eta = 0.55, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 291.257 - sampling = 0, 10 SCIndices: 16198 (2), 18118 (1), 18182 (2), 18246 (3), 18310 (1), 21894 (8), 21958 (8), 22022 (5), 22086 (5), 24582 (5), -tower 3783: eta = 0.55, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 548.245 - sampling = 0, 10 SCIndices: 16199 (2), 18119 (1), 18183 (2), 18247 (3), 18311 (1), 21895 (8), 21959 (8), 22023 (5), 22087 (5), 24583 (5), -tower 3784: eta = 0.55, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 211.313 - sampling = 0, 10 SCIndices: 16200 (2), 18120 (1), 18184 (2), 18248 (3), 18312 (1), 21896 (8), 21960 (8), 22024 (5), 22088 (5), 24584 (5), -tower 3785: eta = 0.55, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 319.087 - sampling = 0, 10 SCIndices: 16201 (2), 18121 (1), 18185 (2), 18249 (3), 18313 (1), 21897 (8), 21961 (8), 22025 (5), 22089 (5), 24585 (5), -tower 3786: eta = 0.55, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 347.505 - sampling = 0, 10 SCIndices: 16202 (2), 18122 (1), 18186 (2), 18250 (3), 18314 (1), 21898 (8), 21962 (8), 22026 (5), 22090 (5), 24586 (5), -tower 3787: eta = 0.55, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 848.315 - sampling = 0, 10 SCIndices: 16203 (2), 18123 (1), 18187 (2), 18251 (3), 18315 (1), 21899 (8), 21963 (8), 22027 (5), 22091 (5), 24587 (5), -tower 3788: eta = 0.55, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 77.4817 - sampling = 0, 10 SCIndices: 16204 (2), 18124 (1), 18188 (2), 18252 (3), 18316 (1), 21900 (8), 21964 (8), 22028 (5), 22092 (5), 24588 (5), -tower 3789: eta = 0.55, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16205 (2), 18125 (1), 18189 (2), 18253 (3), 18317 (1), 21901 (8), 21965 (8), 22029 (5), 22093 (5), 24589 (5), -tower 3790: eta = 0.55, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 311.051 - sampling = 0, 10 SCIndices: 16206 (2), 18126 (1), 18190 (2), 18254 (3), 18318 (1), 21902 (8), 21966 (8), 22030 (5), 22094 (5), 24590 (5), -tower 3791: eta = 0.55, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 83.7309 - sampling = 0, 10 SCIndices: 16207 (2), 18127 (1), 18191 (2), 18255 (3), 18319 (1), 21903 (8), 21967 (8), 22031 (5), 22095 (5), 24591 (5), -tower 3792: eta = 0.55, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 380.947 - sampling = 0, 10 SCIndices: 16208 (2), 18128 (2), 18192 (2), 18256 (3), 18320 (1), 21904 (8), 21968 (8), 22032 (5), 22096 (5), 24592 (5), -tower 3793: eta = 0.55, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 148.948 - sampling = 0, 10 SCIndices: 16209 (2), 18129 (2), 18193 (2), 18257 (3), 18321 (1), 21905 (8), 21969 (8), 22033 (5), 22097 (5), 24593 (5), -tower 3794: eta = 0.55, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = -37.8711 - sampling = 0, 10 SCIndices: 16210 (2), 18130 (2), 18194 (2), 18258 (3), 18322 (1), 21906 (8), 21970 (8), 22034 (5), 22098 (5), 24594 (5), -tower 3795: eta = 0.55, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 171.871 - sampling = 0, 10 SCIndices: 16211 (2), 18131 (2), 18195 (2), 18259 (3), 18323 (1), 21907 (8), 21971 (8), 22035 (5), 22099 (5), 24595 (5), -tower 3796: eta = 0.55, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 282.319 - sampling = 0, 10 SCIndices: 16212 (3), 18132 (2), 18196 (2), 18260 (3), 18324 (1), 21908 (8), 21972 (8), 22036 (5), 22100 (5), 24596 (5), -tower 3797: eta = 0.55, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 454.956 - sampling = 0, 10 SCIndices: 16213 (3), 18133 (2), 18197 (2), 18261 (3), 18325 (1), 21909 (8), 21973 (8), 22037 (5), 22101 (5), 24597 (5), -tower 3798: eta = 0.55, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 1057.84 - sampling = 0, 10 SCIndices: 16214 (3), 18134 (2), 18198 (2), 18262 (3), 18326 (1), 21910 (8), 21974 (8), 22038 (5), 22102 (5), 24598 (5), -tower 3799: eta = 0.55, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 977.846 - sampling = 0, 10 SCIndices: 16215 (3), 18135 (2), 18199 (2), 18263 (3), 18327 (1), 21911 (8), 21975 (8), 22039 (5), 22103 (5), 24599 (5), -tower 3800: eta = 0.55, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 265.15 - sampling = 0, 10 SCIndices: 16216 (3), 18136 (2), 18200 (2), 18264 (3), 18328 (1), 21912 (8), 21976 (8), 22040 (5), 22104 (5), 24600 (5), -tower 3801: eta = 0.55, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 283.893 - sampling = 0, 10 SCIndices: 16217 (3), 18137 (2), 18201 (2), 18265 (3), 18329 (1), 21913 (8), 21977 (8), 22041 (5), 22105 (5), 24601 (5), -tower 3802: eta = 0.55, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 152.342 - sampling = 0, 10 SCIndices: 16218 (3), 18138 (2), 18202 (2), 18266 (3), 18330 (1), 21914 (8), 21978 (8), 22042 (5), 22106 (5), 24602 (5), -tower 3803: eta = 0.55, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16219 (3), 18139 (2), 18203 (2), 18267 (3), 18331 (1), 21915 (8), 21979 (8), 22043 (5), 22107 (5), 24603 (5), -tower 3804: eta = 0.55, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 740.728 - sampling = 0, 10 SCIndices: 16220 (3), 18140 (2), 18204 (2), 18268 (3), 18332 (1), 21916 (8), 21980 (8), 22044 (5), 22108 (5), 24604 (5), -tower 3805: eta = 0.55, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 107.177 - sampling = 0, 10 SCIndices: 16221 (3), 18141 (2), 18205 (2), 18269 (3), 18333 (1), 21917 (8), 21981 (8), 22045 (5), 22109 (5), 24605 (5), -tower 3806: eta = 0.55, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16222 (3), 18142 (2), 18206 (2), 18270 (0), 18334 (1), 21918 (8), 21982 (8), 22046 (5), 22110 (5), 24606 (5), -tower 3807: eta = 0.55, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 6.07986 - sampling = 0, 10 SCIndices: 16223 (3), 18143 (2), 18207 (2), 18271 (0), 18335 (1), 21919 (8), 21983 (8), 22047 (5), 22111 (5), 24607 (5), -tower 3808: eta = 0.55, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 129.805 - sampling = 0, 10 SCIndices: 16224 (3), 18144 (2), 18208 (2), 18272 (0), 18336 (1), 21920 (8), 21984 (8), 22048 (5), 22112 (5), 24608 (5), -tower 3809: eta = 0.55, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = -31.417 - sampling = 0, 10 SCIndices: 16225 (3), 18145 (2), 18209 (2), 18273 (0), 18337 (1), 21921 (8), 21985 (8), 22049 (5), 22113 (5), 24609 (5), -tower 3810: eta = 0.55, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = -34.9098 - sampling = 0, 10 SCIndices: 16226 (3), 18146 (2), 18210 (2), 18274 (0), 18338 (1), 21922 (8), 21986 (8), 22050 (5), 22114 (5), 24610 (5), -tower 3811: eta = 0.55, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 746.108 - sampling = 0, 10 SCIndices: 16227 (3), 18147 (2), 18211 (2), 18275 (0), 18339 (1), 21923 (8), 21987 (8), 22051 (5), 22115 (5), 24611 (5), -tower 3812: eta = 0.55, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 386.445 - sampling = 0, 10 SCIndices: 16228 (3), 18148 (2), 18212 (2), 18276 (0), 18340 (1), 21924 (8), 21988 (8), 22052 (5), 22116 (5), 24612 (5), -tower 3813: eta = 0.55, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 161.758 - sampling = 0, 10 SCIndices: 16229 (3), 18149 (2), 18213 (2), 18277 (0), 18341 (1), 21925 (8), 21989 (8), 22053 (5), 22117 (5), 24613 (5), -tower 3814: eta = 0.55, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 132.465 - sampling = 0, 10 SCIndices: 16230 (3), 18150 (2), 18214 (2), 18278 (0), 18342 (1), 21926 (8), 21990 (8), 22054 (5), 22118 (5), 24614 (5), -tower 3815: eta = 0.55, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 207.765 - sampling = 0, 10 SCIndices: 16231 (3), 18151 (2), 18215 (2), 18279 (0), 18343 (1), 21927 (8), 21991 (8), 22055 (5), 22119 (5), 24615 (5), -tower 3816: eta = 0.55, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16232 (3), 18152 (2), 18216 (2), 18280 (0), 18344 (1), 21928 (8), 21992 (8), 22056 (5), 22120 (5), 24616 (6), -tower 3817: eta = 0.55, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 165.431 - sampling = 0, 10 SCIndices: 16233 (3), 18153 (2), 18217 (2), 18281 (0), 18345 (1), 21929 (8), 21993 (8), 22057 (5), 22121 (5), 24617 (6), -tower 3818: eta = 0.55, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = -16.1426 - sampling = 0, 10 SCIndices: 16234 (3), 18154 (2), 18218 (2), 18282 (0), 18346 (1), 21930 (8), 21994 (8), 22058 (5), 22122 (5), 24618 (6), -tower 3819: eta = 0.55, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 223.591 - sampling = 0, 10 SCIndices: 16235 (3), 18155 (2), 18219 (2), 18283 (0), 18347 (1), 21931 (8), 21995 (8), 22059 (5), 22123 (5), 24619 (6), -tower 3820: eta = 0.55, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 163.721 - sampling = 0, 10 SCIndices: 16236 (3), 18156 (2), 18220 (2), 18284 (0), 18348 (1), 21932 (8), 21996 (8), 22060 (5), 22124 (5), 24620 (6), -tower 3821: eta = 0.55, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 126.065 - sampling = 0, 10 SCIndices: 16237 (3), 18157 (2), 18221 (2), 18285 (0), 18349 (1), 21933 (8), 21997 (8), 22061 (5), 22125 (5), 24621 (6), -tower 3822: eta = 0.55, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = -32.6896 - sampling = 0, 10 SCIndices: 16238 (3), 18158 (2), 18222 (2), 18286 (0), 18350 (1), 21934 (8), 21998 (8), 22062 (5), 22126 (5), 24622 (6), -tower 3823: eta = 0.55, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 411.543 - sampling = 0, 10 SCIndices: 16239 (3), 18159 (2), 18223 (2), 18287 (0), 18351 (1), 21935 (8), 21999 (8), 22063 (5), 22127 (5), 24623 (6), -tower 3824: eta = 0.55, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 269.951 - sampling = 0, 10 SCIndices: 16240 (0), 18160 (2), 18224 (2), 18288 (0), 18352 (1), 21936 (8), 22000 (4), 22064 (5), 22128 (5), 24624 (6), -tower 3825: eta = 0.55, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 1384.61 - sampling = 0, 10 SCIndices: 16241 (0), 18161 (2), 18225 (2), 18289 (0), 18353 (1), 21937 (8), 22001 (4), 22065 (5), 22129 (5), 24625 (6), -tower 3826: eta = 0.55, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 230.082 - sampling = 0, 10 SCIndices: 16242 (0), 18162 (2), 18226 (2), 18290 (0), 18354 (1), 21938 (8), 22002 (4), 22066 (5), 22130 (5), 24626 (6), -tower 3827: eta = 0.55, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = -157.459 - sampling = 0, 10 SCIndices: 16243 (0), 18163 (2), 18227 (2), 18291 (0), 18355 (1), 21939 (8), 22003 (4), 22067 (5), 22131 (5), 24627 (6), -tower 3828: eta = 0.55, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 960.568 - sampling = 0, 10 SCIndices: 16244 (0), 18164 (2), 18228 (2), 18292 (0), 18356 (1), 21940 (8), 22004 (4), 22068 (5), 22132 (5), 24628 (6), -tower 3829: eta = 0.55, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 83.7904 - sampling = 0, 10 SCIndices: 16245 (0), 18165 (2), 18229 (2), 18293 (0), 18357 (1), 21941 (8), 22005 (4), 22069 (5), 22133 (5), 24629 (6), -tower 3830: eta = 0.55, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 489.198 - sampling = 0, 10 SCIndices: 16246 (0), 18166 (2), 18230 (2), 18294 (0), 18358 (1), 21942 (8), 22006 (4), 22070 (5), 22134 (5), 24630 (6), -tower 3831: eta = 0.55, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 1019.34 - sampling = 0, 10 SCIndices: 16247 (0), 18167 (2), 18231 (2), 18295 (0), 18359 (1), 21943 (8), 22007 (4), 22071 (5), 22135 (5), 24631 (6), -tower 3832: eta = 0.55, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 122.119 - sampling = 0, 10 SCIndices: 16248 (0), 18168 (2), 18232 (2), 18296 (0), 18360 (1), 21944 (8), 22008 (5), 22072 (5), 22136 (5), 24632 (6), -tower 3833: eta = 0.55, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 289.895 - sampling = 0, 10 SCIndices: 16249 (0), 18169 (2), 18233 (2), 18297 (0), 18361 (1), 21945 (8), 22009 (5), 22073 (5), 22137 (5), 24633 (6), -tower 3834: eta = 0.55, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 791.628 - sampling = 0, 10 SCIndices: 16250 (0), 18170 (2), 18234 (2), 18298 (0), 18362 (1), 21946 (8), 22010 (5), 22074 (5), 22138 (5), 24634 (6), -tower 3835: eta = 0.55, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 163.632 - sampling = 0, 10 SCIndices: 16251 (0), 18171 (2), 18235 (2), 18299 (0), 18363 (1), 21947 (8), 22011 (5), 22075 (5), 22139 (5), 24635 (6), -tower 3836: eta = 0.55, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 608.241 - sampling = 0, 10 SCIndices: 16252 (0), 18172 (2), 18236 (2), 18300 (1), 18364 (1), 21948 (8), 22012 (5), 22076 (5), 22140 (5), 24636 (6), -tower 3837: eta = 0.55, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 216.841 - sampling = 0, 10 SCIndices: 16253 (0), 18173 (2), 18237 (2), 18301 (1), 18365 (1), 21949 (8), 22013 (5), 22077 (5), 22141 (5), 24637 (6), -tower 3838: eta = 0.55, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 276.402 - sampling = 0, 10 SCIndices: 16254 (0), 18174 (2), 18238 (2), 18302 (1), 18366 (1), 21950 (8), 22014 (5), 22078 (5), 22142 (5), 24638 (6), -tower 3839: eta = 0.55, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16255 (0), 18175 (2), 18239 (2), 18303 (1), 18367 (1), 21951 (8), 22015 (5), 22079 (5), 22143 (5), 24639 (6), -tower 3840: eta = 0.65, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 324.263 - sampling = 0, 10 SCIndices: 16256 (0), 18368 (1), 18432 (2), 18496 (2), 18560 (4), 22144 (5), 22208 (6), 22272 (6), 22336 (5), 24640 (6), -tower 3841: eta = 0.65, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 86.2558 - sampling = 0, 10 SCIndices: 16257 (0), 18369 (1), 18433 (2), 18497 (2), 18561 (4), 22145 (5), 22209 (6), 22273 (6), 22337 (5), 24641 (6), -tower 3842: eta = 0.65, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 225.874 - sampling = 0, 10 SCIndices: 16258 (0), 18370 (1), 18434 (2), 18498 (2), 18562 (4), 22146 (5), 22210 (6), 22274 (6), 22338 (5), 24642 (6), -tower 3843: eta = 0.65, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = -31.7332 - sampling = 0, 10 SCIndices: 16259 (0), 18371 (1), 18435 (2), 18499 (2), 18563 (4), 22147 (5), 22211 (6), 22275 (6), 22339 (5), 24643 (6), -tower 3844: eta = 0.65, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 197.314 - sampling = 0, 10 SCIndices: 16260 (0), 18372 (1), 18436 (2), 18500 (2), 18564 (4), 22148 (5), 22212 (6), 22276 (6), 22340 (5), 24644 (6), -tower 3845: eta = 0.65, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16261 (0), 18373 (1), 18437 (2), 18501 (2), 18565 (4), 22149 (5), 22213 (6), 22277 (6), 22341 (5), 24645 (6), -tower 3846: eta = 0.65, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16262 (0), 18374 (1), 18438 (2), 18502 (2), 18566 (4), 22150 (5), 22214 (6), 22278 (6), 22342 (5), 24646 (6), -tower 3847: eta = 0.65, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16263 (0), 18375 (1), 18439 (2), 18503 (2), 18567 (4), 22151 (5), 22215 (6), 22279 (6), 22343 (5), 24647 (6), -tower 3848: eta = 0.65, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 457.425 - sampling = 0, 10 SCIndices: 16264 (0), 18376 (1), 18440 (2), 18504 (2), 18568 (5), 22152 (6), 22216 (6), 22280 (7), 22344 (5), 24648 (6), -tower 3849: eta = 0.65, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 837.879 - sampling = 0, 10 SCIndices: 16265 (0), 18377 (1), 18441 (2), 18505 (2), 18569 (5), 22153 (6), 22217 (6), 22281 (7), 22345 (5), 24649 (6), -tower 3850: eta = 0.65, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 264.771 - sampling = 0, 10 SCIndices: 16266 (0), 18378 (1), 18442 (2), 18506 (2), 18570 (5), 22154 (6), 22218 (6), 22282 (7), 22346 (5), 24650 (6), -tower 3851: eta = 0.65, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 171.158 - sampling = 0, 10 SCIndices: 16267 (0), 18379 (1), 18443 (2), 18507 (2), 18571 (5), 22155 (6), 22219 (6), 22283 (7), 22347 (5), 24651 (6), -tower 3852: eta = 0.65, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = -64.2102 - sampling = 0, 10 SCIndices: 16268 (0), 18380 (1), 18444 (2), 18508 (2), 18572 (5), 22156 (6), 22220 (6), 22284 (7), 22348 (5), 24652 (6), -tower 3853: eta = 0.65, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 660.778 - sampling = 0, 10 SCIndices: 16269 (0), 18381 (1), 18445 (2), 18509 (2), 18573 (5), 22157 (6), 22221 (6), 22285 (7), 22349 (5), 24653 (6), -tower 3854: eta = 0.65, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 881.06 - sampling = 0, 10 SCIndices: 16270 (1), 18382 (1), 18446 (2), 18510 (2), 18574 (5), 22158 (6), 22222 (6), 22286 (7), 22350 (5), 24654 (6), -tower 3855: eta = 0.65, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 249.24 - sampling = 0, 10 SCIndices: 16271 (1), 18383 (1), 18447 (2), 18511 (2), 18575 (5), 22159 (6), 22223 (6), 22287 (7), 22351 (5), 24655 (6), -tower 3856: eta = 0.65, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 152.066 - sampling = 0, 10 SCIndices: 16272 (1), 18384 (1), 18448 (2), 18512 (2), 18576 (5), 22160 (6), 22224 (6), 22288 (7), 22352 (5), 24656 (6), -tower 3857: eta = 0.65, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = -33.6755 - sampling = 0, 10 SCIndices: 16273 (1), 18385 (1), 18449 (2), 18513 (2), 18577 (5), 22161 (6), 22225 (6), 22289 (7), 22353 (5), 24657 (6), -tower 3858: eta = 0.65, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 235.053 - sampling = 0, 10 SCIndices: 16274 (1), 18386 (1), 18450 (2), 18514 (2), 18578 (5), 22162 (6), 22226 (6), 22290 (7), 22354 (5), 24658 (6), -tower 3859: eta = 0.65, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 79.4281 - sampling = 0, 10 SCIndices: 16275 (1), 18387 (1), 18451 (2), 18515 (2), 18579 (5), 22163 (6), 22227 (6), 22291 (7), 22355 (5), 24659 (6), -tower 3860: eta = 0.65, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 323.408 - sampling = 0, 10 SCIndices: 16276 (1), 18388 (1), 18452 (2), 18516 (2), 18580 (5), 22164 (6), 22228 (6), 22292 (7), 22356 (5), 24660 (6), -tower 3861: eta = 0.65, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 272.933 - sampling = 0, 10 SCIndices: 16277 (1), 18389 (1), 18453 (2), 18517 (2), 18581 (5), 22165 (6), 22229 (6), 22293 (7), 22357 (5), 24661 (6), -tower 3862: eta = 0.65, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 40.9503 - sampling = 0, 10 SCIndices: 16278 (1), 18390 (1), 18454 (2), 18518 (2), 18582 (5), 22166 (6), 22230 (6), 22294 (7), 22358 (5), 24662 (6), -tower 3863: eta = 0.65, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 228.858 - sampling = 0, 10 SCIndices: 16279 (1), 18391 (1), 18455 (2), 18519 (2), 18583 (5), 22167 (6), 22231 (6), 22295 (7), 22359 (5), 24663 (6), -tower 3864: eta = 0.65, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16280 (1), 18392 (1), 18456 (2), 18520 (2), 18584 (5), 22168 (6), 22232 (6), 22296 (7), 22360 (5), 24664 (6), -tower 3865: eta = 0.65, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 180.269 - sampling = 0, 10 SCIndices: 16281 (1), 18393 (1), 18457 (2), 18521 (2), 18585 (5), 22169 (6), 22233 (6), 22297 (7), 22361 (5), 24665 (6), -tower 3866: eta = 0.65, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 843.037 - sampling = 0, 10 SCIndices: 16282 (1), 18394 (1), 18458 (2), 18522 (2), 18586 (5), 22170 (6), 22234 (6), 22298 (7), 22362 (5), 24666 (6), -tower 3867: eta = 0.65, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 173.922 - sampling = 0, 10 SCIndices: 16283 (1), 18395 (1), 18459 (2), 18523 (2), 18587 (5), 22171 (6), 22235 (6), 22299 (7), 22363 (5), 24667 (6), -tower 3868: eta = 0.65, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 724.648 - sampling = 0, 10 SCIndices: 16284 (1), 18396 (1), 18460 (2), 18524 (2), 18588 (5), 22172 (6), 22236 (6), 22300 (7), 22364 (5), 24668 (6), -tower 3869: eta = 0.65, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = -33.7038 - sampling = 0, 10 SCIndices: 16285 (1), 18397 (1), 18461 (2), 18525 (2), 18589 (5), 22173 (6), 22237 (6), 22301 (7), 22365 (5), 24669 (6), -tower 3870: eta = 0.65, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 2553.85 - sampling = 0, 10 SCIndices: 16286 (1), 18398 (1), 18462 (2), 18526 (2), 18590 (5), 22174 (6), 22238 (6), 22302 (7), 22366 (5), 24670 (6), -tower 3871: eta = 0.65, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 330.836 - sampling = 0, 10 SCIndices: 16287 (1), 18399 (1), 18463 (2), 18527 (2), 18591 (5), 22175 (6), 22239 (6), 22303 (7), 22367 (5), 24671 (6), -tower 3872: eta = 0.65, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16288 (1), 18400 (1), 18464 (2), 18528 (2), 18592 (5), 22176 (6), 22240 (6), 22304 (7), 22368 (5), 24672 (6), -tower 3873: eta = 0.65, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 623.226 - sampling = 0, 10 SCIndices: 16289 (1), 18401 (1), 18465 (2), 18529 (2), 18593 (5), 22177 (6), 22241 (6), 22305 (7), 22369 (5), 24673 (6), -tower 3874: eta = 0.65, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 119.561 - sampling = 0, 10 SCIndices: 16290 (1), 18402 (1), 18466 (2), 18530 (2), 18594 (5), 22178 (6), 22242 (6), 22306 (7), 22370 (5), 24674 (6), -tower 3875: eta = 0.65, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 353.628 - sampling = 0, 10 SCIndices: 16291 (1), 18403 (1), 18467 (2), 18531 (2), 18595 (5), 22179 (6), 22243 (6), 22307 (7), 22371 (5), 24675 (6), -tower 3876: eta = 0.65, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 152.483 - sampling = 0, 10 SCIndices: 16292 (1), 18404 (1), 18468 (2), 18532 (3), 18596 (5), 22180 (6), 22244 (6), 22308 (7), 22372 (5), 24676 (6), -tower 3877: eta = 0.65, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = -81.0719 - sampling = 0, 10 SCIndices: 16293 (1), 18405 (1), 18469 (2), 18533 (3), 18597 (5), 22181 (6), 22245 (6), 22309 (7), 22373 (5), 24677 (6), -tower 3878: eta = 0.65, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 1012.25 - sampling = 0, 10 SCIndices: 16294 (1), 18406 (1), 18470 (2), 18534 (3), 18598 (5), 22182 (6), 22246 (6), 22310 (7), 22374 (5), 24678 (6), -tower 3879: eta = 0.65, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 1005.03 - sampling = 0, 10 SCIndices: 16295 (1), 18407 (1), 18471 (2), 18535 (3), 18599 (5), 22183 (6), 22247 (6), 22311 (7), 22375 (5), 24679 (6), -tower 3880: eta = 0.65, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 892.256 - sampling = 0, 10 SCIndices: 16296 (1), 18408 (1), 18472 (2), 18536 (3), 18600 (5), 22184 (6), 22248 (6), 22312 (4), 22376 (5), 24680 (6), -tower 3881: eta = 0.65, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16297 (1), 18409 (1), 18473 (2), 18537 (3), 18601 (5), 22185 (6), 22249 (6), 22313 (4), 22377 (5), 24681 (6), -tower 3882: eta = 0.65, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16298 (1), 18410 (1), 18474 (2), 18538 (3), 18602 (5), 22186 (6), 22250 (6), 22314 (4), 22378 (5), 24682 (6), -tower 3883: eta = 0.65, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 146.141 - sampling = 0, 10 SCIndices: 16299 (1), 18411 (1), 18475 (2), 18539 (3), 18603 (5), 22187 (6), 22251 (6), 22315 (4), 22379 (5), 24683 (6), -tower 3884: eta = 0.65, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 81.571 - sampling = 0, 10 SCIndices: 16300 (1), 18412 (1), 18476 (2), 18540 (3), 18604 (5), 22188 (6), 22252 (6), 22316 (4), 22380 (5), 24684 (6), -tower 3885: eta = 0.65, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 354.022 - sampling = 0, 10 SCIndices: 16301 (1), 18413 (1), 18477 (2), 18541 (3), 18605 (5), 22189 (6), 22253 (6), 22317 (4), 22381 (5), 24685 (6), -tower 3886: eta = 0.65, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 121.519 - sampling = 0, 10 SCIndices: 16302 (1), 18414 (1), 18478 (2), 18542 (3), 18606 (5), 22190 (6), 22254 (6), 22318 (4), 22382 (5), 24686 (6), -tower 3887: eta = 0.65, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 257.744 - sampling = 0, 10 SCIndices: 16303 (1), 18415 (1), 18479 (2), 18543 (3), 18607 (5), 22191 (6), 22255 (6), 22319 (4), 22383 (5), 24687 (6), -tower 3888: eta = 0.65, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 430.705 - sampling = 0, 10 SCIndices: 16304 (1), 18416 (1), 18480 (2), 18544 (3), 18608 (5), 22192 (6), 22256 (6), 22320 (5), 22384 (5), 24688 (6), -tower 3889: eta = 0.65, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = -155.038 - sampling = 0, 10 SCIndices: 16305 (1), 18417 (1), 18481 (2), 18545 (3), 18609 (5), 22193 (6), 22257 (6), 22321 (5), 22385 (5), 24689 (6), -tower 3890: eta = 0.65, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 236.819 - sampling = 0, 10 SCIndices: 16306 (1), 18418 (2), 18482 (2), 18546 (3), 18610 (5), 22194 (6), 22258 (6), 22322 (5), 22386 (5), 24690 (6), -tower 3891: eta = 0.65, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 273.259 - sampling = 0, 10 SCIndices: 16307 (1), 18419 (2), 18483 (2), 18547 (3), 18611 (5), 22195 (6), 22259 (6), 22323 (5), 22387 (5), 24691 (6), -tower 3892: eta = 0.65, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 1030.16 - sampling = 0, 10 SCIndices: 16308 (1), 18420 (2), 18484 (2), 18548 (3), 18612 (5), 22196 (6), 22260 (6), 22324 (5), 22388 (5), 24692 (6), -tower 3893: eta = 0.65, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 146.432 - sampling = 0, 10 SCIndices: 16309 (1), 18421 (2), 18485 (2), 18549 (3), 18613 (5), 22197 (6), 22261 (6), 22325 (5), 22389 (5), 24693 (6), -tower 3894: eta = 0.65, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = -35.8363 - sampling = 0, 10 SCIndices: 16310 (1), 18422 (2), 18486 (2), 18550 (3), 18614 (5), 22198 (6), 22262 (6), 22326 (5), 22390 (5), 24694 (6), -tower 3895: eta = 0.65, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = -33.7165 - sampling = 0, 10 SCIndices: 16311 (1), 18423 (2), 18487 (2), 18551 (3), 18615 (5), 22199 (6), 22263 (6), 22327 (5), 22391 (5), 24695 (6), -tower 3896: eta = 0.65, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 1830.67 - sampling = 0, 10 SCIndices: 16312 (1), 18424 (2), 18488 (2), 18552 (3), 18616 (5), 22200 (6), 22264 (6), 22328 (5), 22392 (5), 24696 (6), -tower 3897: eta = 0.65, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16313 (1), 18425 (2), 18489 (2), 18553 (3), 18617 (5), 22201 (6), 22265 (6), 22329 (5), 22393 (5), 24697 (6), -tower 3898: eta = 0.65, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 163.139 - sampling = 0, 10 SCIndices: 16314 (1), 18426 (2), 18490 (2), 18554 (3), 18618 (5), 22202 (6), 22266 (6), 22330 (5), 22394 (5), 24698 (6), -tower 3899: eta = 0.65, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 79.9516 - sampling = 0, 10 SCIndices: 16315 (1), 18427 (2), 18491 (2), 18555 (3), 18619 (5), 22203 (6), 22267 (6), 22331 (5), 22395 (5), 24699 (6), -tower 3900: eta = 0.65, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16316 (1), 18428 (2), 18492 (2), 18556 (3), 18620 (5), 22204 (6), 22268 (6), 22332 (5), 22396 (5), 24700 (6), -tower 3901: eta = 0.65, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 265.757 - sampling = 0, 10 SCIndices: 16317 (1), 18429 (2), 18493 (2), 18557 (3), 18621 (5), 22205 (6), 22269 (6), 22333 (5), 22397 (5), 24701 (6), -tower 3902: eta = 0.65, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 9.71722 - sampling = 0, 10 SCIndices: 16318 (1), 18430 (2), 18494 (2), 18558 (3), 18622 (5), 22206 (6), 22270 (6), 22334 (5), 22398 (5), 24702 (6), -tower 3903: eta = 0.65, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 92.6338 - sampling = 0, 10 SCIndices: 16319 (1), 18431 (2), 18495 (2), 18559 (3), 18623 (5), 22207 (6), 22271 (6), 22335 (5), 22399 (5), 24703 (6), -tower 3904: eta = 0.75, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 220.933 - sampling = 0, 10 SCIndices: 16320 (1), 18624 (5), 18688 (5), 18752 (6), 18816 (6), 22400 (5), 22464 (6), 22528 (6), 22592 (7), 24704 (6), -tower 3905: eta = 0.75, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 122.174 - sampling = 0, 10 SCIndices: 16321 (1), 18625 (5), 18689 (5), 18753 (6), 18817 (6), 22401 (5), 22465 (6), 22529 (6), 22593 (7), 24705 (6), -tower 3906: eta = 0.75, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16322 (1), 18626 (5), 18690 (5), 18754 (6), 18818 (6), 22402 (5), 22466 (6), 22530 (6), 22594 (7), 24706 (6), -tower 3907: eta = 0.75, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 504.392 - sampling = 0, 10 SCIndices: 16323 (1), 18627 (5), 18691 (5), 18755 (6), 18819 (6), 22403 (5), 22467 (6), 22531 (6), 22595 (7), 24707 (6), -tower 3908: eta = 0.75, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 143.582 - sampling = 0, 10 SCIndices: 16324 (1), 18628 (5), 18692 (5), 18756 (6), 18820 (6), 22404 (5), 22468 (6), 22532 (6), 22596 (7), 24708 (6), -tower 3909: eta = 0.75, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = -103.252 - sampling = 0, 10 SCIndices: 16325 (1), 18629 (5), 18693 (5), 18757 (6), 18821 (6), 22405 (5), 22469 (6), 22533 (6), 22597 (7), 24709 (6), -tower 3910: eta = 0.75, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16326 (1), 18630 (5), 18694 (5), 18758 (6), 18822 (6), 22406 (5), 22470 (6), 22534 (6), 22598 (7), 24710 (6), -tower 3911: eta = 0.75, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 355.714 - sampling = 0, 10 SCIndices: 16327 (1), 18631 (5), 18695 (5), 18759 (6), 18823 (6), 22407 (5), 22471 (6), 22535 (6), 22599 (7), 24711 (6), -tower 3912: eta = 0.75, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 1968.84 - sampling = 0, 10 SCIndices: 16328 (1), 18632 (5), 18696 (5), 18760 (6), 18824 (6), 22408 (5), 22472 (6), 22536 (6), 22600 (7), 24712 (6), -tower 3913: eta = 0.75, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 1928.12 - sampling = 0, 10 SCIndices: 16329 (1), 18633 (5), 18697 (5), 18761 (6), 18825 (6), 22409 (5), 22473 (6), 22537 (6), 22601 (7), 24713 (6), -tower 3914: eta = 0.75, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 1181.72 - sampling = 0, 10 SCIndices: 16330 (1), 18634 (5), 18698 (5), 18762 (6), 18826 (6), 22410 (5), 22474 (6), 22538 (6), 22602 (7), 24714 (6), -tower 3915: eta = 0.75, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 397.14 - sampling = 0, 10 SCIndices: 16331 (1), 18635 (5), 18699 (5), 18763 (6), 18827 (6), 22411 (5), 22475 (6), 22539 (6), 22603 (7), 24715 (6), -tower 3916: eta = 0.75, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16332 (1), 18636 (5), 18700 (5), 18764 (6), 18828 (6), 22412 (5), 22476 (6), 22540 (6), 22604 (7), 24716 (6), -tower 3917: eta = 0.75, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 371.702 - sampling = 0, 10 SCIndices: 16333 (1), 18637 (5), 18701 (5), 18765 (6), 18829 (6), 22413 (5), 22477 (6), 22541 (6), 22605 (7), 24717 (6), -tower 3918: eta = 0.75, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16334 (1), 18638 (5), 18702 (5), 18766 (6), 18830 (6), 22414 (5), 22478 (6), 22542 (6), 22606 (7), 24718 (6), -tower 3919: eta = 0.75, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = -202.914 - sampling = 0, 10 SCIndices: 16335 (1), 18639 (5), 18703 (5), 18767 (6), 18831 (6), 22415 (5), 22479 (6), 22543 (6), 22607 (7), 24719 (6), -tower 3920: eta = 0.75, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 184.069 - sampling = 0, 10 SCIndices: 16336 (1), 18640 (5), 18704 (5), 18768 (6), 18832 (6), 22416 (5), 22480 (6), 22544 (6), 22608 (7), 24720 (6), -tower 3921: eta = 0.75, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 556.109 - sampling = 0, 10 SCIndices: 16337 (1), 18641 (5), 18705 (5), 18769 (6), 18833 (6), 22417 (5), 22481 (6), 22545 (6), 22609 (7), 24721 (6), -tower 3922: eta = 0.75, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 317.155 - sampling = 0, 10 SCIndices: 16338 (1), 18642 (5), 18706 (5), 18770 (6), 18834 (6), 22418 (5), 22482 (6), 22546 (6), 22610 (7), 24722 (6), -tower 3923: eta = 0.75, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 476.588 - sampling = 0, 10 SCIndices: 16339 (1), 18643 (5), 18707 (5), 18771 (6), 18835 (6), 22419 (5), 22483 (6), 22547 (6), 22611 (7), 24723 (6), -tower 3924: eta = 0.75, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 386.671 - sampling = 0, 10 SCIndices: 16340 (1), 18644 (5), 18708 (5), 18772 (6), 18836 (6), 22420 (5), 22484 (6), 22548 (6), 22612 (7), 24724 (6), -tower 3925: eta = 0.75, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16341 (1), 18645 (5), 18709 (5), 18773 (6), 18837 (6), 22421 (5), 22485 (6), 22549 (6), 22613 (7), 24725 (6), -tower 3926: eta = 0.75, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 274.904 - sampling = 0, 10 SCIndices: 16342 (1), 18646 (5), 18710 (5), 18774 (6), 18838 (6), 22422 (5), 22486 (6), 22550 (6), 22614 (7), 24726 (6), -tower 3927: eta = 0.75, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 136.703 - sampling = 0, 10 SCIndices: 16343 (1), 18647 (5), 18711 (5), 18775 (6), 18839 (6), 22423 (5), 22487 (6), 22551 (6), 22615 (7), 24727 (6), -tower 3928: eta = 0.75, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 425.719 - sampling = 0, 10 SCIndices: 16344 (1), 18648 (5), 18712 (6), 18776 (6), 18840 (7), 22424 (5), 22488 (6), 22552 (6), 22616 (7), 24728 (6), -tower 3929: eta = 0.75, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 583.828 - sampling = 0, 10 SCIndices: 16345 (1), 18649 (5), 18713 (6), 18777 (6), 18841 (7), 22425 (5), 22489 (6), 22553 (6), 22617 (7), 24729 (6), -tower 3930: eta = 0.75, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 70.1143 - sampling = 0, 10 SCIndices: 16346 (1), 18650 (5), 18714 (6), 18778 (6), 18842 (7), 22426 (5), 22490 (6), 22554 (6), 22618 (7), 24730 (6), -tower 3931: eta = 0.75, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 226.023 - sampling = 0, 10 SCIndices: 16347 (1), 18651 (5), 18715 (6), 18779 (6), 18843 (7), 22427 (5), 22491 (6), 22555 (6), 22619 (7), 24731 (6), -tower 3932: eta = 0.75, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = -33.1953 - sampling = 0, 10 SCIndices: 16348 (1), 18652 (5), 18716 (6), 18780 (6), 18844 (7), 22428 (5), 22492 (6), 22556 (6), 22620 (7), 24732 (6), -tower 3933: eta = 0.75, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 70.1341 - sampling = 0, 10 SCIndices: 16349 (1), 18653 (5), 18717 (6), 18781 (6), 18845 (7), 22429 (5), 22493 (6), 22557 (6), 22621 (7), 24733 (6), -tower 3934: eta = 0.75, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 205.439 - sampling = 0, 10 SCIndices: 16350 (1), 18654 (5), 18718 (6), 18782 (6), 18846 (7), 22430 (5), 22494 (6), 22558 (6), 22622 (7), 24734 (6), -tower 3935: eta = 0.75, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 40.5594 - sampling = 0, 10 SCIndices: 16351 (1), 18655 (5), 18719 (6), 18783 (6), 18847 (7), 22431 (5), 22495 (6), 22559 (6), 22623 (7), 24735 (6), -tower 3936: eta = 0.75, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 533.544 - sampling = 0, 10 SCIndices: 16352 (1), 18656 (5), 18720 (6), 18784 (6), 18848 (7), 22432 (5), 22496 (6), 22560 (6), 22624 (4), 24736 (6), -tower 3937: eta = 0.75, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 439.686 - sampling = 0, 10 SCIndices: 16353 (1), 18657 (5), 18721 (6), 18785 (6), 18849 (7), 22433 (5), 22497 (6), 22561 (6), 22625 (4), 24737 (6), -tower 3938: eta = 0.75, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 30.2185 - sampling = 0, 10 SCIndices: 16354 (1), 18658 (5), 18722 (6), 18786 (6), 18850 (7), 22434 (5), 22498 (6), 22562 (6), 22626 (4), 24738 (6), -tower 3939: eta = 0.75, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 132.972 - sampling = 0, 10 SCIndices: 16355 (1), 18659 (5), 18723 (6), 18787 (6), 18851 (7), 22435 (5), 22499 (6), 22563 (6), 22627 (4), 24739 (6), -tower 3940: eta = 0.75, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 261.261 - sampling = 0, 10 SCIndices: 16356 (1), 18660 (5), 18724 (6), 18788 (6), 18852 (7), 22436 (5), 22500 (6), 22564 (6), 22628 (4), 24740 (6), -tower 3941: eta = 0.75, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 70.8739 - sampling = 0, 10 SCIndices: 16357 (1), 18661 (5), 18725 (6), 18789 (6), 18853 (7), 22437 (5), 22501 (6), 22565 (6), 22629 (4), 24741 (6), -tower 3942: eta = 0.75, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 40.3865 - sampling = 0, 10 SCIndices: 16358 (1), 18662 (5), 18726 (6), 18790 (6), 18854 (7), 22438 (5), 22502 (6), 22566 (6), 22630 (4), 24742 (6), -tower 3943: eta = 0.75, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 187.62 - sampling = 0, 10 SCIndices: 16359 (1), 18663 (5), 18727 (6), 18791 (6), 18855 (7), 22439 (5), 22503 (6), 22567 (6), 22631 (4), 24743 (6), -tower 3944: eta = 0.75, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16360 (1), 18664 (5), 18728 (6), 18792 (6), 18856 (7), 22440 (5), 22504 (6), 22568 (6), 22632 (5), 24744 (7), -tower 3945: eta = 0.75, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 341.722 - sampling = 0, 10 SCIndices: 16361 (1), 18665 (5), 18729 (6), 18793 (6), 18857 (7), 22441 (5), 22505 (6), 22569 (6), 22633 (5), 24745 (7), -tower 3946: eta = 0.75, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 376.625 - sampling = 0, 10 SCIndices: 16362 (1), 18666 (5), 18730 (6), 18794 (6), 18858 (7), 22442 (5), 22506 (6), 22570 (6), 22634 (5), 24746 (7), -tower 3947: eta = 0.75, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16363 (1), 18667 (5), 18731 (6), 18795 (6), 18859 (7), 22443 (5), 22507 (6), 22571 (6), 22635 (5), 24747 (7), -tower 3948: eta = 0.75, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 499.025 - sampling = 0, 10 SCIndices: 16364 (1), 18668 (5), 18732 (6), 18796 (6), 18860 (7), 22444 (5), 22508 (6), 22572 (6), 22636 (5), 24748 (7), -tower 3949: eta = 0.75, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 78.7148 - sampling = 0, 10 SCIndices: 16365 (1), 18669 (5), 18733 (6), 18797 (6), 18861 (7), 22445 (5), 22509 (6), 22573 (6), 22637 (5), 24749 (7), -tower 3950: eta = 0.75, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 201.915 - sampling = 0, 10 SCIndices: 16366 (1), 18670 (5), 18734 (6), 18798 (6), 18862 (7), 22446 (5), 22510 (6), 22574 (6), 22638 (5), 24750 (7), -tower 3951: eta = 0.75, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16367 (1), 18671 (5), 18735 (6), 18799 (6), 18863 (7), 22447 (5), 22511 (6), 22575 (6), 22639 (5), 24751 (7), -tower 3952: eta = 0.75, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 112 - sampling = 0, 10 SCIndices: 16368 (1), 18672 (5), 18736 (6), 18800 (6), 18864 (7), 22448 (5), 22512 (6), 22576 (6), 22640 (5), 24752 (7), -tower 3953: eta = 0.75, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 690.275 - sampling = 0, 10 SCIndices: 16369 (1), 18673 (5), 18737 (6), 18801 (6), 18865 (7), 22449 (5), 22513 (6), 22577 (6), 22641 (5), 24753 (7), -tower 3954: eta = 0.75, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 612.363 - sampling = 0, 10 SCIndices: 16370 (1), 18674 (5), 18738 (6), 18802 (6), 18866 (7), 22450 (5), 22514 (6), 22578 (6), 22642 (5), 24754 (7), -tower 3955: eta = 0.75, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16371 (1), 18675 (5), 18739 (6), 18803 (6), 18867 (7), 22451 (5), 22515 (6), 22579 (6), 22643 (5), 24755 (7), -tower 3956: eta = 0.75, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 921.535 - sampling = 0, 10 SCIndices: 16372 (1), 18676 (5), 18740 (6), 18804 (6), 18868 (7), 22452 (5), 22516 (6), 22580 (6), 22644 (5), 24756 (7), -tower 3957: eta = 0.75, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 220.494 - sampling = 0, 10 SCIndices: 16373 (1), 18677 (5), 18741 (6), 18805 (6), 18869 (7), 22453 (5), 22517 (6), 22581 (6), 22645 (5), 24757 (7), -tower 3958: eta = 0.75, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 137.535 - sampling = 0, 10 SCIndices: 16374 (1), 18678 (5), 18742 (6), 18806 (6), 18870 (7), 22454 (5), 22518 (6), 22582 (6), 22646 (5), 24758 (7), -tower 3959: eta = 0.75, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 106.192 - sampling = 0, 10 SCIndices: 16375 (1), 18679 (5), 18743 (6), 18807 (6), 18871 (7), 22455 (5), 22519 (6), 22583 (6), 22647 (5), 24759 (7), -tower 3960: eta = 0.75, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 24846.7 - sampling = 0, 10 SCIndices: 16376 (1), 18680 (5), 18744 (6), 18808 (6), 18872 (4), 22456 (5), 22520 (6), 22584 (6), 22648 (5), 24760 (7), -tower 3961: eta = 0.75, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 77835.7 - sampling = 0, 10 SCIndices: 16377 (1), 18681 (5), 18745 (6), 18809 (6), 18873 (4), 22457 (5), 22521 (6), 22585 (6), 22649 (5), 24761 (7), -tower 3962: eta = 0.75, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 516.216 - sampling = 0, 10 SCIndices: 16378 (1), 18682 (5), 18746 (6), 18810 (6), 18874 (4), 22458 (5), 22522 (6), 22586 (6), 22650 (5), 24762 (7), -tower 3963: eta = 0.75, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 185.6 - sampling = 0, 10 SCIndices: 16379 (1), 18683 (5), 18747 (6), 18811 (6), 18875 (4), 22459 (5), 22523 (6), 22587 (6), 22651 (5), 24763 (7), -tower 3964: eta = 0.75, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 326.978 - sampling = 0, 10 SCIndices: 16380 (1), 18684 (5), 18748 (6), 18812 (6), 18876 (4), 22460 (5), 22524 (6), 22588 (6), 22652 (5), 24764 (7), -tower 3965: eta = 0.75, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 414.058 - sampling = 0, 10 SCIndices: 16381 (1), 18685 (5), 18749 (6), 18813 (6), 18877 (4), 22461 (5), 22525 (6), 22589 (6), 22653 (5), 24765 (7), -tower 3966: eta = 0.75, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = -133.497 - sampling = 0, 10 SCIndices: 16382 (1), 18686 (5), 18750 (6), 18814 (6), 18878 (4), 22462 (5), 22526 (6), 22590 (6), 22654 (5), 24766 (7), -tower 3967: eta = 0.75, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 119.565 - sampling = 0, 10 SCIndices: 16383 (1), 18687 (5), 18751 (6), 18815 (6), 18879 (4), 22463 (5), 22527 (6), 22591 (6), 22655 (5), 24767 (7), -tower 3968: eta = 0.85, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 699.426 - sampling = 0, 10 SCIndices: 16384 (1), 18880 (5), 18944 (5), 19008 (5), 19072 (6), 22656 (5), 22720 (5), 22784 (6), 22848 (6), 24768 (7), -tower 3969: eta = 0.85, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 556.543 - sampling = 0, 10 SCIndices: 16385 (1), 18881 (5), 18945 (5), 19009 (5), 19073 (6), 22657 (5), 22721 (5), 22785 (6), 22849 (6), 24769 (7), -tower 3970: eta = 0.85, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = -3.59918 - sampling = 0, 10 SCIndices: 16386 (1), 18882 (5), 18946 (5), 19010 (5), 19074 (6), 22658 (5), 22722 (5), 22786 (6), 22850 (6), 24770 (7), -tower 3971: eta = 0.85, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 626.679 - sampling = 0, 10 SCIndices: 16387 (1), 18883 (5), 18947 (5), 19011 (5), 19075 (6), 22659 (5), 22723 (5), 22787 (6), 22851 (6), 24771 (7), -tower 3972: eta = 0.85, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 17.7353 - sampling = 0, 10 SCIndices: 16388 (2), 18884 (5), 18948 (5), 19012 (5), 19076 (6), 22660 (5), 22724 (5), 22788 (6), 22852 (6), 24772 (7), -tower 3973: eta = 0.85, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 534.508 - sampling = 0, 10 SCIndices: 16389 (2), 18885 (5), 18949 (5), 19013 (5), 19077 (6), 22661 (5), 22725 (5), 22789 (6), 22853 (6), 24773 (7), -tower 3974: eta = 0.85, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 223.572 - sampling = 0, 10 SCIndices: 16390 (2), 18886 (5), 18950 (5), 19014 (5), 19078 (6), 22662 (5), 22726 (5), 22790 (6), 22854 (6), 24774 (7), -tower 3975: eta = 0.85, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 622.401 - sampling = 0, 10 SCIndices: 16391 (2), 18887 (5), 18951 (5), 19015 (5), 19079 (6), 22663 (5), 22727 (5), 22791 (6), 22855 (6), 24775 (7), -tower 3976: eta = 0.85, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 526.363 - sampling = 0, 10 SCIndices: 16392 (2), 18888 (5), 18952 (5), 19016 (5), 19080 (6), 22664 (5), 22728 (5), 22792 (6), 22856 (6), 24776 (4), -tower 3977: eta = 0.85, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 3771.69 - sampling = 0, 10 SCIndices: 16393 (2), 18889 (5), 18953 (5), 19017 (5), 19081 (6), 22665 (5), 22729 (5), 22793 (6), 22857 (6), 24777 (4), -tower 3978: eta = 0.85, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 118.602 - sampling = 0, 10 SCIndices: 16394 (2), 18890 (5), 18954 (5), 19018 (5), 19082 (6), 22666 (5), 22730 (5), 22794 (6), 22858 (6), 24778 (4), -tower 3979: eta = 0.85, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 321.045 - sampling = 0, 10 SCIndices: 16395 (2), 18891 (5), 18955 (5), 19019 (5), 19083 (6), 22667 (5), 22731 (5), 22795 (6), 22859 (6), 24779 (4), -tower 3980: eta = 0.85, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16396 (2), 18892 (5), 18956 (5), 19020 (5), 19084 (6), 22668 (5), 22732 (5), 22796 (6), 22860 (6), 24780 (4), -tower 3981: eta = 0.85, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 450.135 - sampling = 0, 10 SCIndices: 16397 (2), 18893 (5), 18957 (5), 19021 (5), 19085 (6), 22669 (5), 22733 (5), 22797 (6), 22861 (6), 24781 (4), -tower 3982: eta = 0.85, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 166.182 - sampling = 0, 10 SCIndices: 16398 (2), 18894 (5), 18958 (5), 19022 (5), 19086 (6), 22670 (5), 22734 (5), 22798 (6), 22862 (6), 24782 (4), -tower 3983: eta = 0.85, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 126.202 - sampling = 0, 10 SCIndices: 16399 (2), 18895 (5), 18959 (5), 19023 (5), 19087 (6), 22671 (5), 22735 (5), 22799 (6), 22863 (6), 24783 (4), -tower 3984: eta = 0.85, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16400 (2), 18896 (5), 18960 (5), 19024 (6), 19088 (6), 22672 (5), 22736 (5), 22800 (6), 22864 (6), 24784 (5), -tower 3985: eta = 0.85, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 98.4498 - sampling = 0, 10 SCIndices: 16401 (2), 18897 (5), 18961 (5), 19025 (6), 19089 (6), 22673 (5), 22737 (5), 22801 (6), 22865 (6), 24785 (5), -tower 3986: eta = 0.85, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 903.327 - sampling = 0, 10 SCIndices: 16402 (2), 18898 (5), 18962 (5), 19026 (6), 19090 (6), 22674 (5), 22738 (5), 22802 (6), 22866 (6), 24786 (5), -tower 3987: eta = 0.85, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 396.51 - sampling = 0, 10 SCIndices: 16403 (2), 18899 (5), 18963 (5), 19027 (6), 19091 (6), 22675 (5), 22739 (5), 22803 (6), 22867 (6), 24787 (5), -tower 3988: eta = 0.85, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 771.183 - sampling = 0, 10 SCIndices: 16404 (2), 18900 (5), 18964 (5), 19028 (6), 19092 (6), 22676 (5), 22740 (5), 22804 (6), 22868 (6), 24788 (5), -tower 3989: eta = 0.85, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 228.691 - sampling = 0, 10 SCIndices: 16405 (2), 18901 (5), 18965 (5), 19029 (6), 19093 (6), 22677 (5), 22741 (5), 22805 (6), 22869 (6), 24789 (5), -tower 3990: eta = 0.85, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 162.186 - sampling = 0, 10 SCIndices: 16406 (2), 18902 (5), 18966 (5), 19030 (6), 19094 (6), 22678 (5), 22742 (5), 22806 (6), 22870 (6), 24790 (5), -tower 3991: eta = 0.85, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 89.1425 - sampling = 0, 10 SCIndices: 16407 (2), 18903 (5), 18967 (5), 19031 (6), 19095 (6), 22679 (5), 22743 (5), 22807 (6), 22871 (6), 24791 (5), -tower 3992: eta = 0.85, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 28.5026 - sampling = 0, 10 SCIndices: 16408 (2), 18904 (5), 18968 (5), 19032 (6), 19096 (6), 22680 (5), 22744 (5), 22808 (6), 22872 (6), 24792 (5), -tower 3993: eta = 0.85, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 166.314 - sampling = 0, 10 SCIndices: 16409 (2), 18905 (5), 18969 (5), 19033 (6), 19097 (6), 22681 (5), 22745 (5), 22809 (6), 22873 (6), 24793 (5), -tower 3994: eta = 0.85, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 174.391 - sampling = 0, 10 SCIndices: 16410 (2), 18906 (5), 18970 (5), 19034 (6), 19098 (6), 22682 (5), 22746 (5), 22810 (6), 22874 (6), 24794 (5), -tower 3995: eta = 0.85, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 50.9276 - sampling = 0, 10 SCIndices: 16411 (2), 18907 (5), 18971 (5), 19035 (6), 19099 (6), 22683 (5), 22747 (5), 22811 (6), 22875 (6), 24795 (5), -tower 3996: eta = 0.85, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 626.641 - sampling = 0, 10 SCIndices: 16412 (2), 18908 (5), 18972 (5), 19036 (6), 19100 (6), 22684 (5), 22748 (5), 22812 (6), 22876 (6), 24796 (5), -tower 3997: eta = 0.85, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 816.936 - sampling = 0, 10 SCIndices: 16413 (2), 18909 (5), 18973 (5), 19037 (6), 19101 (6), 22685 (5), 22749 (5), 22813 (6), 22877 (6), 24797 (5), -tower 3998: eta = 0.85, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 299.604 - sampling = 0, 10 SCIndices: 16414 (2), 18910 (5), 18974 (5), 19038 (6), 19102 (6), 22686 (5), 22750 (5), 22814 (6), 22878 (6), 24798 (5), -tower 3999: eta = 0.85, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 595.458 - sampling = 0, 10 SCIndices: 16415 (2), 18911 (5), 18975 (5), 19039 (6), 19103 (6), 22687 (5), 22751 (5), 22815 (6), 22879 (6), 24799 (5), -tower 4000: eta = 0.85, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 903.613 - sampling = 0, 10 SCIndices: 16416 (2), 18912 (5), 18976 (5), 19040 (6), 19104 (6), 22688 (5), 22752 (5), 22816 (6), 22880 (6), 24800 (5), -tower 4001: eta = 0.85, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 779.322 - sampling = 0, 10 SCIndices: 16417 (2), 18913 (5), 18977 (5), 19041 (6), 19105 (6), 22689 (5), 22753 (5), 22817 (6), 22881 (6), 24801 (5), -tower 4002: eta = 0.85, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 244.254 - sampling = 0, 10 SCIndices: 16418 (2), 18914 (5), 18978 (5), 19042 (6), 19106 (6), 22690 (5), 22754 (5), 22818 (6), 22882 (6), 24802 (5), -tower 4003: eta = 0.85, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16419 (2), 18915 (5), 18979 (5), 19043 (6), 19107 (6), 22691 (5), 22755 (5), 22819 (6), 22883 (6), 24803 (5), -tower 4004: eta = 0.85, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 226.37 - sampling = 0, 10 SCIndices: 16420 (2), 18916 (5), 18980 (5), 19044 (6), 19108 (6), 22692 (5), 22756 (5), 22820 (6), 22884 (6), 24804 (5), -tower 4005: eta = 0.85, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 588.758 - sampling = 0, 10 SCIndices: 16421 (2), 18917 (5), 18981 (5), 19045 (6), 19109 (6), 22693 (5), 22757 (5), 22821 (6), 22885 (6), 24805 (5), -tower 4006: eta = 0.85, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16422 (2), 18918 (5), 18982 (5), 19046 (6), 19110 (6), 22694 (5), 22758 (5), 22822 (6), 22886 (6), 24806 (5), -tower 4007: eta = 0.85, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = -77.8889 - sampling = 0, 10 SCIndices: 16423 (2), 18919 (5), 18983 (5), 19047 (6), 19111 (6), 22695 (5), 22759 (5), 22823 (6), 22887 (6), 24807 (5), -tower 4008: eta = 0.85, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = -78.9847 - sampling = 0, 10 SCIndices: 16424 (2), 18920 (5), 18984 (5), 19048 (6), 19112 (6), 22696 (5), 22760 (5), 22824 (6), 22888 (6), 24808 (5), -tower 4009: eta = 0.85, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 225.303 - sampling = 0, 10 SCIndices: 16425 (2), 18921 (5), 18985 (5), 19049 (6), 19113 (6), 22697 (5), 22761 (5), 22825 (6), 22889 (6), 24809 (5), -tower 4010: eta = 0.85, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 57.5167 - sampling = 0, 10 SCIndices: 16426 (2), 18922 (5), 18986 (5), 19050 (6), 19114 (6), 22698 (5), 22762 (5), 22826 (6), 22890 (6), 24810 (5), -tower 4011: eta = 0.85, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = -43.2629 - sampling = 0, 10 SCIndices: 16427 (2), 18923 (5), 18987 (5), 19051 (6), 19115 (6), 22699 (5), 22763 (5), 22827 (6), 22891 (6), 24811 (5), -tower 4012: eta = 0.85, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 201.855 - sampling = 0, 10 SCIndices: 16428 (2), 18924 (5), 18988 (5), 19052 (6), 19116 (6), 22700 (5), 22764 (5), 22828 (6), 22892 (6), 24812 (5), -tower 4013: eta = 0.85, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 326.509 - sampling = 0, 10 SCIndices: 16429 (2), 18925 (5), 18989 (5), 19053 (6), 19117 (6), 22701 (5), 22765 (5), 22829 (6), 22893 (6), 24813 (5), -tower 4014: eta = 0.85, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 600.721 - sampling = 0, 10 SCIndices: 16430 (2), 18926 (5), 18990 (5), 19054 (6), 19118 (6), 22702 (5), 22766 (5), 22830 (6), 22894 (6), 24814 (5), -tower 4015: eta = 0.85, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 292.079 - sampling = 0, 10 SCIndices: 16431 (2), 18927 (5), 18991 (5), 19055 (6), 19119 (6), 22703 (5), 22767 (5), 22831 (6), 22895 (6), 24815 (5), -tower 4016: eta = 0.85, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 607.901 - sampling = 0, 10 SCIndices: 16432 (2), 18928 (5), 18992 (5), 19056 (6), 19120 (6), 22704 (5), 22768 (5), 22832 (6), 22896 (6), 24816 (5), -tower 4017: eta = 0.85, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 543.18 - sampling = 0, 10 SCIndices: 16433 (2), 18929 (5), 18993 (5), 19057 (6), 19121 (6), 22705 (5), 22769 (5), 22833 (6), 22897 (6), 24817 (5), -tower 4018: eta = 0.85, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 829.804 - sampling = 0, 10 SCIndices: 16434 (2), 18930 (5), 18994 (5), 19058 (6), 19122 (6), 22706 (5), 22770 (5), 22834 (6), 22898 (6), 24818 (5), -tower 4019: eta = 0.85, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16435 (2), 18931 (5), 18995 (5), 19059 (6), 19123 (6), 22707 (5), 22771 (5), 22835 (6), 22899 (6), 24819 (5), -tower 4020: eta = 0.85, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = -6.58514 - sampling = 0, 10 SCIndices: 16436 (2), 18932 (5), 18996 (5), 19060 (6), 19124 (6), 22708 (5), 22772 (5), 22836 (6), 22900 (6), 24820 (5), -tower 4021: eta = 0.85, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 261.843 - sampling = 0, 10 SCIndices: 16437 (2), 18933 (5), 18997 (5), 19061 (6), 19125 (6), 22709 (5), 22773 (5), 22837 (6), 22901 (6), 24821 (5), -tower 4022: eta = 0.85, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 390.06 - sampling = 0, 10 SCIndices: 16438 (2), 18934 (5), 18998 (5), 19062 (6), 19126 (6), 22710 (5), 22774 (5), 22838 (6), 22902 (6), 24822 (5), -tower 4023: eta = 0.85, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 408.825 - sampling = 0, 10 SCIndices: 16439 (2), 18935 (5), 18999 (5), 19063 (6), 19127 (6), 22711 (5), 22775 (5), 22839 (6), 22903 (6), 24823 (5), -tower 4024: eta = 0.85, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 2649.21 - sampling = 0, 10 SCIndices: 16440 (2), 18936 (5), 19000 (5), 19064 (6), 19128 (6), 22712 (5), 22776 (6), 22840 (6), 22904 (7), 24824 (5), -tower 4025: eta = 0.85, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 4060.22 - sampling = 0, 10 SCIndices: 16441 (2), 18937 (5), 19001 (5), 19065 (6), 19129 (6), 22713 (5), 22777 (6), 22841 (6), 22905 (7), 24825 (5), -tower 4026: eta = 0.85, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 265.634 - sampling = 0, 10 SCIndices: 16442 (2), 18938 (5), 19002 (5), 19066 (6), 19130 (6), 22714 (5), 22778 (6), 22842 (6), 22906 (7), 24826 (5), -tower 4027: eta = 0.85, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 627.681 - sampling = 0, 10 SCIndices: 16443 (2), 18939 (5), 19003 (5), 19067 (6), 19131 (6), 22715 (5), 22779 (6), 22843 (6), 22907 (7), 24827 (5), -tower 4028: eta = 0.85, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 233.596 - sampling = 0, 10 SCIndices: 16444 (2), 18940 (5), 19004 (5), 19068 (6), 19132 (6), 22716 (5), 22780 (6), 22844 (6), 22908 (7), 24828 (5), -tower 4029: eta = 0.85, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 450.612 - sampling = 0, 10 SCIndices: 16445 (2), 18941 (5), 19005 (5), 19069 (6), 19133 (6), 22717 (5), 22781 (6), 22845 (6), 22909 (7), 24829 (5), -tower 4030: eta = 0.85, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16446 (2), 18942 (5), 19006 (5), 19070 (6), 19134 (6), 22718 (5), 22782 (6), 22846 (6), 22910 (7), 24830 (5), -tower 4031: eta = 0.85, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 86.7009 - sampling = 0, 10 SCIndices: 16447 (2), 18943 (5), 19007 (5), 19071 (6), 19135 (6), 22719 (5), 22783 (6), 22847 (6), 22911 (7), 24831 (5), -tower 4032: eta = 0.95, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 186.257 - sampling = 0, 10 SCIndices: 16448 (2), 19136 (6), 19200 (5), 19264 (5), 19328 (6), 22912 (7), 22976 (5), 23040 (5), 23104 (6), 24832 (5), -tower 4033: eta = 0.95, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 196.672 - sampling = 0, 10 SCIndices: 16449 (2), 19137 (6), 19201 (5), 19265 (5), 19329 (6), 22913 (7), 22977 (5), 23041 (5), 23105 (6), 24833 (5), -tower 4034: eta = 0.95, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 632.582 - sampling = 0, 10 SCIndices: 16450 (2), 19138 (6), 19202 (5), 19266 (5), 19330 (6), 22914 (7), 22978 (5), 23042 (5), 23106 (6), 24834 (5), -tower 4035: eta = 0.95, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16451 (2), 19139 (6), 19203 (5), 19267 (5), 19331 (6), 22915 (7), 22979 (5), 23043 (5), 23107 (6), 24835 (5), -tower 4036: eta = 0.95, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 44.991 - sampling = 0, 10 SCIndices: 16452 (2), 19140 (6), 19204 (5), 19268 (5), 19332 (6), 22916 (7), 22980 (5), 23044 (5), 23108 (6), 24836 (5), -tower 4037: eta = 0.95, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 539.1 - sampling = 0, 10 SCIndices: 16453 (2), 19141 (6), 19205 (5), 19269 (5), 19333 (6), 22917 (7), 22981 (5), 23045 (5), 23109 (6), 24837 (5), -tower 4038: eta = 0.95, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16454 (2), 19142 (6), 19206 (5), 19270 (5), 19334 (6), 22918 (7), 22982 (5), 23046 (5), 23110 (6), 24838 (5), -tower 4039: eta = 0.95, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 172.754 - sampling = 0, 10 SCIndices: 16455 (2), 19143 (6), 19207 (5), 19271 (5), 19335 (6), 22919 (7), 22983 (5), 23047 (5), 23111 (6), 24839 (5), -tower 4040: eta = 0.95, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 223.554 - sampling = 0, 10 SCIndices: 16456 (2), 19144 (6), 19208 (5), 19272 (5), 19336 (6), 22920 (7), 22984 (5), 23048 (5), 23112 (6), 24840 (5), -tower 4041: eta = 0.95, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 2576.47 - sampling = 0, 10 SCIndices: 16457 (2), 19145 (6), 19209 (5), 19273 (5), 19337 (6), 22921 (7), 22985 (5), 23049 (5), 23113 (6), 24841 (5), -tower 4042: eta = 0.95, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 449.212 - sampling = 0, 10 SCIndices: 16458 (2), 19146 (6), 19210 (5), 19274 (5), 19338 (6), 22922 (7), 22986 (5), 23050 (5), 23114 (6), 24842 (5), -tower 4043: eta = 0.95, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 407.814 - sampling = 0, 10 SCIndices: 16459 (2), 19147 (6), 19211 (5), 19275 (5), 19339 (6), 22923 (7), 22987 (5), 23051 (5), 23115 (6), 24843 (5), -tower 4044: eta = 0.95, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 595.555 - sampling = 0, 10 SCIndices: 16460 (2), 19148 (6), 19212 (5), 19276 (5), 19340 (6), 22924 (7), 22988 (5), 23052 (5), 23116 (6), 24844 (5), -tower 4045: eta = 0.95, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = -65.8299 - sampling = 0, 10 SCIndices: 16461 (2), 19149 (6), 19213 (5), 19277 (5), 19341 (6), 22925 (7), 22989 (5), 23053 (5), 23117 (6), 24845 (5), -tower 4046: eta = 0.95, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 726.945 - sampling = 0, 10 SCIndices: 16462 (2), 19150 (6), 19214 (5), 19278 (5), 19342 (6), 22926 (7), 22990 (5), 23054 (5), 23118 (6), 24846 (5), -tower 4047: eta = 0.95, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 183.219 - sampling = 0, 10 SCIndices: 16463 (2), 19151 (6), 19215 (5), 19279 (5), 19343 (6), 22927 (7), 22991 (5), 23055 (5), 23119 (6), 24847 (5), -tower 4048: eta = 0.95, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 354.888 - sampling = 0, 10 SCIndices: 16464 (2), 19152 (7), 19216 (5), 19280 (6), 19344 (6), 22928 (7), 22992 (5), 23056 (5), 23120 (6), 24848 (5), -tower 4049: eta = 0.95, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 259.99 - sampling = 0, 10 SCIndices: 16465 (2), 19153 (7), 19217 (5), 19281 (6), 19345 (6), 22929 (7), 22993 (5), 23057 (5), 23121 (6), 24849 (5), -tower 4050: eta = 0.95, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 556.934 - sampling = 0, 10 SCIndices: 16466 (2), 19154 (7), 19218 (5), 19282 (6), 19346 (6), 22930 (7), 22994 (5), 23058 (5), 23122 (6), 24850 (5), -tower 4051: eta = 0.95, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 319.165 - sampling = 0, 10 SCIndices: 16467 (2), 19155 (7), 19219 (5), 19283 (6), 19347 (6), 22931 (7), 22995 (5), 23059 (5), 23123 (6), 24851 (5), -tower 4052: eta = 0.95, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 177.754 - sampling = 0, 10 SCIndices: 16468 (2), 19156 (7), 19220 (5), 19284 (6), 19348 (6), 22932 (7), 22996 (5), 23060 (5), 23124 (6), 24852 (5), -tower 4053: eta = 0.95, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 46.6282 - sampling = 0, 10 SCIndices: 16469 (2), 19157 (7), 19221 (5), 19285 (6), 19349 (6), 22933 (7), 22997 (5), 23061 (5), 23125 (6), 24853 (5), -tower 4054: eta = 0.95, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 216.186 - sampling = 0, 10 SCIndices: 16470 (2), 19158 (7), 19222 (5), 19286 (6), 19350 (6), 22934 (7), 22998 (5), 23062 (5), 23126 (6), 24854 (5), -tower 4055: eta = 0.95, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 98.7215 - sampling = 0, 10 SCIndices: 16471 (2), 19159 (7), 19223 (5), 19287 (6), 19351 (6), 22935 (7), 22999 (5), 23063 (5), 23127 (6), 24855 (5), -tower 4056: eta = 0.95, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16472 (2), 19160 (7), 19224 (5), 19288 (6), 19352 (6), 22936 (4), 23000 (5), 23064 (5), 23128 (6), 24856 (5), -tower 4057: eta = 0.95, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 271.963 - sampling = 0, 10 SCIndices: 16473 (2), 19161 (7), 19225 (5), 19289 (6), 19353 (6), 22937 (4), 23001 (5), 23065 (5), 23129 (6), 24857 (5), -tower 4058: eta = 0.95, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16474 (2), 19162 (7), 19226 (5), 19290 (6), 19354 (6), 22938 (4), 23002 (5), 23066 (5), 23130 (6), 24858 (5), -tower 4059: eta = 0.95, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16475 (2), 19163 (7), 19227 (5), 19291 (6), 19355 (6), 22939 (4), 23003 (5), 23067 (5), 23131 (6), 24859 (5), -tower 4060: eta = 0.95, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 215.72 - sampling = 0, 10 SCIndices: 16476 (2), 19164 (7), 19228 (5), 19292 (6), 19356 (6), 22940 (4), 23004 (5), 23068 (5), 23132 (6), 24860 (5), -tower 4061: eta = 0.95, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 267.676 - sampling = 0, 10 SCIndices: 16477 (2), 19165 (7), 19229 (5), 19293 (6), 19357 (6), 22941 (4), 23005 (5), 23069 (5), 23133 (6), 24861 (5), -tower 4062: eta = 0.95, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 272.822 - sampling = 0, 10 SCIndices: 16478 (2), 19166 (7), 19230 (5), 19294 (6), 19358 (6), 22942 (4), 23006 (5), 23070 (5), 23134 (6), 24862 (5), -tower 4063: eta = 0.95, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 102.406 - sampling = 0, 10 SCIndices: 16479 (2), 19167 (7), 19231 (5), 19295 (6), 19359 (6), 22943 (4), 23007 (5), 23071 (5), 23135 (6), 24863 (5), -tower 4064: eta = 0.95, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 1024.82 - sampling = 0, 10 SCIndices: 16480 (2), 19168 (7), 19232 (5), 19296 (6), 19360 (6), 22944 (5), 23008 (5), 23072 (5), 23136 (6), 24864 (5), -tower 4065: eta = 0.95, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 374.327 - sampling = 0, 10 SCIndices: 16481 (2), 19169 (7), 19233 (5), 19297 (6), 19361 (6), 22945 (5), 23009 (5), 23073 (5), 23137 (6), 24865 (5), -tower 4066: eta = 0.95, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 213.588 - sampling = 0, 10 SCIndices: 16482 (2), 19170 (7), 19234 (5), 19298 (6), 19362 (6), 22946 (5), 23010 (5), 23074 (5), 23138 (6), 24866 (5), -tower 4067: eta = 0.95, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 195.943 - sampling = 0, 10 SCIndices: 16483 (2), 19171 (7), 19235 (5), 19299 (6), 19363 (6), 22947 (5), 23011 (5), 23075 (5), 23139 (6), 24867 (5), -tower 4068: eta = 0.95, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 23.6371 - sampling = 0, 10 SCIndices: 16484 (2), 19172 (7), 19236 (5), 19300 (6), 19364 (6), 22948 (5), 23012 (5), 23076 (5), 23140 (6), 24868 (5), -tower 4069: eta = 0.95, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 2.15079 - sampling = 0, 10 SCIndices: 16485 (2), 19173 (7), 19237 (5), 19301 (6), 19365 (6), 22949 (5), 23013 (5), 23077 (5), 23141 (6), 24869 (5), -tower 4070: eta = 0.95, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 370.8 - sampling = 0, 10 SCIndices: 16486 (2), 19174 (7), 19238 (5), 19302 (6), 19366 (6), 22950 (5), 23014 (5), 23078 (5), 23142 (6), 24870 (5), -tower 4071: eta = 0.95, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 648.053 - sampling = 0, 10 SCIndices: 16487 (2), 19175 (7), 19239 (5), 19303 (6), 19367 (6), 22951 (5), 23015 (5), 23079 (5), 23143 (6), 24871 (5), -tower 4072: eta = 0.95, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 495.061 - sampling = 0, 10 SCIndices: 16488 (2), 19176 (7), 19240 (5), 19304 (6), 19368 (6), 22952 (5), 23016 (5), 23080 (5), 23144 (6), 24872 (5), -tower 4073: eta = 0.95, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 118.69 - sampling = 0, 10 SCIndices: 16489 (2), 19177 (7), 19241 (5), 19305 (6), 19369 (6), 22953 (5), 23017 (5), 23081 (5), 23145 (6), 24873 (5), -tower 4074: eta = 0.95, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 137.107 - sampling = 0, 10 SCIndices: 16490 (2), 19178 (7), 19242 (5), 19306 (6), 19370 (6), 22954 (5), 23018 (5), 23082 (5), 23146 (6), 24874 (5), -tower 4075: eta = 0.95, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 48.7601 - sampling = 0, 10 SCIndices: 16491 (2), 19179 (7), 19243 (5), 19307 (6), 19371 (6), 22955 (5), 23019 (5), 23083 (5), 23147 (6), 24875 (5), -tower 4076: eta = 0.95, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 324.6 - sampling = 0, 10 SCIndices: 16492 (2), 19180 (7), 19244 (5), 19308 (6), 19372 (6), 22956 (5), 23020 (5), 23084 (5), 23148 (6), 24876 (5), -tower 4077: eta = 0.95, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 321.511 - sampling = 0, 10 SCIndices: 16493 (2), 19181 (7), 19245 (5), 19309 (6), 19373 (6), 22957 (5), 23021 (5), 23085 (5), 23149 (6), 24877 (5), -tower 4078: eta = 0.95, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 286.132 - sampling = 0, 10 SCIndices: 16494 (2), 19182 (7), 19246 (5), 19310 (6), 19374 (6), 22958 (5), 23022 (5), 23086 (5), 23150 (6), 24878 (5), -tower 4079: eta = 0.95, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16495 (2), 19183 (7), 19247 (5), 19311 (6), 19375 (6), 22959 (5), 23023 (5), 23087 (5), 23151 (6), 24879 (5), -tower 4080: eta = 0.95, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 672.572 - sampling = 0, 10 SCIndices: 16496 (2), 19184 (4), 19248 (5), 19312 (6), 19376 (6), 22960 (5), 23024 (5), 23088 (6), 23152 (6), 24880 (5), -tower 4081: eta = 0.95, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 289.856 - sampling = 0, 10 SCIndices: 16497 (2), 19185 (4), 19249 (5), 19313 (6), 19377 (6), 22961 (5), 23025 (5), 23089 (6), 23153 (6), 24881 (5), -tower 4082: eta = 0.95, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 367.028 - sampling = 0, 10 SCIndices: 16498 (2), 19186 (4), 19250 (5), 19314 (6), 19378 (6), 22962 (5), 23026 (5), 23090 (6), 23154 (6), 24882 (5), -tower 4083: eta = 0.95, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 311.506 - sampling = 0, 10 SCIndices: 16499 (2), 19187 (4), 19251 (5), 19315 (6), 19379 (6), 22963 (5), 23027 (5), 23091 (6), 23155 (6), 24883 (5), -tower 4084: eta = 0.95, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = -20.385 - sampling = 0, 10 SCIndices: 16500 (2), 19188 (4), 19252 (5), 19316 (6), 19380 (6), 22964 (5), 23028 (5), 23092 (6), 23156 (6), 24884 (5), -tower 4085: eta = 0.95, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 648.422 - sampling = 0, 10 SCIndices: 16501 (2), 19189 (4), 19253 (5), 19317 (6), 19381 (6), 22965 (5), 23029 (5), 23093 (6), 23157 (6), 24885 (5), -tower 4086: eta = 0.95, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 900.875 - sampling = 0, 10 SCIndices: 16502 (3), 19190 (4), 19254 (5), 19318 (6), 19382 (6), 22966 (5), 23030 (5), 23094 (6), 23158 (6), 24886 (5), -tower 4087: eta = 0.95, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 594.085 - sampling = 0, 10 SCIndices: 16503 (3), 19191 (4), 19255 (5), 19319 (6), 19383 (6), 22967 (5), 23031 (5), 23095 (6), 23159 (6), 24887 (5), -tower 4088: eta = 0.95, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 309.686 - sampling = 0, 10 SCIndices: 16504 (3), 19192 (4), 19256 (5), 19320 (6), 19384 (6), 22968 (5), 23032 (5), 23096 (6), 23160 (6), 24888 (5), -tower 4089: eta = 0.95, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 189.132 - sampling = 0, 10 SCIndices: 16505 (3), 19193 (4), 19257 (5), 19321 (6), 19385 (6), 22969 (5), 23033 (5), 23097 (6), 23161 (6), 24889 (5), -tower 4090: eta = 0.95, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 723.437 - sampling = 0, 10 SCIndices: 16506 (3), 19194 (4), 19258 (5), 19322 (6), 19386 (6), 22970 (5), 23034 (5), 23098 (6), 23162 (6), 24890 (5), -tower 4091: eta = 0.95, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = -22.8537 - sampling = 0, 10 SCIndices: 16507 (3), 19195 (4), 19259 (5), 19323 (6), 19387 (6), 22971 (5), 23035 (5), 23099 (6), 23163 (6), 24891 (5), -tower 4092: eta = 0.95, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 545.001 - sampling = 0, 10 SCIndices: 16508 (3), 19196 (4), 19260 (5), 19324 (6), 19388 (6), 22972 (5), 23036 (5), 23100 (6), 23164 (6), 24892 (5), -tower 4093: eta = 0.95, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16509 (3), 19197 (4), 19261 (5), 19325 (6), 19389 (6), 22973 (5), 23037 (5), 23101 (6), 23165 (6), 24893 (5), -tower 4094: eta = 0.95, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16510 (3), 19198 (4), 19262 (5), 19326 (6), 19390 (6), 22974 (5), 23038 (5), 23102 (6), 23166 (6), 24894 (5), -tower 4095: eta = 0.95, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 392.588 - sampling = 0, 10 SCIndices: 16511 (3), 19199 (4), 19263 (5), 19327 (6), 19391 (6), 22975 (5), 23039 (5), 23103 (6), 23167 (6), 24895 (5), -tower 4096: eta = 1.05, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16512 (3), 19392 (6), 19456 (7), 19520 (6), 19584 (8), 23168 (6), 23232 (7), 23296 (5), 23360 (6), 24896 (5), -tower 4097: eta = 1.05, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 358.039 - sampling = 0, 10 SCIndices: 16513 (3), 19393 (6), 19457 (7), 19521 (6), 19585 (8), 23169 (6), 23233 (7), 23297 (5), 23361 (6), 24897 (5), -tower 4098: eta = 1.05, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 106.607 - sampling = 0, 10 SCIndices: 16514 (3), 19394 (6), 19458 (7), 19522 (6), 19586 (8), 23170 (6), 23234 (7), 23298 (5), 23362 (6), 24898 (5), -tower 4099: eta = 1.05, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 94.0721 - sampling = 0, 10 SCIndices: 16515 (3), 19395 (6), 19459 (7), 19523 (6), 19587 (8), 23171 (6), 23235 (7), 23299 (5), 23363 (6), 24899 (5), -tower 4100: eta = 1.05, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 230.691 - sampling = 0, 10 SCIndices: 16516 (3), 19396 (6), 19460 (7), 19524 (6), 19588 (8), 23172 (6), 23236 (7), 23300 (5), 23364 (6), 24900 (5), -tower 4101: eta = 1.05, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = -124.242 - sampling = 0, 10 SCIndices: 16517 (3), 19397 (6), 19461 (7), 19525 (6), 19589 (8), 23173 (6), 23237 (7), 23301 (5), 23365 (6), 24901 (5), -tower 4102: eta = 1.05, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 384.028 - sampling = 0, 10 SCIndices: 16518 (3), 19398 (6), 19462 (7), 19526 (6), 19590 (8), 23174 (6), 23238 (7), 23302 (5), 23366 (6), 24902 (5), -tower 4103: eta = 1.05, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 747.777 - sampling = 0, 10 SCIndices: 16519 (3), 19399 (6), 19463 (7), 19527 (6), 19591 (8), 23175 (6), 23239 (7), 23303 (5), 23367 (6), 24903 (5), -tower 4104: eta = 1.05, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 253.51 - sampling = 0, 10 SCIndices: 16520 (3), 19400 (6), 19464 (7), 19528 (6), 19592 (8), 23176 (6), 23240 (7), 23304 (5), 23368 (6), 24904 (5), -tower 4105: eta = 1.05, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 649.325 - sampling = 0, 10 SCIndices: 16521 (3), 19401 (6), 19465 (7), 19529 (6), 19593 (8), 23177 (6), 23241 (7), 23305 (5), 23369 (6), 24905 (5), -tower 4106: eta = 1.05, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16522 (3), 19402 (6), 19466 (7), 19530 (6), 19594 (8), 23178 (6), 23242 (7), 23306 (5), 23370 (6), 24906 (5), -tower 4107: eta = 1.05, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 328.069 - sampling = 0, 10 SCIndices: 16523 (3), 19403 (6), 19467 (7), 19531 (6), 19595 (8), 23179 (6), 23243 (7), 23307 (5), 23371 (6), 24907 (5), -tower 4108: eta = 1.05, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 1538.88 - sampling = 0, 10 SCIndices: 16524 (3), 19404 (6), 19468 (7), 19532 (6), 19596 (8), 23180 (6), 23244 (7), 23308 (5), 23372 (6), 24908 (5), -tower 4109: eta = 1.05, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 556.979 - sampling = 0, 10 SCIndices: 16525 (3), 19405 (6), 19469 (7), 19533 (6), 19597 (8), 23181 (6), 23245 (7), 23309 (5), 23373 (6), 24909 (5), -tower 4110: eta = 1.05, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 94.0141 - sampling = 0, 10 SCIndices: 16526 (3), 19406 (6), 19470 (7), 19534 (6), 19598 (8), 23182 (6), 23246 (7), 23310 (5), 23374 (6), 24910 (5), -tower 4111: eta = 1.05, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16527 (3), 19407 (6), 19471 (7), 19535 (6), 19599 (8), 23183 (6), 23247 (7), 23311 (5), 23375 (6), 24911 (5), -tower 4112: eta = 1.05, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = -22.3503 - sampling = 0, 10 SCIndices: 16528 (3), 19408 (7), 19472 (7), 19536 (6), 19600 (8), 23184 (6), 23248 (4), 23312 (5), 23376 (6), 24912 (5), -tower 4113: eta = 1.05, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 397.268 - sampling = 0, 10 SCIndices: 16529 (3), 19409 (7), 19473 (7), 19537 (6), 19601 (8), 23185 (6), 23249 (4), 23313 (5), 23377 (6), 24913 (5), -tower 4114: eta = 1.05, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 41.6644 - sampling = 0, 10 SCIndices: 16530 (0), 19410 (7), 19474 (7), 19538 (6), 19602 (8), 23186 (6), 23250 (4), 23314 (5), 23378 (6), 24914 (5), -tower 4115: eta = 1.05, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 357.731 - sampling = 0, 10 SCIndices: 16531 (0), 19411 (7), 19475 (7), 19539 (6), 19603 (8), 23187 (6), 23251 (4), 23315 (5), 23379 (6), 24915 (5), -tower 4116: eta = 1.05, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 1575.08 - sampling = 0, 10 SCIndices: 16532 (0), 19412 (7), 19476 (7), 19540 (6), 19604 (8), 23188 (6), 23252 (4), 23316 (5), 23380 (6), 24916 (5), -tower 4117: eta = 1.05, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 65.0475 - sampling = 0, 10 SCIndices: 16533 (0), 19413 (7), 19477 (7), 19541 (6), 19605 (8), 23189 (6), 23253 (4), 23317 (5), 23381 (6), 24917 (5), -tower 4118: eta = 1.05, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 230.638 - sampling = 0, 10 SCIndices: 16534 (0), 19414 (7), 19478 (7), 19542 (6), 19606 (8), 23190 (6), 23254 (4), 23318 (5), 23382 (6), 24918 (5), -tower 4119: eta = 1.05, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = -160.954 - sampling = 0, 10 SCIndices: 16535 (0), 19415 (7), 19479 (7), 19543 (6), 19607 (8), 23191 (6), 23255 (4), 23319 (5), 23383 (6), 24919 (5), -tower 4120: eta = 1.05, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 466.717 - sampling = 0, 10 SCIndices: 16536 (0), 19416 (7), 19480 (7), 19544 (6), 19608 (8), 23192 (6), 23256 (4), 23320 (5), 23384 (6), 24920 (5), -tower 4121: eta = 1.05, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 230.72 - sampling = 0, 10 SCIndices: 16537 (0), 19417 (7), 19481 (7), 19545 (6), 19609 (8), 23193 (6), 23257 (4), 23321 (5), 23385 (6), 24921 (5), -tower 4122: eta = 1.05, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16538 (0), 19418 (7), 19482 (7), 19546 (6), 19610 (8), 23194 (6), 23258 (4), 23322 (5), 23386 (6), 24922 (5), -tower 4123: eta = 1.05, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 394.778 - sampling = 0, 10 SCIndices: 16539 (0), 19419 (7), 19483 (7), 19547 (6), 19611 (8), 23195 (6), 23259 (4), 23323 (5), 23387 (6), 24923 (5), -tower 4124: eta = 1.05, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 694.354 - sampling = 0, 10 SCIndices: 16540 (0), 19420 (7), 19484 (7), 19548 (6), 19612 (8), 23196 (6), 23260 (4), 23324 (5), 23388 (6), 24924 (5), -tower 4125: eta = 1.05, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16541 (0), 19421 (7), 19485 (7), 19549 (6), 19613 (8), 23197 (6), 23261 (4), 23325 (5), 23389 (6), 24925 (5), -tower 4126: eta = 1.05, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 181.145 - sampling = 0, 10 SCIndices: 16542 (0), 19422 (7), 19486 (7), 19550 (6), 19614 (8), 23198 (6), 23262 (4), 23326 (5), 23390 (6), 24926 (5), -tower 4127: eta = 1.05, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 130.632 - sampling = 0, 10 SCIndices: 16543 (0), 19423 (7), 19487 (7), 19551 (6), 19615 (8), 23199 (6), 23263 (4), 23327 (5), 23391 (6), 24927 (5), -tower 4128: eta = 1.05, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 95.8325 - sampling = 0, 10 SCIndices: 16544 (0), 19424 (6), 19488 (5), 19552 (6), 19616 (8), 23200 (6), 23264 (5), 23328 (5), 23392 (6), 24928 (6), -tower 4129: eta = 1.05, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 304.009 - sampling = 0, 10 SCIndices: 16545 (0), 19425 (6), 19489 (5), 19553 (6), 19617 (8), 23201 (6), 23265 (5), 23329 (5), 23393 (6), 24929 (6), -tower 4130: eta = 1.05, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16546 (0), 19426 (6), 19490 (5), 19554 (6), 19618 (8), 23202 (6), 23266 (5), 23330 (5), 23394 (6), 24930 (6), -tower 4131: eta = 1.05, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 349.1 - sampling = 0, 10 SCIndices: 16547 (0), 19427 (6), 19491 (5), 19555 (6), 19619 (8), 23203 (6), 23267 (5), 23331 (5), 23395 (6), 24931 (6), -tower 4132: eta = 1.05, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 399.71 - sampling = 0, 10 SCIndices: 16548 (0), 19428 (6), 19492 (5), 19556 (6), 19620 (8), 23204 (6), 23268 (5), 23332 (5), 23396 (6), 24932 (6), -tower 4133: eta = 1.05, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = -527.722 - sampling = 0, 10 SCIndices: 16549 (0), 19429 (6), 19493 (5), 19557 (6), 19621 (8), 23205 (6), 23269 (5), 23333 (5), 23397 (6), 24933 (6), -tower 4134: eta = 1.05, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 94.2893 - sampling = 0, 10 SCIndices: 16550 (0), 19430 (6), 19494 (5), 19558 (6), 19622 (8), 23206 (6), 23270 (5), 23334 (5), 23398 (6), 24934 (6), -tower 4135: eta = 1.05, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 956.499 - sampling = 0, 10 SCIndices: 16551 (0), 19431 (6), 19495 (5), 19559 (6), 19623 (8), 23207 (6), 23271 (5), 23335 (5), 23399 (6), 24935 (6), -tower 4136: eta = 1.05, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 221.765 - sampling = 0, 10 SCIndices: 16552 (0), 19432 (6), 19496 (5), 19560 (6), 19624 (8), 23208 (6), 23272 (5), 23336 (5), 23400 (6), 24936 (6), -tower 4137: eta = 1.05, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 147.387 - sampling = 0, 10 SCIndices: 16553 (0), 19433 (6), 19497 (5), 19561 (6), 19625 (8), 23209 (6), 23273 (5), 23337 (5), 23401 (6), 24937 (6), -tower 4138: eta = 1.05, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 221.939 - sampling = 0, 10 SCIndices: 16554 (0), 19434 (6), 19498 (5), 19562 (6), 19626 (8), 23210 (6), 23274 (5), 23338 (5), 23402 (6), 24938 (6), -tower 4139: eta = 1.05, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 180.624 - sampling = 0, 10 SCIndices: 16555 (0), 19435 (6), 19499 (5), 19563 (6), 19627 (8), 23211 (6), 23275 (5), 23339 (5), 23403 (6), 24939 (6), -tower 4140: eta = 1.05, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 342.689 - sampling = 0, 10 SCIndices: 16556 (0), 19436 (6), 19500 (5), 19564 (6), 19628 (8), 23212 (6), 23276 (5), 23340 (5), 23404 (6), 24940 (6), -tower 4141: eta = 1.05, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 245.744 - sampling = 0, 10 SCIndices: 16557 (0), 19437 (6), 19501 (5), 19565 (6), 19629 (8), 23213 (6), 23277 (5), 23341 (5), 23405 (6), 24941 (6), -tower 4142: eta = 1.05, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16558 (0), 19438 (6), 19502 (5), 19566 (6), 19630 (8), 23214 (6), 23278 (5), 23342 (5), 23406 (6), 24942 (6), -tower 4143: eta = 1.05, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16559 (0), 19439 (6), 19503 (5), 19567 (6), 19631 (8), 23215 (6), 23279 (5), 23343 (5), 23407 (6), 24943 (6), -tower 4144: eta = 1.05, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 702.426 - sampling = 0, 10 SCIndices: 16560 (1), 19440 (6), 19504 (6), 19568 (7), 19632 (8), 23216 (7), 23280 (5), 23344 (6), 23408 (6), 24944 (6), -tower 4145: eta = 1.05, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 1014.29 - sampling = 0, 10 SCIndices: 16561 (1), 19441 (6), 19505 (6), 19569 (7), 19633 (8), 23217 (7), 23281 (5), 23345 (6), 23409 (6), 24945 (6), -tower 4146: eta = 1.05, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 172.176 - sampling = 0, 10 SCIndices: 16562 (1), 19442 (6), 19506 (6), 19570 (7), 19634 (8), 23218 (7), 23282 (5), 23346 (6), 23410 (6), 24946 (6), -tower 4147: eta = 1.05, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 50.8821 - sampling = 0, 10 SCIndices: 16563 (1), 19443 (6), 19507 (6), 19571 (7), 19635 (8), 23219 (7), 23283 (5), 23347 (6), 23411 (6), 24947 (6), -tower 4148: eta = 1.05, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 190.412 - sampling = 0, 10 SCIndices: 16564 (1), 19444 (6), 19508 (6), 19572 (7), 19636 (8), 23220 (7), 23284 (5), 23348 (6), 23412 (6), 24948 (6), -tower 4149: eta = 1.05, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 211.225 - sampling = 0, 10 SCIndices: 16565 (1), 19445 (6), 19509 (6), 19573 (7), 19637 (8), 23221 (7), 23285 (5), 23349 (6), 23413 (6), 24949 (6), -tower 4150: eta = 1.05, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = -45.925 - sampling = 0, 10 SCIndices: 16566 (1), 19446 (6), 19510 (6), 19574 (7), 19638 (8), 23222 (7), 23286 (5), 23350 (6), 23414 (6), 24950 (6), -tower 4151: eta = 1.05, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 149.538 - sampling = 0, 10 SCIndices: 16567 (1), 19447 (6), 19511 (6), 19575 (7), 19639 (8), 23223 (7), 23287 (5), 23351 (6), 23415 (6), 24951 (6), -tower 4152: eta = 1.05, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 274.536 - sampling = 0, 10 SCIndices: 16568 (1), 19448 (6), 19512 (6), 19576 (7), 19640 (8), 23224 (7), 23288 (5), 23352 (6), 23416 (6), 24952 (6), -tower 4153: eta = 1.05, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16569 (1), 19449 (6), 19513 (6), 19577 (7), 19641 (8), 23225 (7), 23289 (5), 23353 (6), 23417 (6), 24953 (6), -tower 4154: eta = 1.05, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 243.539 - sampling = 0, 10 SCIndices: 16570 (1), 19450 (6), 19514 (6), 19578 (7), 19642 (8), 23226 (7), 23290 (5), 23354 (6), 23418 (6), 24954 (6), -tower 4155: eta = 1.05, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 896.984 - sampling = 0, 10 SCIndices: 16571 (1), 19451 (6), 19515 (6), 19579 (7), 19643 (8), 23227 (7), 23291 (5), 23355 (6), 23419 (6), 24955 (6), -tower 4156: eta = 1.05, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 740.555 - sampling = 0, 10 SCIndices: 16572 (1), 19452 (6), 19516 (6), 19580 (7), 19644 (8), 23228 (7), 23292 (5), 23356 (6), 23420 (6), 24956 (6), -tower 4157: eta = 1.05, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 157.536 - sampling = 0, 10 SCIndices: 16573 (1), 19453 (6), 19517 (6), 19581 (7), 19645 (8), 23229 (7), 23293 (5), 23357 (6), 23421 (6), 24957 (6), -tower 4158: eta = 1.05, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 102.624 - sampling = 0, 10 SCIndices: 16574 (1), 19454 (6), 19518 (6), 19582 (7), 19646 (8), 23230 (7), 23294 (5), 23358 (6), 23422 (6), 24958 (6), -tower 4159: eta = 1.05, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16575 (1), 19455 (6), 19519 (6), 19583 (7), 19647 (8), 23231 (7), 23295 (5), 23359 (6), 23423 (6), 24959 (6), -tower 4160: eta = 1.15, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 470.196 - sampling = 0, 10 SCIndices: 16576 (1), 19648 (8), 19712 (8), 19776 (4), 19840 (5), 23424 (6), 23488 (6), 23552 (5), 23616 (6), 24960 (6), -tower 4161: eta = 1.15, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 941.88 - sampling = 0, 10 SCIndices: 16577 (1), 19649 (8), 19713 (8), 19777 (4), 19841 (5), 23425 (6), 23489 (6), 23553 (5), 23617 (6), 24961 (6), -tower 4162: eta = 1.15, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 282.595 - sampling = 0, 10 SCIndices: 16578 (1), 19650 (8), 19714 (8), 19778 (4), 19842 (5), 23426 (6), 23490 (6), 23554 (5), 23618 (6), 24962 (6), -tower 4163: eta = 1.15, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 363.164 - sampling = 0, 10 SCIndices: 16579 (1), 19651 (8), 19715 (8), 19779 (4), 19843 (5), 23427 (6), 23491 (6), 23555 (5), 23619 (6), 24963 (6), -tower 4164: eta = 1.15, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16580 (1), 19652 (8), 19716 (8), 19780 (4), 19844 (5), 23428 (6), 23492 (6), 23556 (5), 23620 (6), 24964 (6), -tower 4165: eta = 1.15, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 250.077 - sampling = 0, 10 SCIndices: 16581 (1), 19653 (8), 19717 (8), 19781 (4), 19845 (5), 23429 (6), 23493 (6), 23557 (5), 23621 (6), 24965 (6), -tower 4166: eta = 1.15, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 265.772 - sampling = 0, 10 SCIndices: 16582 (1), 19654 (8), 19718 (8), 19782 (4), 19846 (5), 23430 (6), 23494 (6), 23558 (5), 23622 (6), 24966 (6), -tower 4167: eta = 1.15, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 241.454 - sampling = 0, 10 SCIndices: 16583 (1), 19655 (8), 19719 (8), 19783 (4), 19847 (5), 23431 (6), 23495 (6), 23559 (5), 23623 (6), 24967 (6), -tower 4168: eta = 1.15, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 345.237 - sampling = 0, 10 SCIndices: 16584 (1), 19656 (8), 19720 (8), 19784 (5), 19848 (5), 23432 (6), 23496 (6), 23560 (5), 23624 (6), 24968 (6), -tower 4169: eta = 1.15, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 291.558 - sampling = 0, 10 SCIndices: 16585 (1), 19657 (8), 19721 (8), 19785 (5), 19849 (5), 23433 (6), 23497 (6), 23561 (5), 23625 (6), 24969 (6), -tower 4170: eta = 1.15, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 606.098 - sampling = 0, 10 SCIndices: 16586 (1), 19658 (8), 19722 (8), 19786 (5), 19850 (5), 23434 (6), 23498 (6), 23562 (5), 23626 (6), 24970 (6), -tower 4171: eta = 1.15, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 290.555 - sampling = 0, 10 SCIndices: 16587 (1), 19659 (8), 19723 (8), 19787 (5), 19851 (5), 23435 (6), 23499 (6), 23563 (5), 23627 (6), 24971 (6), -tower 4172: eta = 1.15, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 191.925 - sampling = 0, 10 SCIndices: 16588 (1), 19660 (8), 19724 (8), 19788 (5), 19852 (5), 23436 (6), 23500 (6), 23564 (5), 23628 (6), 24972 (6), -tower 4173: eta = 1.15, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 555.455 - sampling = 0, 10 SCIndices: 16589 (1), 19661 (8), 19725 (8), 19789 (5), 19853 (5), 23437 (6), 23501 (6), 23565 (5), 23629 (6), 24973 (6), -tower 4174: eta = 1.15, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = -20.1823 - sampling = 0, 10 SCIndices: 16590 (1), 19662 (8), 19726 (8), 19790 (5), 19854 (5), 23438 (6), 23502 (6), 23566 (5), 23630 (6), 24974 (6), -tower 4175: eta = 1.15, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 965.75 - sampling = 0, 10 SCIndices: 16591 (1), 19663 (8), 19727 (8), 19791 (5), 19855 (5), 23439 (6), 23503 (6), 23567 (5), 23631 (6), 24975 (6), -tower 4176: eta = 1.15, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 404.578 - sampling = 0, 10 SCIndices: 16592 (1), 19664 (8), 19728 (8), 19792 (5), 19856 (5), 23440 (6), 23504 (6), 23568 (6), 23632 (7), 24976 (6), -tower 4177: eta = 1.15, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 400.832 - sampling = 0, 10 SCIndices: 16593 (1), 19665 (8), 19729 (8), 19793 (5), 19857 (5), 23441 (6), 23505 (6), 23569 (6), 23633 (7), 24977 (6), -tower 4178: eta = 1.15, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 255.742 - sampling = 0, 10 SCIndices: 16594 (1), 19666 (8), 19730 (8), 19794 (5), 19858 (5), 23442 (6), 23506 (6), 23570 (6), 23634 (7), 24978 (6), -tower 4179: eta = 1.15, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 239.986 - sampling = 0, 10 SCIndices: 16595 (1), 19667 (8), 19731 (8), 19795 (5), 19859 (5), 23443 (6), 23507 (6), 23571 (6), 23635 (7), 24979 (6), -tower 4180: eta = 1.15, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 454.647 - sampling = 0, 10 SCIndices: 16596 (1), 19668 (8), 19732 (8), 19796 (5), 19860 (5), 23444 (6), 23508 (6), 23572 (6), 23636 (7), 24980 (6), -tower 4181: eta = 1.15, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 132.871 - sampling = 0, 10 SCIndices: 16597 (1), 19669 (8), 19733 (8), 19797 (5), 19861 (5), 23445 (6), 23509 (6), 23573 (6), 23637 (7), 24981 (6), -tower 4182: eta = 1.15, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16598 (1), 19670 (8), 19734 (8), 19798 (5), 19862 (5), 23446 (6), 23510 (6), 23574 (6), 23638 (7), 24982 (6), -tower 4183: eta = 1.15, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 568.158 - sampling = 0, 10 SCIndices: 16599 (1), 19671 (8), 19735 (8), 19799 (5), 19863 (5), 23447 (6), 23511 (6), 23575 (6), 23639 (7), 24983 (6), -tower 4184: eta = 1.15, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 575.026 - sampling = 0, 10 SCIndices: 16600 (1), 19672 (8), 19736 (8), 19800 (5), 19864 (5), 23448 (6), 23512 (6), 23576 (6), 23640 (7), 24984 (6), -tower 4185: eta = 1.15, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 164.685 - sampling = 0, 10 SCIndices: 16601 (1), 19673 (8), 19737 (8), 19801 (5), 19865 (5), 23449 (6), 23513 (6), 23577 (6), 23641 (7), 24985 (6), -tower 4186: eta = 1.15, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = -41.5027 - sampling = 0, 10 SCIndices: 16602 (1), 19674 (8), 19738 (8), 19802 (5), 19866 (5), 23450 (6), 23514 (6), 23578 (6), 23642 (7), 24986 (6), -tower 4187: eta = 1.15, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 99.7818 - sampling = 0, 10 SCIndices: 16603 (1), 19675 (8), 19739 (8), 19803 (5), 19867 (5), 23451 (6), 23515 (6), 23579 (6), 23643 (7), 24987 (6), -tower 4188: eta = 1.15, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 151.079 - sampling = 0, 10 SCIndices: 16604 (1), 19676 (8), 19740 (8), 19804 (5), 19868 (5), 23452 (6), 23516 (6), 23580 (6), 23644 (7), 24988 (6), -tower 4189: eta = 1.15, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 241.842 - sampling = 0, 10 SCIndices: 16605 (1), 19677 (8), 19741 (8), 19805 (5), 19869 (5), 23453 (6), 23517 (6), 23581 (6), 23645 (7), 24989 (6), -tower 4190: eta = 1.15, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 715.79 - sampling = 0, 10 SCIndices: 16606 (1), 19678 (8), 19742 (8), 19806 (5), 19870 (5), 23454 (6), 23518 (6), 23582 (6), 23646 (7), 24990 (6), -tower 4191: eta = 1.15, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = -0.0833626 - sampling = 0, 10 SCIndices: 16607 (1), 19679 (8), 19743 (8), 19807 (5), 19871 (5), 23455 (6), 23519 (6), 23583 (6), 23647 (7), 24991 (6), -tower 4192: eta = 1.15, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 526.149 - sampling = 0, 10 SCIndices: 16608 (1), 19680 (8), 19744 (8), 19808 (5), 19872 (5), 23456 (6), 23520 (7), 23584 (6), 23648 (8), 24992 (6), -tower 4193: eta = 1.15, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 510.658 - sampling = 0, 10 SCIndices: 16609 (1), 19681 (8), 19745 (8), 19809 (5), 19873 (5), 23457 (6), 23521 (7), 23585 (6), 23649 (8), 24993 (6), -tower 4194: eta = 1.15, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 66.2079 - sampling = 0, 10 SCIndices: 16610 (1), 19682 (8), 19746 (8), 19810 (5), 19874 (5), 23458 (6), 23522 (7), 23586 (6), 23650 (8), 24994 (6), -tower 4195: eta = 1.15, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 61.6133 - sampling = 0, 10 SCIndices: 16611 (1), 19683 (8), 19747 (8), 19811 (5), 19875 (5), 23459 (6), 23523 (7), 23587 (6), 23651 (8), 24995 (6), -tower 4196: eta = 1.15, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 246.882 - sampling = 0, 10 SCIndices: 16612 (1), 19684 (8), 19748 (8), 19812 (5), 19876 (5), 23460 (6), 23524 (7), 23588 (6), 23652 (8), 24996 (6), -tower 4197: eta = 1.15, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 141.604 - sampling = 0, 10 SCIndices: 16613 (1), 19685 (8), 19749 (8), 19813 (5), 19877 (5), 23461 (6), 23525 (7), 23589 (6), 23653 (8), 24997 (6), -tower 4198: eta = 1.15, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16614 (1), 19686 (8), 19750 (8), 19814 (5), 19878 (5), 23462 (6), 23526 (7), 23590 (6), 23654 (8), 24998 (6), -tower 4199: eta = 1.15, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16615 (1), 19687 (8), 19751 (8), 19815 (5), 19879 (5), 23463 (6), 23527 (7), 23591 (6), 23655 (8), 24999 (6), -tower 4200: eta = 1.15, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 114.672 - sampling = 0, 10 SCIndices: 16616 (1), 19688 (8), 19752 (8), 19816 (5), 19880 (5), 23464 (6), 23528 (7), 23592 (6), 23656 (8), 25000 (6), -tower 4201: eta = 1.15, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = -52.889 - sampling = 0, 10 SCIndices: 16617 (1), 19689 (8), 19753 (8), 19817 (5), 19881 (5), 23465 (6), 23529 (7), 23593 (6), 23657 (8), 25001 (6), -tower 4202: eta = 1.15, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 390.232 - sampling = 0, 10 SCIndices: 16618 (1), 19690 (8), 19754 (8), 19818 (5), 19882 (5), 23466 (6), 23530 (7), 23594 (6), 23658 (8), 25002 (6), -tower 4203: eta = 1.15, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 277.447 - sampling = 0, 10 SCIndices: 16619 (1), 19691 (8), 19755 (8), 19819 (5), 19883 (5), 23467 (6), 23531 (7), 23595 (6), 23659 (8), 25003 (6), -tower 4204: eta = 1.15, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 564.47 - sampling = 0, 10 SCIndices: 16620 (1), 19692 (8), 19756 (8), 19820 (5), 19884 (5), 23468 (6), 23532 (7), 23596 (6), 23660 (8), 25004 (6), -tower 4205: eta = 1.15, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 158.323 - sampling = 0, 10 SCIndices: 16621 (1), 19693 (8), 19757 (8), 19821 (5), 19885 (5), 23469 (6), 23533 (7), 23597 (6), 23661 (8), 25005 (6), -tower 4206: eta = 1.15, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = -157.152 - sampling = 0, 10 SCIndices: 16622 (1), 19694 (8), 19758 (8), 19822 (5), 19886 (5), 23470 (6), 23534 (7), 23598 (6), 23662 (8), 25006 (6), -tower 4207: eta = 1.15, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 232.363 - sampling = 0, 10 SCIndices: 16623 (1), 19695 (8), 19759 (8), 19823 (5), 19887 (5), 23471 (6), 23535 (7), 23599 (6), 23663 (8), 25007 (6), -tower 4208: eta = 1.15, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 383.593 - sampling = 0, 10 SCIndices: 16624 (1), 19696 (8), 19760 (8), 19824 (5), 19888 (5), 23472 (7), 23536 (7), 23600 (6), 23664 (8), 25008 (6), -tower 4209: eta = 1.15, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 135.807 - sampling = 0, 10 SCIndices: 16625 (1), 19697 (8), 19761 (8), 19825 (5), 19889 (5), 23473 (7), 23537 (7), 23601 (6), 23665 (8), 25009 (6), -tower 4210: eta = 1.15, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 90.2842 - sampling = 0, 10 SCIndices: 16626 (1), 19698 (8), 19762 (8), 19826 (5), 19890 (5), 23474 (7), 23538 (7), 23602 (6), 23666 (8), 25010 (6), -tower 4211: eta = 1.15, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 510.574 - sampling = 0, 10 SCIndices: 16627 (1), 19699 (8), 19763 (8), 19827 (5), 19891 (5), 23475 (7), 23539 (7), 23603 (6), 23667 (8), 25011 (6), -tower 4212: eta = 1.15, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = -72.854 - sampling = 0, 10 SCIndices: 16628 (1), 19700 (8), 19764 (8), 19828 (5), 19892 (5), 23476 (7), 23540 (7), 23604 (6), 23668 (8), 25012 (6), -tower 4213: eta = 1.15, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 177.426 - sampling = 0, 10 SCIndices: 16629 (1), 19701 (8), 19765 (8), 19829 (5), 19893 (5), 23477 (7), 23541 (7), 23605 (6), 23669 (8), 25013 (6), -tower 4214: eta = 1.15, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 346.197 - sampling = 0, 10 SCIndices: 16630 (1), 19702 (8), 19766 (8), 19830 (5), 19894 (5), 23478 (7), 23542 (7), 23606 (6), 23670 (8), 25014 (6), -tower 4215: eta = 1.15, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 223.173 - sampling = 0, 10 SCIndices: 16631 (1), 19703 (8), 19767 (8), 19831 (5), 19895 (5), 23479 (7), 23543 (7), 23607 (6), 23671 (8), 25015 (6), -tower 4216: eta = 1.15, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 194.866 - sampling = 0, 10 SCIndices: 16632 (1), 19704 (8), 19768 (8), 19832 (5), 19896 (5), 23480 (7), 23544 (7), 23608 (6), 23672 (8), 25016 (6), -tower 4217: eta = 1.15, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 849.713 - sampling = 0, 10 SCIndices: 16633 (1), 19705 (8), 19769 (8), 19833 (5), 19897 (5), 23481 (7), 23545 (7), 23609 (6), 23673 (8), 25017 (6), -tower 4218: eta = 1.15, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16634 (1), 19706 (8), 19770 (8), 19834 (5), 19898 (5), 23482 (7), 23546 (7), 23610 (6), 23674 (8), 25018 (6), -tower 4219: eta = 1.15, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 584.487 - sampling = 0, 10 SCIndices: 16635 (1), 19707 (8), 19771 (8), 19835 (5), 19899 (5), 23483 (7), 23547 (7), 23611 (6), 23675 (8), 25019 (6), -tower 4220: eta = 1.15, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 339.418 - sampling = 0, 10 SCIndices: 16636 (1), 19708 (8), 19772 (8), 19836 (5), 19900 (5), 23484 (7), 23548 (7), 23612 (6), 23676 (8), 25020 (6), -tower 4221: eta = 1.15, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 348.227 - sampling = 0, 10 SCIndices: 16637 (1), 19709 (8), 19773 (8), 19837 (5), 19901 (5), 23485 (7), 23549 (7), 23613 (6), 23677 (8), 25021 (6), -tower 4222: eta = 1.15, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = -171.625 - sampling = 0, 10 SCIndices: 16638 (1), 19710 (8), 19774 (8), 19838 (5), 19902 (5), 23486 (7), 23550 (7), 23614 (6), 23678 (8), 25022 (6), -tower 4223: eta = 1.15, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16639 (1), 19711 (8), 19775 (8), 19839 (5), 19903 (5), 23487 (7), 23551 (7), 23615 (6), 23679 (8), 25023 (6), -tower 4224: eta = 1.25, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16640 (1), 19904 (5), 19968 (6), 20032 (6), 20096 (5), 23680 (8), 23744 (8), 23808 (8), 23872 (5), 25024 (6), -tower 4225: eta = 1.25, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 423.999 - sampling = 0, 10 SCIndices: 16641 (1), 19905 (5), 19969 (6), 20033 (6), 20097 (5), 23681 (8), 23745 (8), 23809 (8), 23873 (5), 25025 (6), -tower 4226: eta = 1.25, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16642 (1), 19906 (5), 19970 (6), 20034 (6), 20098 (5), 23682 (8), 23746 (8), 23810 (8), 23874 (5), 25026 (6), -tower 4227: eta = 1.25, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 117.626 - sampling = 0, 10 SCIndices: 16643 (1), 19907 (5), 19971 (6), 20035 (6), 20099 (5), 23683 (8), 23747 (8), 23811 (8), 23875 (5), 25027 (6), -tower 4228: eta = 1.25, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = -6.87558 - sampling = 0, 10 SCIndices: 16644 (1), 19908 (5), 19972 (6), 20036 (6), 20100 (5), 23684 (8), 23748 (8), 23812 (8), 23876 (5), 25028 (6), -tower 4229: eta = 1.25, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 462.426 - sampling = 0, 10 SCIndices: 16645 (1), 19909 (5), 19973 (6), 20037 (6), 20101 (5), 23685 (8), 23749 (8), 23813 (8), 23877 (5), 25029 (6), -tower 4230: eta = 1.25, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 497.811 - sampling = 0, 10 SCIndices: 16646 (1), 19910 (5), 19974 (6), 20038 (6), 20102 (5), 23686 (8), 23750 (8), 23814 (8), 23878 (5), 25030 (6), -tower 4231: eta = 1.25, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16647 (1), 19911 (5), 19975 (6), 20039 (6), 20103 (5), 23687 (8), 23751 (8), 23815 (8), 23879 (5), 25031 (6), -tower 4232: eta = 1.25, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 40.3736 - sampling = 0, 10 SCIndices: 16648 (1), 19912 (5), 19976 (6), 20040 (6), 20104 (5), 23688 (8), 23752 (8), 23816 (8), 23880 (5), 25032 (6), -tower 4233: eta = 1.25, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16649 (1), 19913 (5), 19977 (6), 20041 (6), 20105 (5), 23689 (8), 23753 (8), 23817 (8), 23881 (5), 25033 (6), -tower 4234: eta = 1.25, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 453.927 - sampling = 0, 10 SCIndices: 16650 (1), 19914 (5), 19978 (6), 20042 (6), 20106 (5), 23690 (8), 23754 (8), 23818 (8), 23882 (5), 25034 (6), -tower 4235: eta = 1.25, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 124.698 - sampling = 0, 10 SCIndices: 16651 (1), 19915 (5), 19979 (6), 20043 (6), 20107 (5), 23691 (8), 23755 (8), 23819 (8), 23883 (5), 25035 (6), -tower 4236: eta = 1.25, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 629.836 - sampling = 0, 10 SCIndices: 16652 (1), 19916 (5), 19980 (6), 20044 (6), 20108 (5), 23692 (8), 23756 (8), 23820 (8), 23884 (5), 25036 (6), -tower 4237: eta = 1.25, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 701.752 - sampling = 0, 10 SCIndices: 16653 (1), 19917 (5), 19981 (6), 20045 (6), 20109 (5), 23693 (8), 23757 (8), 23821 (8), 23885 (5), 25037 (6), -tower 4238: eta = 1.25, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 320.443 - sampling = 0, 10 SCIndices: 16654 (1), 19918 (5), 19982 (6), 20046 (6), 20110 (5), 23694 (8), 23758 (8), 23822 (8), 23886 (5), 25038 (6), -tower 4239: eta = 1.25, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 484.646 - sampling = 0, 10 SCIndices: 16655 (1), 19919 (5), 19983 (6), 20047 (6), 20111 (5), 23695 (8), 23759 (8), 23823 (8), 23887 (5), 25039 (6), -tower 4240: eta = 1.25, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 444.45 - sampling = 0, 10 SCIndices: 16656 (1), 19920 (5), 19984 (6), 20048 (6), 20112 (5), 23696 (8), 23760 (8), 23824 (8), 23888 (5), 25040 (6), -tower 4241: eta = 1.25, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16657 (1), 19921 (5), 19985 (6), 20049 (6), 20113 (5), 23697 (8), 23761 (8), 23825 (8), 23889 (5), 25041 (6), -tower 4242: eta = 1.25, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 301.278 - sampling = 0, 10 SCIndices: 16658 (1), 19922 (5), 19986 (6), 20050 (6), 20114 (5), 23698 (8), 23762 (8), 23826 (8), 23890 (5), 25042 (6), -tower 4243: eta = 1.25, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 199.481 - sampling = 0, 10 SCIndices: 16659 (1), 19923 (5), 19987 (6), 20051 (6), 20115 (5), 23699 (8), 23763 (8), 23827 (8), 23891 (5), 25043 (6), -tower 4244: eta = 1.25, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16660 (1), 19924 (5), 19988 (6), 20052 (6), 20116 (5), 23700 (8), 23764 (8), 23828 (8), 23892 (5), 25044 (6), -tower 4245: eta = 1.25, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = -55.143 - sampling = 0, 10 SCIndices: 16661 (1), 19925 (5), 19989 (6), 20053 (6), 20117 (5), 23701 (8), 23765 (8), 23829 (8), 23893 (5), 25045 (6), -tower 4246: eta = 1.25, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16662 (1), 19926 (5), 19990 (6), 20054 (6), 20118 (5), 23702 (8), 23766 (8), 23830 (8), 23894 (5), 25046 (6), -tower 4247: eta = 1.25, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 591.761 - sampling = 0, 10 SCIndices: 16663 (1), 19927 (5), 19991 (6), 20055 (6), 20119 (5), 23703 (8), 23767 (8), 23831 (8), 23895 (5), 25047 (6), -tower 4248: eta = 1.25, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 23.5815 - sampling = 0, 10 SCIndices: 16664 (1), 19928 (6), 19992 (6), 20056 (7), 20120 (5), 23704 (8), 23768 (8), 23832 (8), 23896 (5), 25048 (6), -tower 4249: eta = 1.25, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 114.968 - sampling = 0, 10 SCIndices: 16665 (1), 19929 (6), 19993 (6), 20057 (7), 20121 (5), 23705 (8), 23769 (8), 23833 (8), 23897 (5), 25049 (6), -tower 4250: eta = 1.25, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16666 (1), 19930 (6), 19994 (6), 20058 (7), 20122 (5), 23706 (8), 23770 (8), 23834 (8), 23898 (5), 25050 (6), -tower 4251: eta = 1.25, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 400.744 - sampling = 0, 10 SCIndices: 16667 (1), 19931 (6), 19995 (6), 20059 (7), 20123 (5), 23707 (8), 23771 (8), 23835 (8), 23899 (5), 25051 (6), -tower 4252: eta = 1.25, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 79.3592 - sampling = 0, 10 SCIndices: 16668 (1), 19932 (6), 19996 (6), 20060 (7), 20124 (5), 23708 (8), 23772 (8), 23836 (8), 23900 (5), 25052 (6), -tower 4253: eta = 1.25, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 432.516 - sampling = 0, 10 SCIndices: 16669 (1), 19933 (6), 19997 (6), 20061 (7), 20125 (5), 23709 (8), 23773 (8), 23837 (8), 23901 (5), 25053 (6), -tower 4254: eta = 1.25, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 77.4873 - sampling = 0, 10 SCIndices: 16670 (1), 19934 (6), 19998 (6), 20062 (7), 20126 (5), 23710 (8), 23774 (8), 23838 (8), 23902 (5), 25054 (6), -tower 4255: eta = 1.25, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 688.669 - sampling = 0, 10 SCIndices: 16671 (1), 19935 (6), 19999 (6), 20063 (7), 20127 (5), 23711 (8), 23775 (8), 23839 (8), 23903 (5), 25055 (6), -tower 4256: eta = 1.25, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 319.159 - sampling = 0, 10 SCIndices: 16672 (1), 19936 (6), 20000 (6), 20064 (7), 20128 (5), 23712 (8), 23776 (8), 23840 (4), 23904 (5), 25056 (7), -tower 4257: eta = 1.25, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16673 (1), 19937 (6), 20001 (6), 20065 (7), 20129 (5), 23713 (8), 23777 (8), 23841 (4), 23905 (5), 25057 (7), -tower 4258: eta = 1.25, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 636.924 - sampling = 0, 10 SCIndices: 16674 (1), 19938 (6), 20002 (6), 20066 (7), 20130 (5), 23714 (8), 23778 (8), 23842 (4), 23906 (5), 25058 (7), -tower 4259: eta = 1.25, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 266.33 - sampling = 0, 10 SCIndices: 16675 (1), 19939 (6), 20003 (6), 20067 (7), 20131 (5), 23715 (8), 23779 (8), 23843 (4), 23907 (5), 25059 (7), -tower 4260: eta = 1.25, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 98.1401 - sampling = 0, 10 SCIndices: 16676 (1), 19940 (6), 20004 (6), 20068 (7), 20132 (5), 23716 (8), 23780 (8), 23844 (4), 23908 (5), 25060 (7), -tower 4261: eta = 1.25, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 932.508 - sampling = 0, 10 SCIndices: 16677 (1), 19941 (6), 20005 (6), 20069 (7), 20133 (5), 23717 (8), 23781 (8), 23845 (4), 23909 (5), 25061 (7), -tower 4262: eta = 1.25, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 504.633 - sampling = 0, 10 SCIndices: 16678 (2), 19942 (6), 20006 (6), 20070 (7), 20134 (5), 23718 (8), 23782 (8), 23846 (4), 23910 (5), 25062 (7), -tower 4263: eta = 1.25, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 309.992 - sampling = 0, 10 SCIndices: 16679 (2), 19943 (6), 20007 (6), 20071 (7), 20135 (5), 23719 (8), 23783 (8), 23847 (4), 23911 (5), 25063 (7), -tower 4264: eta = 1.25, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16680 (2), 19944 (6), 20008 (6), 20072 (7), 20136 (5), 23720 (8), 23784 (8), 23848 (5), 23912 (5), 25064 (7), -tower 4265: eta = 1.25, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 92.7697 - sampling = 0, 10 SCIndices: 16681 (2), 19945 (6), 20009 (6), 20073 (7), 20137 (5), 23721 (8), 23785 (8), 23849 (5), 23913 (5), 25065 (7), -tower 4266: eta = 1.25, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16682 (2), 19946 (6), 20010 (6), 20074 (7), 20138 (5), 23722 (8), 23786 (8), 23850 (5), 23914 (5), 25066 (7), -tower 4267: eta = 1.25, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 256.002 - sampling = 0, 10 SCIndices: 16683 (2), 19947 (6), 20011 (6), 20075 (7), 20139 (5), 23723 (8), 23787 (8), 23851 (5), 23915 (5), 25067 (7), -tower 4268: eta = 1.25, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16684 (2), 19948 (6), 20012 (6), 20076 (7), 20140 (5), 23724 (8), 23788 (8), 23852 (5), 23916 (5), 25068 (7), -tower 4269: eta = 1.25, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 564.9 - sampling = 0, 10 SCIndices: 16685 (2), 19949 (6), 20013 (6), 20077 (7), 20141 (5), 23725 (8), 23789 (8), 23853 (5), 23917 (5), 25069 (7), -tower 4270: eta = 1.25, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16686 (2), 19950 (6), 20014 (6), 20078 (7), 20142 (5), 23726 (8), 23790 (8), 23854 (5), 23918 (5), 25070 (7), -tower 4271: eta = 1.25, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 396.392 - sampling = 0, 10 SCIndices: 16687 (2), 19951 (6), 20015 (6), 20079 (7), 20143 (5), 23727 (8), 23791 (8), 23855 (5), 23919 (5), 25071 (7), -tower 4272: eta = 1.25, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 173.461 - sampling = 0, 10 SCIndices: 16688 (2), 19952 (6), 20016 (6), 20080 (7), 20144 (5), 23728 (8), 23792 (8), 23856 (5), 23920 (5), 25072 (7), -tower 4273: eta = 1.25, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 23.0799 - sampling = 0, 10 SCIndices: 16689 (2), 19953 (6), 20017 (6), 20081 (7), 20145 (5), 23729 (8), 23793 (8), 23857 (5), 23921 (5), 25073 (7), -tower 4274: eta = 1.25, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 455.324 - sampling = 0, 10 SCIndices: 16690 (2), 19954 (6), 20018 (6), 20082 (7), 20146 (5), 23730 (8), 23794 (8), 23858 (5), 23922 (5), 25074 (7), -tower 4275: eta = 1.25, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 392.087 - sampling = 0, 10 SCIndices: 16691 (2), 19955 (6), 20019 (6), 20083 (7), 20147 (5), 23731 (8), 23795 (8), 23859 (5), 23923 (5), 25075 (7), -tower 4276: eta = 1.25, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 834.491 - sampling = 0, 10 SCIndices: 16692 (2), 19956 (6), 20020 (6), 20084 (7), 20148 (5), 23732 (8), 23796 (8), 23860 (5), 23924 (5), 25076 (7), -tower 4277: eta = 1.25, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 137.662 - sampling = 0, 10 SCIndices: 16693 (2), 19957 (6), 20021 (6), 20085 (7), 20149 (5), 23733 (8), 23797 (8), 23861 (5), 23925 (5), 25077 (7), -tower 4278: eta = 1.25, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 451.311 - sampling = 0, 10 SCIndices: 16694 (2), 19958 (6), 20022 (6), 20086 (7), 20150 (5), 23734 (8), 23798 (8), 23862 (5), 23926 (5), 25078 (7), -tower 4279: eta = 1.25, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 638.537 - sampling = 0, 10 SCIndices: 16695 (2), 19959 (6), 20023 (6), 20087 (7), 20151 (5), 23735 (8), 23799 (8), 23863 (5), 23927 (5), 25079 (7), -tower 4280: eta = 1.25, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = -18.3294 - sampling = 0, 10 SCIndices: 16696 (2), 19960 (6), 20024 (6), 20088 (4), 20152 (5), 23736 (8), 23800 (8), 23864 (5), 23928 (5), 25080 (7), -tower 4281: eta = 1.25, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 427.906 - sampling = 0, 10 SCIndices: 16697 (2), 19961 (6), 20025 (6), 20089 (4), 20153 (5), 23737 (8), 23801 (8), 23865 (5), 23929 (5), 25081 (7), -tower 4282: eta = 1.25, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 313.521 - sampling = 0, 10 SCIndices: 16698 (2), 19962 (6), 20026 (6), 20090 (4), 20154 (5), 23738 (8), 23802 (8), 23866 (5), 23930 (5), 25082 (7), -tower 4283: eta = 1.25, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16699 (2), 19963 (6), 20027 (6), 20091 (4), 20155 (5), 23739 (8), 23803 (8), 23867 (5), 23931 (5), 25083 (7), -tower 4284: eta = 1.25, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 136.896 - sampling = 0, 10 SCIndices: 16700 (2), 19964 (6), 20028 (6), 20092 (4), 20156 (5), 23740 (8), 23804 (8), 23868 (5), 23932 (5), 25084 (7), -tower 4285: eta = 1.25, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16701 (2), 19965 (6), 20029 (6), 20093 (4), 20157 (5), 23741 (8), 23805 (8), 23869 (5), 23933 (5), 25085 (7), -tower 4286: eta = 1.25, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 116.36 - sampling = 0, 10 SCIndices: 16702 (2), 19966 (6), 20030 (6), 20094 (4), 20158 (5), 23742 (8), 23806 (8), 23870 (5), 23934 (5), 25086 (7), -tower 4287: eta = 1.25, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16703 (2), 19967 (6), 20031 (6), 20095 (4), 20159 (5), 23743 (8), 23807 (8), 23871 (5), 23935 (5), 25087 (7), -tower 4288: eta = 1.35, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 130.271 - sampling = 0, 10 SCIndices: 16704 (2), 20160 (5), 20224 (5), 20288 (6), 20352 (6), 23936 (5), 24000 (6), 24064 (6), 24128 (7), 25088 (4), -tower 4289: eta = 1.35, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 69.0081 - sampling = 0, 10 SCIndices: 16705 (2), 20161 (5), 20225 (5), 20289 (6), 20353 (6), 23937 (5), 24001 (6), 24065 (6), 24129 (7), 25089 (4), -tower 4290: eta = 1.35, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 268.019 - sampling = 0, 10 SCIndices: 16706 (2), 20162 (5), 20226 (5), 20290 (6), 20354 (6), 23938 (5), 24002 (6), 24066 (6), 24130 (7), 25090 (4), -tower 4291: eta = 1.35, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = -19.1899 - sampling = 0, 10 SCIndices: 16707 (2), 20163 (5), 20227 (5), 20291 (6), 20355 (6), 23939 (5), 24003 (6), 24067 (6), 24131 (7), 25091 (4), -tower 4292: eta = 1.35, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16708 (2), 20164 (5), 20228 (5), 20292 (6), 20356 (6), 23940 (5), 24004 (6), 24068 (6), 24132 (7), 25092 (4), -tower 4293: eta = 1.35, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16709 (2), 20165 (5), 20229 (5), 20293 (6), 20357 (6), 23941 (5), 24005 (6), 24069 (6), 24133 (7), 25093 (4), -tower 4294: eta = 1.35, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 363.228 - sampling = 0, 10 SCIndices: 16710 (2), 20166 (5), 20230 (5), 20294 (6), 20358 (6), 23942 (5), 24006 (6), 24070 (6), 24134 (7), 25094 (4), -tower 4295: eta = 1.35, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 108.268 - sampling = 0, 10 SCIndices: 16711 (2), 20167 (5), 20231 (5), 20295 (6), 20359 (6), 23943 (5), 24007 (6), 24071 (6), 24135 (7), 25095 (4), -tower 4296: eta = 1.35, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 325.126 - sampling = 0, 10 SCIndices: 16712 (2), 20168 (5), 20232 (5), 20296 (6), 20360 (6), 23944 (5), 24008 (6), 24072 (6), 24136 (7), 25096 (4), -tower 4297: eta = 1.35, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 239.763 - sampling = 0, 10 SCIndices: 16713 (2), 20169 (5), 20233 (5), 20297 (6), 20361 (6), 23945 (5), 24009 (6), 24073 (6), 24137 (7), 25097 (4), -tower 4298: eta = 1.35, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16714 (2), 20170 (5), 20234 (5), 20298 (6), 20362 (6), 23946 (5), 24010 (6), 24074 (6), 24138 (7), 25098 (4), -tower 4299: eta = 1.35, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 197.573 - sampling = 0, 10 SCIndices: 16715 (2), 20171 (5), 20235 (5), 20299 (6), 20363 (6), 23947 (5), 24011 (6), 24075 (6), 24139 (7), 25099 (4), -tower 4300: eta = 1.35, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 17.0162 - sampling = 0, 10 SCIndices: 16716 (2), 20172 (5), 20236 (5), 20300 (6), 20364 (6), 23948 (5), 24012 (6), 24076 (6), 24140 (7), 25100 (4), -tower 4301: eta = 1.35, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16717 (2), 20173 (5), 20237 (5), 20301 (6), 20365 (6), 23949 (5), 24013 (6), 24077 (6), 24141 (7), 25101 (4), -tower 4302: eta = 1.35, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 1083.06 - sampling = 0, 10 SCIndices: 16718 (2), 20174 (5), 20238 (5), 20302 (6), 20366 (6), 23950 (5), 24014 (6), 24078 (6), 24142 (7), 25102 (4), -tower 4303: eta = 1.35, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 227.824 - sampling = 0, 10 SCIndices: 16719 (2), 20175 (5), 20239 (5), 20303 (6), 20367 (6), 23951 (5), 24015 (6), 24079 (6), 24143 (7), 25103 (4), -tower 4304: eta = 1.35, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 399.226 - sampling = 0, 10 SCIndices: 16720 (2), 20176 (5), 20240 (6), 20304 (6), 20368 (7), 23952 (5), 24016 (6), 24080 (6), 24144 (7), 25104 (5), -tower 4305: eta = 1.35, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16721 (2), 20177 (5), 20241 (6), 20305 (6), 20369 (7), 23953 (5), 24017 (6), 24081 (6), 24145 (7), 25105 (5), -tower 4306: eta = 1.35, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 201.916 - sampling = 0, 10 SCIndices: 16722 (2), 20178 (5), 20242 (6), 20306 (6), 20370 (7), 23954 (5), 24018 (6), 24082 (6), 24146 (7), 25106 (5), -tower 4307: eta = 1.35, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16723 (2), 20179 (5), 20243 (6), 20307 (6), 20371 (7), 23955 (5), 24019 (6), 24083 (6), 24147 (7), 25107 (5), -tower 4308: eta = 1.35, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 120.001 - sampling = 0, 10 SCIndices: 16724 (2), 20180 (5), 20244 (6), 20308 (6), 20372 (7), 23956 (5), 24020 (6), 24084 (6), 24148 (7), 25108 (5), -tower 4309: eta = 1.35, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 214.145 - sampling = 0, 10 SCIndices: 16725 (2), 20181 (5), 20245 (6), 20309 (6), 20373 (7), 23957 (5), 24021 (6), 24085 (6), 24149 (7), 25109 (5), -tower 4310: eta = 1.35, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 71.6844 - sampling = 0, 10 SCIndices: 16726 (2), 20182 (5), 20246 (6), 20310 (6), 20374 (7), 23958 (5), 24022 (6), 24086 (6), 24150 (7), 25110 (5), -tower 4311: eta = 1.35, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 842.669 - sampling = 0, 10 SCIndices: 16727 (2), 20183 (5), 20247 (6), 20311 (6), 20375 (7), 23959 (5), 24023 (6), 24087 (6), 24151 (7), 25111 (5), -tower 4312: eta = 1.35, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 327.702 - sampling = 0, 10 SCIndices: 16728 (2), 20184 (5), 20248 (6), 20312 (6), 20376 (7), 23960 (5), 24024 (6), 24088 (6), 24152 (4), 25112 (5), -tower 4313: eta = 1.35, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 54.0232 - sampling = 0, 10 SCIndices: 16729 (2), 20185 (5), 20249 (6), 20313 (6), 20377 (7), 23961 (5), 24025 (6), 24089 (6), 24153 (4), 25113 (5), -tower 4314: eta = 1.35, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 164.303 - sampling = 0, 10 SCIndices: 16730 (2), 20186 (5), 20250 (6), 20314 (6), 20378 (7), 23962 (5), 24026 (6), 24090 (6), 24154 (4), 25114 (5), -tower 4315: eta = 1.35, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 394.46 - sampling = 0, 10 SCIndices: 16731 (2), 20187 (5), 20251 (6), 20315 (6), 20379 (7), 23963 (5), 24027 (6), 24091 (6), 24155 (4), 25115 (5), -tower 4316: eta = 1.35, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 252.684 - sampling = 0, 10 SCIndices: 16732 (2), 20188 (5), 20252 (6), 20316 (6), 20380 (7), 23964 (5), 24028 (6), 24092 (6), 24156 (4), 25116 (5), -tower 4317: eta = 1.35, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16733 (2), 20189 (5), 20253 (6), 20317 (6), 20381 (7), 23965 (5), 24029 (6), 24093 (6), 24157 (4), 25117 (5), -tower 4318: eta = 1.35, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 233.223 - sampling = 0, 10 SCIndices: 16734 (2), 20190 (5), 20254 (6), 20318 (6), 20382 (7), 23966 (5), 24030 (6), 24094 (6), 24158 (4), 25118 (5), -tower 4319: eta = 1.35, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16735 (2), 20191 (5), 20255 (6), 20319 (6), 20383 (7), 23967 (5), 24031 (6), 24095 (6), 24159 (4), 25119 (5), -tower 4320: eta = 1.35, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 364.266 - sampling = 0, 10 SCIndices: 16736 (2), 20192 (5), 20256 (6), 20320 (6), 20384 (7), 23968 (5), 24032 (6), 24096 (6), 24160 (5), 25120 (5), -tower 4321: eta = 1.35, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 128.678 - sampling = 0, 10 SCIndices: 16737 (2), 20193 (5), 20257 (6), 20321 (6), 20385 (7), 23969 (5), 24033 (6), 24097 (6), 24161 (5), 25121 (5), -tower 4322: eta = 1.35, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 272.546 - sampling = 0, 10 SCIndices: 16738 (2), 20194 (5), 20258 (6), 20322 (6), 20386 (7), 23970 (5), 24034 (6), 24098 (6), 24162 (5), 25122 (5), -tower 4323: eta = 1.35, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = -6.2584 - sampling = 0, 10 SCIndices: 16739 (2), 20195 (5), 20259 (6), 20323 (6), 20387 (7), 23971 (5), 24035 (6), 24099 (6), 24163 (5), 25123 (5), -tower 4324: eta = 1.35, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 143.661 - sampling = 0, 10 SCIndices: 16740 (2), 20196 (5), 20260 (6), 20324 (6), 20388 (7), 23972 (5), 24036 (6), 24100 (6), 24164 (5), 25124 (5), -tower 4325: eta = 1.35, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 183.609 - sampling = 0, 10 SCIndices: 16741 (2), 20197 (5), 20261 (6), 20325 (6), 20389 (7), 23973 (5), 24037 (6), 24101 (6), 24165 (5), 25125 (5), -tower 4326: eta = 1.35, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 1127.13 - sampling = 0, 10 SCIndices: 16742 (2), 20198 (5), 20262 (6), 20326 (6), 20390 (7), 23974 (5), 24038 (6), 24102 (6), 24166 (5), 25126 (5), -tower 4327: eta = 1.35, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 490.189 - sampling = 0, 10 SCIndices: 16743 (2), 20199 (5), 20263 (6), 20327 (6), 20391 (7), 23975 (5), 24039 (6), 24103 (6), 24167 (5), 25127 (5), -tower 4328: eta = 1.35, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 46.2163 - sampling = 0, 10 SCIndices: 16744 (2), 20200 (5), 20264 (6), 20328 (6), 20392 (7), 23976 (5), 24040 (6), 24104 (6), 24168 (5), 25128 (5), -tower 4329: eta = 1.35, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 321.617 - sampling = 0, 10 SCIndices: 16745 (2), 20201 (5), 20265 (6), 20329 (6), 20393 (7), 23977 (5), 24041 (6), 24105 (6), 24169 (5), 25129 (5), -tower 4330: eta = 1.35, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 64.0344 - sampling = 0, 10 SCIndices: 16746 (2), 20202 (5), 20266 (6), 20330 (6), 20394 (7), 23978 (5), 24042 (6), 24106 (6), 24170 (5), 25130 (5), -tower 4331: eta = 1.35, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = -170.849 - sampling = 0, 10 SCIndices: 16747 (2), 20203 (5), 20267 (6), 20331 (6), 20395 (7), 23979 (5), 24043 (6), 24107 (6), 24171 (5), 25131 (5), -tower 4332: eta = 1.35, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 107.891 - sampling = 0, 10 SCIndices: 16748 (2), 20204 (5), 20268 (6), 20332 (6), 20396 (7), 23980 (5), 24044 (6), 24108 (6), 24172 (5), 25132 (5), -tower 4333: eta = 1.35, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 104.547 - sampling = 0, 10 SCIndices: 16749 (2), 20205 (5), 20269 (6), 20333 (6), 20397 (7), 23981 (5), 24045 (6), 24109 (6), 24173 (5), 25133 (5), -tower 4334: eta = 1.35, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = -187.885 - sampling = 0, 10 SCIndices: 16750 (2), 20206 (5), 20270 (6), 20334 (6), 20398 (7), 23982 (5), 24046 (6), 24110 (6), 24174 (5), 25134 (5), -tower 4335: eta = 1.35, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 214.804 - sampling = 0, 10 SCIndices: 16751 (2), 20207 (5), 20271 (6), 20335 (6), 20399 (7), 23983 (5), 24047 (6), 24111 (6), 24175 (5), 25135 (5), -tower 4336: eta = 1.35, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 525.377 - sampling = 0, 10 SCIndices: 16752 (2), 20208 (5), 20272 (6), 20336 (6), 20400 (21), 23984 (5), 24048 (6), 24112 (6), 24176 (5), 25136 (5), -tower 4337: eta = 1.35, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 524.149 - sampling = 0, 10 SCIndices: 16753 (2), 20209 (5), 20273 (6), 20337 (6), 20401 (21), 23985 (5), 24049 (6), 24113 (6), 24177 (5), 25137 (5), -tower 4338: eta = 1.35, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 851.813 - sampling = 0, 10 SCIndices: 16754 (2), 20210 (5), 20274 (6), 20338 (6), 20402 (21), 23986 (5), 24050 (6), 24114 (6), 24178 (5), 25138 (5), -tower 4339: eta = 1.35, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16755 (2), 20211 (5), 20275 (6), 20339 (6), 20403 (21), 23987 (5), 24051 (6), 24115 (6), 24179 (5), 25139 (5), -tower 4340: eta = 1.35, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 631.636 - sampling = 0, 10 SCIndices: 16756 (2), 20212 (5), 20276 (6), 20340 (6), 20404 (21), 23988 (5), 24052 (6), 24116 (6), 24180 (5), 25140 (5), -tower 4341: eta = 1.35, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 164.222 - sampling = 0, 10 SCIndices: 16757 (2), 20213 (5), 20277 (6), 20341 (6), 20405 (21), 23989 (5), 24053 (6), 24117 (6), 24181 (5), 25141 (5), -tower 4342: eta = 1.35, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 277.634 - sampling = 0, 10 SCIndices: 16758 (2), 20214 (5), 20278 (6), 20342 (6), 20406 (21), 23990 (5), 24054 (6), 24118 (6), 24182 (5), 25142 (5), -tower 4343: eta = 1.35, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 482.544 - sampling = 0, 10 SCIndices: 16759 (2), 20215 (5), 20279 (6), 20343 (6), 20407 (21), 23991 (5), 24055 (6), 24119 (6), 24183 (5), 25143 (5), -tower 4344: eta = 1.35, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 80.5641 - sampling = 0, 10 SCIndices: 16760 (2), 20216 (5), 20280 (6), 20344 (6), 20408 (21), 23992 (6), 24056 (6), 24120 (7), 24184 (5), 25144 (5), -tower 4345: eta = 1.35, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = -14.1077 - sampling = 0, 10 SCIndices: 16761 (2), 20217 (5), 20281 (6), 20345 (6), 20409 (21), 23993 (6), 24057 (6), 24121 (7), 24185 (5), 25145 (5), -tower 4346: eta = 1.35, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 178.527 - sampling = 0, 10 SCIndices: 16762 (2), 20218 (5), 20282 (6), 20346 (6), 20410 (21), 23994 (6), 24058 (6), 24122 (7), 24186 (5), 25146 (5), -tower 4347: eta = 1.35, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16763 (2), 20219 (5), 20283 (6), 20347 (6), 20411 (21), 23995 (6), 24059 (6), 24123 (7), 24187 (5), 25147 (5), -tower 4348: eta = 1.35, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 427.64 - sampling = 0, 10 SCIndices: 16764 (2), 20220 (5), 20284 (6), 20348 (6), 20412 (21), 23996 (6), 24060 (6), 24124 (7), 24188 (5), 25148 (5), -tower 4349: eta = 1.35, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 420.253 - sampling = 0, 10 SCIndices: 16765 (2), 20221 (5), 20285 (6), 20349 (6), 20413 (21), 23997 (6), 24061 (6), 24125 (7), 24189 (5), 25149 (5), -tower 4350: eta = 1.35, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16766 (2), 20222 (5), 20286 (6), 20350 (6), 20414 (21), 23998 (6), 24062 (6), 24126 (7), 24190 (5), 25150 (5), -tower 4351: eta = 1.35, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 32.8561 - sampling = 0, 10 SCIndices: 16767 (2), 20223 (5), 20287 (6), 20351 (6), 20415 (21), 23999 (6), 24063 (6), 24127 (7), 24191 (5), 25151 (5), -tower 4352: eta = 1.45, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 392.951 - sampling = 0, 10 SCIndices: 16768 (2), 20416 (21), 20480 (21), 20544 (21), 24192 (5), 25344 (6), 28032 (6), 28096 (6), 28160 (21), 28224 (21), -tower 4353: eta = 1.45, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 359.781 - sampling = 0, 10 SCIndices: 16769 (2), 20417 (21), 20481 (21), 20545 (21), 24193 (5), 25345 (6), 28033 (6), 28097 (6), 28161 (21), 28225 (21), -tower 4354: eta = 1.45, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 511.31 - sampling = 0, 10 SCIndices: 16770 (2), 20418 (21), 20482 (21), 20546 (21), 24194 (5), 25346 (6), 28034 (6), 28098 (6), 28162 (21), 28226 (21), -tower 4355: eta = 1.45, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 30.3263 - sampling = 0, 10 SCIndices: 16771 (2), 20419 (21), 20483 (21), 20547 (21), 24195 (5), 25347 (6), 28035 (6), 28099 (6), 28163 (21), 28227 (21), -tower 4356: eta = 1.45, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 188.978 - sampling = 0, 10 SCIndices: 16772 (2), 20420 (21), 20484 (21), 20548 (21), 24196 (5), 25348 (6), 28036 (6), 28100 (6), 28164 (21), 28228 (21), -tower 4357: eta = 1.45, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 169.193 - sampling = 0, 10 SCIndices: 16773 (2), 20421 (21), 20485 (21), 20549 (21), 24197 (5), 25349 (6), 28037 (6), 28101 (6), 28165 (21), 28229 (21), -tower 4358: eta = 1.45, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 659.192 - sampling = 0, 10 SCIndices: 16774 (2), 20422 (21), 20486 (21), 20550 (21), 24198 (5), 25350 (6), 28038 (6), 28102 (6), 28166 (21), 28230 (21), -tower 4359: eta = 1.45, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 30.3091 - sampling = 0, 10 SCIndices: 16775 (2), 20423 (21), 20487 (21), 20551 (21), 24199 (5), 25351 (6), 28039 (6), 28103 (6), 28167 (21), 28231 (21), -tower 4360: eta = 1.45, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 728.035 - sampling = 0, 10 SCIndices: 16776 (2), 20424 (21), 20488 (21), 20552 (21), 24200 (5), 25352 (6), 28040 (6), 28104 (6), 28168 (21), 28232 (21), -tower 4361: eta = 1.45, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 414.973 - sampling = 0, 10 SCIndices: 16777 (2), 20425 (21), 20489 (21), 20553 (21), 24201 (5), 25353 (6), 28041 (6), 28105 (6), 28169 (21), 28233 (21), -tower 4362: eta = 1.45, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 1529.25 - sampling = 0, 10 SCIndices: 16778 (2), 20426 (21), 20490 (21), 20554 (21), 24202 (5), 25354 (6), 28042 (6), 28106 (6), 28170 (21), 28234 (21), -tower 4363: eta = 1.45, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 281.717 - sampling = 0, 10 SCIndices: 16779 (2), 20427 (21), 20491 (21), 20555 (21), 24203 (5), 25355 (6), 28043 (6), 28107 (6), 28171 (21), 28235 (21), -tower 4364: eta = 1.45, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 458.544 - sampling = 0, 10 SCIndices: 16780 (2), 20428 (21), 20492 (21), 20556 (21), 24204 (5), 25356 (6), 28044 (6), 28108 (6), 28172 (21), 28236 (21), -tower 4365: eta = 1.45, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 105.952 - sampling = 0, 10 SCIndices: 16781 (2), 20429 (21), 20493 (21), 20557 (21), 24205 (5), 25357 (6), 28045 (6), 28109 (6), 28173 (21), 28237 (21), -tower 4366: eta = 1.45, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 190.588 - sampling = 0, 10 SCIndices: 16782 (2), 20430 (21), 20494 (21), 20558 (21), 24206 (5), 25358 (6), 28046 (6), 28110 (6), 28174 (21), 28238 (21), -tower 4367: eta = 1.45, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 467.275 - sampling = 0, 10 SCIndices: 16783 (2), 20431 (21), 20495 (21), 20559 (21), 24207 (5), 25359 (6), 28047 (6), 28111 (6), 28175 (21), 28239 (21), -tower 4368: eta = 1.45, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 410.414 - sampling = 0, 10 SCIndices: 16784 (2), 20432 (21), 20496 (21), 20560 (21), 24208 (5), 25360 (7), 28048 (6), 28112 (7), 28176 (21), 28240 (21), -tower 4369: eta = 1.45, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 272.306 - sampling = 0, 10 SCIndices: 16785 (2), 20433 (21), 20497 (21), 20561 (21), 24209 (5), 25361 (7), 28049 (6), 28113 (7), 28177 (21), 28241 (21), -tower 4370: eta = 1.45, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 86.7021 - sampling = 0, 10 SCIndices: 16786 (2), 20434 (21), 20498 (21), 20562 (21), 24210 (5), 25362 (7), 28050 (6), 28114 (7), 28178 (21), 28242 (21), -tower 4371: eta = 1.45, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 359.579 - sampling = 0, 10 SCIndices: 16787 (2), 20435 (21), 20499 (21), 20563 (21), 24211 (5), 25363 (7), 28051 (6), 28115 (7), 28179 (21), 28243 (21), -tower 4372: eta = 1.45, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 234.432 - sampling = 0, 10 SCIndices: 16788 (2), 20436 (21), 20500 (21), 20564 (21), 24212 (5), 25364 (7), 28052 (6), 28116 (7), 28180 (21), 28244 (21), -tower 4373: eta = 1.45, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 599.41 - sampling = 0, 10 SCIndices: 16789 (2), 20437 (21), 20501 (21), 20565 (21), 24213 (5), 25365 (7), 28053 (6), 28117 (7), 28181 (21), 28245 (21), -tower 4374: eta = 1.45, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16790 (2), 20438 (21), 20502 (21), 20566 (21), 24214 (5), 25366 (7), 28054 (6), 28118 (7), 28182 (21), 28246 (21), -tower 4375: eta = 1.45, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 449.523 - sampling = 0, 10 SCIndices: 16791 (2), 20439 (21), 20503 (21), 20567 (21), 24215 (5), 25367 (7), 28055 (6), 28119 (7), 28183 (21), 28247 (21), -tower 4376: eta = 1.45, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 427.185 - sampling = 0, 10 SCIndices: 16792 (3), 20440 (21), 20504 (21), 20568 (21), 24216 (5), 25368 (7), 28056 (6), 28120 (7), 28184 (21), 28248 (21), -tower 4377: eta = 1.45, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 449.203 - sampling = 0, 10 SCIndices: 16793 (3), 20441 (21), 20505 (21), 20569 (21), 24217 (5), 25369 (7), 28057 (6), 28121 (7), 28185 (21), 28249 (21), -tower 4378: eta = 1.45, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 543.932 - sampling = 0, 10 SCIndices: 16794 (3), 20442 (21), 20506 (21), 20570 (21), 24218 (5), 25370 (7), 28058 (6), 28122 (7), 28186 (21), 28250 (21), -tower 4379: eta = 1.45, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16795 (3), 20443 (21), 20507 (21), 20571 (21), 24219 (5), 25371 (7), 28059 (6), 28123 (7), 28187 (21), 28251 (21), -tower 4380: eta = 1.45, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16796 (3), 20444 (21), 20508 (21), 20572 (21), 24220 (5), 25372 (7), 28060 (6), 28124 (7), 28188 (21), 28252 (21), -tower 4381: eta = 1.45, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 330.736 - sampling = 0, 10 SCIndices: 16797 (3), 20445 (21), 20509 (21), 20573 (21), 24221 (5), 25373 (7), 28061 (6), 28125 (7), 28189 (21), 28253 (21), -tower 4382: eta = 1.45, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 80.9396 - sampling = 0, 10 SCIndices: 16798 (3), 20446 (21), 20510 (21), 20574 (21), 24222 (5), 25374 (7), 28062 (6), 28126 (7), 28190 (21), 28254 (21), -tower 4383: eta = 1.45, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 40.5651 - sampling = 0, 10 SCIndices: 16799 (3), 20447 (21), 20511 (21), 20575 (21), 24223 (5), 25375 (7), 28063 (6), 28127 (7), 28191 (21), 28255 (21), -tower 4384: eta = 1.45, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 443.63 - sampling = 0, 10 SCIndices: 16800 (3), 20448 (21), 20512 (21), 20576 (21), 24224 (5), 25376 (7), 28064 (6), 28128 (7), 28192 (21), 28256 (21), -tower 4385: eta = 1.45, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 382.168 - sampling = 0, 10 SCIndices: 16801 (3), 20449 (21), 20513 (21), 20577 (21), 24225 (5), 25377 (7), 28065 (6), 28129 (7), 28193 (21), 28257 (21), -tower 4386: eta = 1.45, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 417.235 - sampling = 0, 10 SCIndices: 16802 (3), 20450 (21), 20514 (21), 20578 (21), 24226 (5), 25378 (7), 28066 (6), 28130 (7), 28194 (21), 28258 (21), -tower 4387: eta = 1.45, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16803 (3), 20451 (21), 20515 (21), 20579 (21), 24227 (5), 25379 (7), 28067 (6), 28131 (7), 28195 (21), 28259 (21), -tower 4388: eta = 1.45, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 165.509 - sampling = 0, 10 SCIndices: 16804 (3), 20452 (21), 20516 (21), 20580 (21), 24228 (5), 25380 (7), 28068 (6), 28132 (7), 28196 (21), 28260 (21), -tower 4389: eta = 1.45, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 38.6949 - sampling = 0, 10 SCIndices: 16805 (3), 20453 (21), 20517 (21), 20581 (21), 24229 (5), 25381 (7), 28069 (6), 28133 (7), 28197 (21), 28261 (21), -tower 4390: eta = 1.45, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 513.067 - sampling = 0, 10 SCIndices: 16806 (3), 20454 (21), 20518 (21), 20582 (21), 24230 (5), 25382 (7), 28070 (6), 28134 (7), 28198 (21), 28262 (21), -tower 4391: eta = 1.45, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 56.7684 - sampling = 0, 10 SCIndices: 16807 (3), 20455 (21), 20519 (21), 20583 (21), 24231 (5), 25383 (7), 28071 (6), 28135 (7), 28199 (21), 28263 (21), -tower 4392: eta = 1.45, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 164.973 - sampling = 0, 10 SCIndices: 16808 (3), 20456 (21), 20520 (21), 20584 (21), 24232 (5), 25384 (7), 28072 (6), 28136 (7), 28200 (21), 28264 (21), -tower 4393: eta = 1.45, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 259.583 - sampling = 0, 10 SCIndices: 16809 (3), 20457 (21), 20521 (21), 20585 (21), 24233 (5), 25385 (7), 28073 (6), 28137 (7), 28201 (21), 28265 (21), -tower 4394: eta = 1.45, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16810 (3), 20458 (21), 20522 (21), 20586 (21), 24234 (5), 25386 (7), 28074 (6), 28138 (7), 28202 (21), 28266 (21), -tower 4395: eta = 1.45, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 31.244 - sampling = 0, 10 SCIndices: 16811 (3), 20459 (21), 20523 (21), 20587 (21), 24235 (5), 25387 (7), 28075 (6), 28139 (7), 28203 (21), 28267 (21), -tower 4396: eta = 1.45, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 909.884 - sampling = 0, 10 SCIndices: 16812 (3), 20460 (21), 20524 (21), 20588 (21), 24236 (5), 25388 (7), 28076 (6), 28140 (7), 28204 (21), 28268 (21), -tower 4397: eta = 1.45, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 455.279 - sampling = 0, 10 SCIndices: 16813 (3), 20461 (21), 20525 (21), 20589 (21), 24237 (5), 25389 (7), 28077 (6), 28141 (7), 28205 (21), 28269 (21), -tower 4398: eta = 1.45, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16814 (3), 20462 (21), 20526 (21), 20590 (21), 24238 (5), 25390 (7), 28078 (6), 28142 (7), 28206 (21), 28270 (21), -tower 4399: eta = 1.45, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 57.1252 - sampling = 0, 10 SCIndices: 16815 (3), 20463 (21), 20527 (21), 20591 (21), 24239 (5), 25391 (7), 28079 (6), 28143 (7), 28207 (21), 28271 (21), -tower 4400: eta = 1.45, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = -28.6374 - sampling = 0, 10 SCIndices: 16816 (3), 20464 (21), 20528 (21), 20592 (22), 24240 (5), 25392 (5), 28080 (6), 28144 (21), 28208 (21), 28272 (21), -tower 4401: eta = 1.45, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 314.878 - sampling = 0, 10 SCIndices: 16817 (3), 20465 (21), 20529 (21), 20593 (22), 24241 (5), 25393 (5), 28081 (6), 28145 (21), 28209 (21), 28273 (21), -tower 4402: eta = 1.45, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 355.795 - sampling = 0, 10 SCIndices: 16818 (3), 20466 (21), 20530 (21), 20594 (22), 24242 (5), 25394 (5), 28082 (6), 28146 (21), 28210 (21), 28274 (21), -tower 4403: eta = 1.45, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16819 (3), 20467 (21), 20531 (21), 20595 (22), 24243 (5), 25395 (5), 28083 (6), 28147 (21), 28211 (21), 28275 (21), -tower 4404: eta = 1.45, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 754.899 - sampling = 0, 10 SCIndices: 16820 (0), 20468 (21), 20532 (21), 20596 (22), 24244 (5), 25396 (5), 28084 (6), 28148 (21), 28212 (21), 28276 (21), -tower 4405: eta = 1.45, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 1521.24 - sampling = 0, 10 SCIndices: 16821 (0), 20469 (21), 20533 (21), 20597 (22), 24245 (5), 25397 (5), 28085 (6), 28149 (21), 28213 (21), 28277 (21), -tower 4406: eta = 1.45, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16822 (0), 20470 (21), 20534 (21), 20598 (22), 24246 (5), 25398 (5), 28086 (6), 28150 (21), 28214 (21), 28278 (21), -tower 4407: eta = 1.45, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 30.1297 - sampling = 0, 10 SCIndices: 16823 (0), 20471 (21), 20535 (21), 20599 (22), 24247 (5), 25399 (5), 28087 (6), 28151 (21), 28215 (21), 28279 (21), -tower 4408: eta = 1.45, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 197.224 - sampling = 0, 10 SCIndices: 16824 (0), 20472 (21), 20536 (21), 20600 (22), 24248 (5), 25400 (5), 28088 (6), 28152 (21), 28216 (21), 28280 (21), -tower 4409: eta = 1.45, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = -6.26029 - sampling = 0, 10 SCIndices: 16825 (0), 20473 (21), 20537 (21), 20601 (22), 24249 (5), 25401 (5), 28089 (6), 28153 (21), 28217 (21), 28281 (21), -tower 4410: eta = 1.45, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 672.571 - sampling = 0, 10 SCIndices: 16826 (0), 20474 (21), 20538 (21), 20602 (22), 24250 (5), 25402 (5), 28090 (6), 28154 (21), 28218 (21), 28282 (21), -tower 4411: eta = 1.45, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16827 (0), 20475 (21), 20539 (21), 20603 (22), 24251 (5), 25403 (5), 28091 (6), 28155 (21), 28219 (21), 28283 (21), -tower 4412: eta = 1.45, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 137.686 - sampling = 0, 10 SCIndices: 16828 (0), 20476 (21), 20540 (21), 20604 (22), 24252 (5), 25404 (5), 28092 (6), 28156 (21), 28220 (21), 28284 (21), -tower 4413: eta = 1.45, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 196.803 - sampling = 0, 10 SCIndices: 16829 (0), 20477 (21), 20541 (21), 20605 (22), 24253 (5), 25405 (5), 28093 (6), 28157 (21), 28221 (21), 28285 (21), -tower 4414: eta = 1.45, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 16830 (0), 20478 (21), 20542 (21), 20606 (22), 24254 (5), 25406 (5), 28094 (6), 28158 (21), 28222 (21), 28286 (21), -tower 4415: eta = 1.45, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 247.136 - sampling = 0, 10 SCIndices: 16831 (0), 20479 (21), 20543 (21), 20607 (22), 24255 (5), 25407 (5), 28095 (6), 28159 (21), 28223 (21), 28287 (21), -tower 4416: eta = 1.55, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 291.424 - sampling = 0, 10 SCIndices: 25152 (5), 25408 (6), 25472 (7), 25536 (8), 25600 (8), 28288 (21), 28352 (22), 28416 (22), 28480 (23), 30848 (6), -tower 4417: eta = 1.55, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 146.36 - sampling = 0, 10 SCIndices: 25153 (5), 25409 (6), 25473 (7), 25537 (8), 25601 (8), 28289 (21), 28353 (22), 28417 (22), 28481 (23), 30849 (6), -tower 4418: eta = 1.55, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 44.4264 - sampling = 0, 10 SCIndices: 25154 (5), 25410 (6), 25474 (7), 25538 (8), 25602 (8), 28290 (21), 28354 (22), 28418 (22), 28482 (23), 30850 (6), -tower 4419: eta = 1.55, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = -97.5714 - sampling = 0, 10 SCIndices: 25155 (5), 25411 (6), 25475 (7), 25539 (8), 25603 (8), 28291 (21), 28355 (22), 28419 (22), 28483 (23), 30851 (6), -tower 4420: eta = 1.55, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 1503.92 - sampling = 0, 10 SCIndices: 25156 (5), 25412 (6), 25476 (7), 25540 (8), 25604 (8), 28292 (21), 28356 (22), 28420 (22), 28484 (23), 30852 (6), -tower 4421: eta = 1.55, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 27.0496 - sampling = 0, 10 SCIndices: 25157 (5), 25413 (6), 25477 (7), 25541 (8), 25605 (8), 28293 (21), 28357 (22), 28421 (22), 28485 (23), 30853 (6), -tower 4422: eta = 1.55, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 25158 (5), 25414 (6), 25478 (7), 25542 (8), 25606 (8), 28294 (21), 28358 (22), 28422 (22), 28486 (23), 30854 (6), -tower 4423: eta = 1.55, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 42.5184 - sampling = 0, 10 SCIndices: 25159 (5), 25415 (6), 25479 (7), 25543 (8), 25607 (8), 28295 (21), 28359 (22), 28423 (22), 28487 (23), 30855 (6), -tower 4424: eta = 1.55, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 387.914 - sampling = 0, 10 SCIndices: 25160 (5), 25416 (6), 25480 (7), 25544 (8), 25608 (8), 28296 (21), 28360 (22), 28424 (22), 28488 (23), 30856 (6), -tower 4425: eta = 1.55, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 426.061 - sampling = 0, 10 SCIndices: 25161 (5), 25417 (6), 25481 (7), 25545 (8), 25609 (8), 28297 (21), 28361 (22), 28425 (22), 28489 (23), 30857 (6), -tower 4426: eta = 1.55, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 46.4759 - sampling = 0, 10 SCIndices: 25162 (5), 25418 (6), 25482 (7), 25546 (8), 25610 (8), 28298 (21), 28362 (22), 28426 (22), 28490 (23), 30858 (6), -tower 4427: eta = 1.55, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 168.27 - sampling = 0, 10 SCIndices: 25163 (5), 25419 (6), 25483 (7), 25547 (8), 25611 (8), 28299 (21), 28363 (22), 28427 (22), 28491 (23), 30859 (6), -tower 4428: eta = 1.55, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 167.166 - sampling = 0, 10 SCIndices: 25164 (5), 25420 (6), 25484 (7), 25548 (8), 25612 (8), 28300 (21), 28364 (22), 28428 (22), 28492 (23), 30860 (6), -tower 4429: eta = 1.55, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 254.561 - sampling = 0, 10 SCIndices: 25165 (5), 25421 (6), 25485 (7), 25549 (8), 25613 (8), 28301 (21), 28365 (22), 28429 (22), 28493 (23), 30861 (6), -tower 4430: eta = 1.55, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 102.724 - sampling = 0, 10 SCIndices: 25166 (5), 25422 (6), 25486 (7), 25550 (8), 25614 (8), 28302 (21), 28366 (22), 28430 (22), 28494 (23), 30862 (6), -tower 4431: eta = 1.55, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 252.245 - sampling = 0, 10 SCIndices: 25167 (5), 25423 (6), 25487 (7), 25551 (8), 25615 (8), 28303 (21), 28367 (22), 28431 (22), 28495 (23), 30863 (6), -tower 4432: eta = 1.55, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 173.062 - sampling = 0, 10 SCIndices: 25168 (5), 25424 (6), 25488 (8), 25552 (8), 25616 (8), 28304 (21), 28368 (22), 28432 (22), 28496 (23), 30864 (6), -tower 4433: eta = 1.55, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 626.99 - sampling = 0, 10 SCIndices: 25169 (5), 25425 (6), 25489 (8), 25553 (8), 25617 (8), 28305 (21), 28369 (22), 28433 (22), 28497 (23), 30865 (6), -tower 4434: eta = 1.55, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 359.006 - sampling = 0, 10 SCIndices: 25170 (5), 25426 (6), 25490 (8), 25554 (8), 25618 (8), 28306 (21), 28370 (22), 28434 (22), 28498 (23), 30866 (6), -tower 4435: eta = 1.55, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 243.02 - sampling = 0, 10 SCIndices: 25171 (5), 25427 (6), 25491 (8), 25555 (8), 25619 (8), 28307 (21), 28371 (22), 28435 (22), 28499 (23), 30867 (6), -tower 4436: eta = 1.55, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 259.119 - sampling = 0, 10 SCIndices: 25172 (5), 25428 (6), 25492 (8), 25556 (8), 25620 (8), 28308 (21), 28372 (22), 28436 (22), 28500 (23), 30868 (6), -tower 4437: eta = 1.55, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = -15.5669 - sampling = 0, 10 SCIndices: 25173 (5), 25429 (6), 25493 (8), 25557 (8), 25621 (8), 28309 (21), 28373 (22), 28437 (22), 28501 (23), 30869 (6), -tower 4438: eta = 1.55, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 21.1796 - sampling = 0, 10 SCIndices: 25174 (5), 25430 (6), 25494 (8), 25558 (8), 25622 (8), 28310 (21), 28374 (22), 28438 (22), 28502 (23), 30870 (6), -tower 4439: eta = 1.55, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 785.455 - sampling = 0, 10 SCIndices: 25175 (5), 25431 (6), 25495 (8), 25559 (8), 25623 (8), 28311 (21), 28375 (22), 28439 (22), 28503 (23), 30871 (6), -tower 4440: eta = 1.55, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 394.369 - sampling = 0, 10 SCIndices: 25176 (5), 25432 (6), 25496 (8), 25560 (8), 25624 (8), 28312 (21), 28376 (22), 28440 (22), 28504 (23), 30872 (6), -tower 4441: eta = 1.55, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 465.646 - sampling = 0, 10 SCIndices: 25177 (5), 25433 (6), 25497 (8), 25561 (8), 25625 (8), 28313 (21), 28377 (22), 28441 (22), 28505 (23), 30873 (6), -tower 4442: eta = 1.55, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 96.9715 - sampling = 0, 10 SCIndices: 25178 (5), 25434 (6), 25498 (8), 25562 (8), 25626 (8), 28314 (21), 28378 (22), 28442 (22), 28506 (23), 30874 (6), -tower 4443: eta = 1.55, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 385.031 - sampling = 0, 10 SCIndices: 25179 (5), 25435 (6), 25499 (8), 25563 (8), 25627 (8), 28315 (21), 28379 (22), 28443 (22), 28507 (23), 30875 (6), -tower 4444: eta = 1.55, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 274.547 - sampling = 0, 10 SCIndices: 25180 (5), 25436 (6), 25500 (8), 25564 (8), 25628 (8), 28316 (21), 28380 (22), 28444 (22), 28508 (23), 30876 (6), -tower 4445: eta = 1.55, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 81.9082 - sampling = 0, 10 SCIndices: 25181 (5), 25437 (6), 25501 (8), 25565 (8), 25629 (8), 28317 (21), 28381 (22), 28445 (22), 28509 (23), 30877 (6), -tower 4446: eta = 1.55, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 267.93 - sampling = 0, 10 SCIndices: 25182 (5), 25438 (6), 25502 (8), 25566 (8), 25630 (8), 28318 (21), 28382 (22), 28446 (22), 28510 (23), 30878 (6), -tower 4447: eta = 1.55, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 25183 (5), 25439 (6), 25503 (8), 25567 (8), 25631 (8), 28319 (21), 28383 (22), 28447 (22), 28511 (23), 30879 (6), -tower 4448: eta = 1.55, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 246.716 - sampling = 0, 10 SCIndices: 25184 (6), 25440 (6), 25504 (8), 25568 (8), 25632 (8), 28320 (21), 28384 (22), 28448 (22), 28512 (23), 30880 (6), -tower 4449: eta = 1.55, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 539.011 - sampling = 0, 10 SCIndices: 25185 (6), 25441 (6), 25505 (8), 25569 (8), 25633 (8), 28321 (21), 28385 (22), 28449 (22), 28513 (23), 30881 (6), -tower 4450: eta = 1.55, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 247.315 - sampling = 0, 10 SCIndices: 25186 (6), 25442 (6), 25506 (8), 25570 (8), 25634 (8), 28322 (21), 28386 (22), 28450 (22), 28514 (23), 30882 (6), -tower 4451: eta = 1.55, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 25187 (6), 25443 (6), 25507 (8), 25571 (8), 25635 (8), 28323 (21), 28387 (22), 28451 (22), 28515 (23), 30883 (6), -tower 4452: eta = 1.55, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 180.664 - sampling = 0, 10 SCIndices: 25188 (6), 25444 (6), 25508 (8), 25572 (8), 25636 (8), 28324 (21), 28388 (22), 28452 (22), 28516 (23), 30884 (6), -tower 4453: eta = 1.55, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 138.935 - sampling = 0, 10 SCIndices: 25189 (6), 25445 (6), 25509 (8), 25573 (8), 25637 (8), 28325 (21), 28389 (22), 28453 (22), 28517 (23), 30885 (6), -tower 4454: eta = 1.55, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 686.719 - sampling = 0, 10 SCIndices: 25190 (6), 25446 (6), 25510 (8), 25574 (8), 25638 (8), 28326 (21), 28390 (22), 28454 (22), 28518 (23), 30886 (6), -tower 4455: eta = 1.55, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 427.638 - sampling = 0, 10 SCIndices: 25191 (6), 25447 (6), 25511 (8), 25575 (8), 25639 (8), 28327 (21), 28391 (22), 28455 (22), 28519 (23), 30887 (6), -tower 4456: eta = 1.55, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 402.696 - sampling = 0, 10 SCIndices: 25192 (6), 25448 (6), 25512 (8), 25576 (8), 25640 (8), 28328 (21), 28392 (22), 28456 (22), 28520 (23), 30888 (6), -tower 4457: eta = 1.55, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 216.56 - sampling = 0, 10 SCIndices: 25193 (6), 25449 (6), 25513 (8), 25577 (8), 25641 (8), 28329 (21), 28393 (22), 28457 (22), 28521 (23), 30889 (6), -tower 4458: eta = 1.55, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 401.996 - sampling = 0, 10 SCIndices: 25194 (6), 25450 (6), 25514 (8), 25578 (8), 25642 (8), 28330 (21), 28394 (22), 28458 (22), 28522 (23), 30890 (6), -tower 4459: eta = 1.55, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 688.109 - sampling = 0, 10 SCIndices: 25195 (6), 25451 (6), 25515 (8), 25579 (8), 25643 (8), 28331 (21), 28395 (22), 28459 (22), 28523 (23), 30891 (6), -tower 4460: eta = 1.55, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 31.4194 - sampling = 0, 10 SCIndices: 25196 (6), 25452 (6), 25516 (8), 25580 (8), 25644 (8), 28332 (21), 28396 (22), 28460 (22), 28524 (23), 30892 (6), -tower 4461: eta = 1.55, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 217.562 - sampling = 0, 10 SCIndices: 25197 (6), 25453 (6), 25517 (8), 25581 (8), 25645 (8), 28333 (21), 28397 (22), 28461 (22), 28525 (23), 30893 (6), -tower 4462: eta = 1.55, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 224.45 - sampling = 0, 10 SCIndices: 25198 (6), 25454 (6), 25518 (8), 25582 (8), 25646 (8), 28334 (21), 28398 (22), 28462 (22), 28526 (23), 30894 (6), -tower 4463: eta = 1.55, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 506.297 - sampling = 0, 10 SCIndices: 25199 (6), 25455 (6), 25519 (8), 25583 (8), 25647 (8), 28335 (21), 28399 (22), 28463 (22), 28527 (23), 30895 (6), -tower 4464: eta = 1.55, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 25200 (6), 25456 (6), 25520 (8), 25584 (8), 25648 (8), 28336 (22), 28400 (22), 28464 (23), 28528 (4), 30896 (6), -tower 4465: eta = 1.55, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 419.71 - sampling = 0, 10 SCIndices: 25201 (6), 25457 (6), 25521 (8), 25585 (8), 25649 (8), 28337 (22), 28401 (22), 28465 (23), 28529 (4), 30897 (6), -tower 4466: eta = 1.55, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 71.0848 - sampling = 0, 10 SCIndices: 25202 (6), 25458 (6), 25522 (8), 25586 (8), 25650 (8), 28338 (22), 28402 (22), 28466 (23), 28530 (4), 30898 (6), -tower 4467: eta = 1.55, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 44.4124 - sampling = 0, 10 SCIndices: 25203 (6), 25459 (6), 25523 (8), 25587 (8), 25651 (8), 28339 (22), 28403 (22), 28467 (23), 28531 (4), 30899 (6), -tower 4468: eta = 1.55, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 110.132 - sampling = 0, 10 SCIndices: 25204 (6), 25460 (6), 25524 (8), 25588 (8), 25652 (8), 28340 (22), 28404 (22), 28468 (23), 28532 (4), 30900 (6), -tower 4469: eta = 1.55, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 25205 (6), 25461 (6), 25525 (8), 25589 (8), 25653 (8), 28341 (22), 28405 (22), 28469 (23), 28533 (4), 30901 (6), -tower 4470: eta = 1.55, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 517.758 - sampling = 0, 10 SCIndices: 25206 (6), 25462 (6), 25526 (8), 25590 (8), 25654 (8), 28342 (22), 28406 (22), 28470 (23), 28534 (4), 30902 (6), -tower 4471: eta = 1.55, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 190.92 - sampling = 0, 10 SCIndices: 25207 (6), 25463 (6), 25527 (8), 25591 (8), 25655 (8), 28343 (22), 28407 (22), 28471 (23), 28535 (4), 30903 (6), -tower 4472: eta = 1.55, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 340.586 - sampling = 0, 10 SCIndices: 25208 (6), 25464 (6), 25528 (8), 25592 (8), 25656 (8), 28344 (22), 28408 (22), 28472 (23), 28536 (5), 30904 (6), -tower 4473: eta = 1.55, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 112.07 - sampling = 0, 10 SCIndices: 25209 (6), 25465 (6), 25529 (8), 25593 (8), 25657 (8), 28345 (22), 28409 (22), 28473 (23), 28537 (5), 30905 (6), -tower 4474: eta = 1.55, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 613.801 - sampling = 0, 10 SCIndices: 25210 (6), 25466 (6), 25530 (8), 25594 (8), 25658 (8), 28346 (22), 28410 (22), 28474 (23), 28538 (5), 30906 (6), -tower 4475: eta = 1.55, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 278.765 - sampling = 0, 10 SCIndices: 25211 (6), 25467 (6), 25531 (8), 25595 (8), 25659 (8), 28347 (22), 28411 (22), 28475 (23), 28539 (5), 30907 (6), -tower 4476: eta = 1.55, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 140.183 - sampling = 0, 10 SCIndices: 25212 (6), 25468 (6), 25532 (8), 25596 (8), 25660 (8), 28348 (22), 28412 (22), 28476 (23), 28540 (5), 30908 (6), -tower 4477: eta = 1.55, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 121.751 - sampling = 0, 10 SCIndices: 25213 (6), 25469 (6), 25533 (8), 25597 (8), 25661 (8), 28349 (22), 28413 (22), 28477 (23), 28541 (5), 30909 (6), -tower 4478: eta = 1.55, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 304.415 - sampling = 0, 10 SCIndices: 25214 (6), 25470 (6), 25534 (8), 25598 (8), 25662 (8), 28350 (22), 28414 (22), 28478 (23), 28542 (5), 30910 (6), -tower 4479: eta = 1.55, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 597.299 - sampling = 0, 10 SCIndices: 25215 (6), 25471 (6), 25535 (8), 25599 (8), 25663 (8), 28351 (22), 28415 (22), 28479 (23), 28543 (5), 30911 (6), -tower 4480: eta = 1.65, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 982.734 - sampling = 0, 10 SCIndices: 25216 (6), 25664 (8), 25728 (5), 25792 (5), 25856 (6), 28544 (5), 28608 (5), 28672 (5), 28736 (6), 30912 (6), -tower 4481: eta = 1.65, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 153.32 - sampling = 0, 10 SCIndices: 25217 (6), 25665 (8), 25729 (5), 25793 (5), 25857 (6), 28545 (5), 28609 (5), 28673 (5), 28737 (6), 30913 (6), -tower 4482: eta = 1.65, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 579.529 - sampling = 0, 10 SCIndices: 25218 (6), 25666 (8), 25730 (5), 25794 (5), 25858 (6), 28546 (5), 28610 (5), 28674 (5), 28738 (6), 30914 (6), -tower 4483: eta = 1.65, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 55.015 - sampling = 0, 10 SCIndices: 25219 (6), 25667 (8), 25731 (5), 25795 (5), 25859 (6), 28547 (5), 28611 (5), 28675 (5), 28739 (6), 30915 (6), -tower 4484: eta = 1.65, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 2308.26 - sampling = 0, 10 SCIndices: 25220 (6), 25668 (8), 25732 (5), 25796 (5), 25860 (6), 28548 (5), 28612 (5), 28676 (5), 28740 (6), 30916 (6), -tower 4485: eta = 1.65, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 330.221 - sampling = 0, 10 SCIndices: 25221 (6), 25669 (8), 25733 (5), 25797 (5), 25861 (6), 28549 (5), 28613 (5), 28677 (5), 28741 (6), 30917 (6), -tower 4486: eta = 1.65, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 187.018 - sampling = 0, 10 SCIndices: 25222 (6), 25670 (8), 25734 (5), 25798 (5), 25862 (6), 28550 (5), 28614 (5), 28678 (5), 28742 (6), 30918 (6), -tower 4487: eta = 1.65, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 34.2045 - sampling = 0, 10 SCIndices: 25223 (6), 25671 (8), 25735 (5), 25799 (5), 25863 (6), 28551 (5), 28615 (5), 28679 (5), 28743 (6), 30919 (6), -tower 4488: eta = 1.65, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 584.417 - sampling = 0, 10 SCIndices: 25224 (6), 25672 (8), 25736 (5), 25800 (5), 25864 (6), 28552 (5), 28616 (5), 28680 (6), 28744 (6), 30920 (6), -tower 4489: eta = 1.65, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 186.129 - sampling = 0, 10 SCIndices: 25225 (6), 25673 (8), 25737 (5), 25801 (5), 25865 (6), 28553 (5), 28617 (5), 28681 (6), 28745 (6), 30921 (6), -tower 4490: eta = 1.65, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 234.899 - sampling = 0, 10 SCIndices: 25226 (6), 25674 (8), 25738 (5), 25802 (5), 25866 (6), 28554 (5), 28618 (5), 28682 (6), 28746 (6), 30922 (6), -tower 4491: eta = 1.65, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 232.458 - sampling = 0, 10 SCIndices: 25227 (6), 25675 (8), 25739 (5), 25803 (5), 25867 (6), 28555 (5), 28619 (5), 28683 (6), 28747 (6), 30923 (6), -tower 4492: eta = 1.65, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 645.39 - sampling = 0, 10 SCIndices: 25228 (6), 25676 (8), 25740 (5), 25804 (5), 25868 (6), 28556 (5), 28620 (5), 28684 (6), 28748 (6), 30924 (6), -tower 4493: eta = 1.65, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 78.3931 - sampling = 0, 10 SCIndices: 25229 (6), 25677 (8), 25741 (5), 25805 (5), 25869 (6), 28557 (5), 28621 (5), 28685 (6), 28749 (6), 30925 (6), -tower 4494: eta = 1.65, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 82.5489 - sampling = 0, 10 SCIndices: 25230 (6), 25678 (8), 25742 (5), 25806 (5), 25870 (6), 28558 (5), 28622 (5), 28686 (6), 28750 (6), 30926 (6), -tower 4495: eta = 1.65, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 340.345 - sampling = 0, 10 SCIndices: 25231 (6), 25679 (8), 25743 (5), 25807 (5), 25871 (6), 28559 (5), 28623 (5), 28687 (6), 28751 (6), 30927 (6), -tower 4496: eta = 1.65, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 198.373 - sampling = 0, 10 SCIndices: 25232 (6), 25680 (4), 25744 (5), 25808 (5), 25872 (6), 28560 (5), 28624 (5), 28688 (6), 28752 (6), 30928 (6), -tower 4497: eta = 1.65, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 379.438 - sampling = 0, 10 SCIndices: 25233 (6), 25681 (4), 25745 (5), 25809 (5), 25873 (6), 28561 (5), 28625 (5), 28689 (6), 28753 (6), 30929 (6), -tower 4498: eta = 1.65, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 244.222 - sampling = 0, 10 SCIndices: 25234 (6), 25682 (4), 25746 (5), 25810 (5), 25874 (6), 28562 (5), 28626 (5), 28690 (6), 28754 (6), 30930 (6), -tower 4499: eta = 1.65, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 19.8226 - sampling = 0, 10 SCIndices: 25235 (6), 25683 (4), 25747 (5), 25811 (5), 25875 (6), 28563 (5), 28627 (5), 28691 (6), 28755 (6), 30931 (6), -tower 4500: eta = 1.65, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 746.556 - sampling = 0, 10 SCIndices: 25236 (6), 25684 (4), 25748 (5), 25812 (5), 25876 (6), 28564 (5), 28628 (5), 28692 (6), 28756 (6), 30932 (6), -tower 4501: eta = 1.65, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 660.043 - sampling = 0, 10 SCIndices: 25237 (6), 25685 (4), 25749 (5), 25813 (5), 25877 (6), 28565 (5), 28629 (5), 28693 (6), 28757 (6), 30933 (6), -tower 4502: eta = 1.65, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 167.251 - sampling = 0, 10 SCIndices: 25238 (6), 25686 (4), 25750 (5), 25814 (5), 25878 (6), 28566 (5), 28630 (5), 28694 (6), 28758 (6), 30934 (6), -tower 4503: eta = 1.65, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 527.399 - sampling = 0, 10 SCIndices: 25239 (6), 25687 (4), 25751 (5), 25815 (5), 25879 (6), 28567 (5), 28631 (5), 28695 (6), 28759 (6), 30935 (6), -tower 4504: eta = 1.65, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 197.289 - sampling = 0, 10 SCIndices: 25240 (6), 25688 (5), 25752 (5), 25816 (5), 25880 (6), 28568 (5), 28632 (5), 28696 (6), 28760 (6), 30936 (6), -tower 4505: eta = 1.65, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 533.706 - sampling = 0, 10 SCIndices: 25241 (6), 25689 (5), 25753 (5), 25817 (5), 25881 (6), 28569 (5), 28633 (5), 28697 (6), 28761 (6), 30937 (6), -tower 4506: eta = 1.65, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 25242 (6), 25690 (5), 25754 (5), 25818 (5), 25882 (6), 28570 (5), 28634 (5), 28698 (6), 28762 (6), 30938 (6), -tower 4507: eta = 1.65, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 245.18 - sampling = 0, 10 SCIndices: 25243 (6), 25691 (5), 25755 (5), 25819 (5), 25883 (6), 28571 (5), 28635 (5), 28699 (6), 28763 (6), 30939 (6), -tower 4508: eta = 1.65, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 686.509 - sampling = 0, 10 SCIndices: 25244 (6), 25692 (5), 25756 (5), 25820 (5), 25884 (6), 28572 (5), 28636 (5), 28700 (6), 28764 (6), 30940 (6), -tower 4509: eta = 1.65, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 247.211 - sampling = 0, 10 SCIndices: 25245 (6), 25693 (5), 25757 (5), 25821 (5), 25885 (6), 28573 (5), 28637 (5), 28701 (6), 28765 (6), 30941 (6), -tower 4510: eta = 1.65, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 97.9668 - sampling = 0, 10 SCIndices: 25246 (6), 25694 (5), 25758 (5), 25822 (5), 25886 (6), 28574 (5), 28638 (5), 28702 (6), 28766 (6), 30942 (6), -tower 4511: eta = 1.65, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 532.332 - sampling = 0, 10 SCIndices: 25247 (6), 25695 (5), 25759 (5), 25823 (5), 25887 (6), 28575 (5), 28639 (5), 28703 (6), 28767 (6), 30943 (6), -tower 4512: eta = 1.65, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 205.219 - sampling = 0, 10 SCIndices: 25248 (6), 25696 (5), 25760 (5), 25824 (5), 25888 (6), 28576 (5), 28640 (5), 28704 (6), 28768 (6), 30944 (6), -tower 4513: eta = 1.65, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 263.094 - sampling = 0, 10 SCIndices: 25249 (6), 25697 (5), 25761 (5), 25825 (5), 25889 (6), 28577 (5), 28641 (5), 28705 (6), 28769 (6), 30945 (6), -tower 4514: eta = 1.65, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 487.213 - sampling = 0, 10 SCIndices: 25250 (6), 25698 (5), 25762 (5), 25826 (5), 25890 (6), 28578 (5), 28642 (5), 28706 (6), 28770 (6), 30946 (6), -tower 4515: eta = 1.65, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 195.11 - sampling = 0, 10 SCIndices: 25251 (6), 25699 (5), 25763 (5), 25827 (5), 25891 (6), 28579 (5), 28643 (5), 28707 (6), 28771 (6), 30947 (6), -tower 4516: eta = 1.65, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 1182.71 - sampling = 0, 10 SCIndices: 25252 (6), 25700 (5), 25764 (5), 25828 (5), 25892 (6), 28580 (5), 28644 (5), 28708 (6), 28772 (6), 30948 (6), -tower 4517: eta = 1.65, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 1424.72 - sampling = 0, 10 SCIndices: 25253 (6), 25701 (5), 25765 (5), 25829 (5), 25893 (6), 28581 (5), 28645 (5), 28709 (6), 28773 (6), 30949 (6), -tower 4518: eta = 1.65, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 454.664 - sampling = 0, 10 SCIndices: 25254 (6), 25702 (5), 25766 (5), 25830 (5), 25894 (6), 28582 (5), 28646 (5), 28710 (6), 28774 (6), 30950 (6), -tower 4519: eta = 1.65, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 335.19 - sampling = 0, 10 SCIndices: 25255 (6), 25703 (5), 25767 (5), 25831 (5), 25895 (6), 28583 (5), 28647 (5), 28711 (6), 28775 (6), 30951 (6), -tower 4520: eta = 1.65, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 25256 (6), 25704 (5), 25768 (5), 25832 (6), 25896 (6), 28584 (5), 28648 (5), 28712 (6), 28776 (6), 30952 (6), -tower 4521: eta = 1.65, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 275.46 - sampling = 0, 10 SCIndices: 25257 (6), 25705 (5), 25769 (5), 25833 (6), 25897 (6), 28585 (5), 28649 (5), 28713 (6), 28777 (6), 30953 (6), -tower 4522: eta = 1.65, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 823.714 - sampling = 0, 10 SCIndices: 25258 (6), 25706 (5), 25770 (5), 25834 (6), 25898 (6), 28586 (5), 28650 (5), 28714 (6), 28778 (6), 30954 (6), -tower 4523: eta = 1.65, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 182.386 - sampling = 0, 10 SCIndices: 25259 (6), 25707 (5), 25771 (5), 25835 (6), 25899 (6), 28587 (5), 28651 (5), 28715 (6), 28779 (6), 30955 (6), -tower 4524: eta = 1.65, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 609.675 - sampling = 0, 10 SCIndices: 25260 (6), 25708 (5), 25772 (5), 25836 (6), 25900 (6), 28588 (5), 28652 (5), 28716 (6), 28780 (6), 30956 (6), -tower 4525: eta = 1.65, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 225.99 - sampling = 0, 10 SCIndices: 25261 (6), 25709 (5), 25773 (5), 25837 (6), 25901 (6), 28589 (5), 28653 (5), 28717 (6), 28781 (6), 30957 (6), -tower 4526: eta = 1.65, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 75.6294 - sampling = 0, 10 SCIndices: 25262 (6), 25710 (5), 25774 (5), 25838 (6), 25902 (6), 28590 (5), 28654 (5), 28718 (6), 28782 (6), 30958 (6), -tower 4527: eta = 1.65, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 11.0695 - sampling = 0, 10 SCIndices: 25263 (6), 25711 (5), 25775 (5), 25839 (6), 25903 (6), 28591 (5), 28655 (5), 28719 (6), 28783 (6), 30959 (6), -tower 4528: eta = 1.65, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 276.2 - sampling = 0, 10 SCIndices: 25264 (6), 25712 (5), 25776 (5), 25840 (6), 25904 (6), 28592 (5), 28656 (5), 28720 (6), 28784 (6), 30960 (7), -tower 4529: eta = 1.65, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 319.158 - sampling = 0, 10 SCIndices: 25265 (6), 25713 (5), 25777 (5), 25841 (6), 25905 (6), 28593 (5), 28657 (5), 28721 (6), 28785 (6), 30961 (7), -tower 4530: eta = 1.65, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 25266 (6), 25714 (5), 25778 (5), 25842 (6), 25906 (6), 28594 (5), 28658 (5), 28722 (6), 28786 (6), 30962 (7), -tower 4531: eta = 1.65, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 427.481 - sampling = 0, 10 SCIndices: 25267 (6), 25715 (5), 25779 (5), 25843 (6), 25907 (6), 28595 (5), 28659 (5), 28723 (6), 28787 (6), 30963 (7), -tower 4532: eta = 1.65, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 402.403 - sampling = 0, 10 SCIndices: 25268 (6), 25716 (5), 25780 (5), 25844 (6), 25908 (6), 28596 (5), 28660 (5), 28724 (6), 28788 (6), 30964 (7), -tower 4533: eta = 1.65, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 153.32 - sampling = 0, 10 SCIndices: 25269 (6), 25717 (5), 25781 (5), 25845 (6), 25909 (6), 28597 (5), 28661 (5), 28725 (6), 28789 (6), 30965 (7), -tower 4534: eta = 1.65, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 25270 (6), 25718 (5), 25782 (5), 25846 (6), 25910 (6), 28598 (5), 28662 (5), 28726 (6), 28790 (6), 30966 (7), -tower 4535: eta = 1.65, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 253.639 - sampling = 0, 10 SCIndices: 25271 (6), 25719 (5), 25783 (5), 25847 (6), 25911 (6), 28599 (5), 28663 (5), 28727 (6), 28791 (6), 30967 (7), -tower 4536: eta = 1.65, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 185.367 - sampling = 0, 10 SCIndices: 25272 (6), 25720 (5), 25784 (5), 25848 (6), 25912 (6), 28600 (5), 28664 (5), 28728 (6), 28792 (6), 30968 (7), -tower 4537: eta = 1.65, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 107.413 - sampling = 0, 10 SCIndices: 25273 (6), 25721 (5), 25785 (5), 25849 (6), 25913 (6), 28601 (5), 28665 (5), 28729 (6), 28793 (6), 30969 (7), -tower 4538: eta = 1.65, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 587.955 - sampling = 0, 10 SCIndices: 25274 (6), 25722 (5), 25786 (5), 25850 (6), 25914 (6), 28602 (5), 28666 (5), 28730 (6), 28794 (6), 30970 (7), -tower 4539: eta = 1.65, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 209.526 - sampling = 0, 10 SCIndices: 25275 (6), 25723 (5), 25787 (5), 25851 (6), 25915 (6), 28603 (5), 28667 (5), 28731 (6), 28795 (6), 30971 (7), -tower 4540: eta = 1.65, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 41.8008 - sampling = 0, 10 SCIndices: 25276 (6), 25724 (5), 25788 (5), 25852 (6), 25916 (6), 28604 (5), 28668 (5), 28732 (6), 28796 (6), 30972 (7), -tower 4541: eta = 1.65, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 171.115 - sampling = 0, 10 SCIndices: 25277 (6), 25725 (5), 25789 (5), 25853 (6), 25917 (6), 28605 (5), 28669 (5), 28733 (6), 28797 (6), 30973 (7), -tower 4542: eta = 1.65, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 374.754 - sampling = 0, 10 SCIndices: 25278 (6), 25726 (5), 25790 (5), 25854 (6), 25918 (6), 28606 (5), 28670 (5), 28734 (6), 28798 (6), 30974 (7), -tower 4543: eta = 1.65, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 62.3707 - sampling = 0, 10 SCIndices: 25279 (6), 25727 (5), 25791 (5), 25855 (6), 25919 (6), 28607 (5), 28671 (5), 28735 (6), 28799 (6), 30975 (7), -tower 4544: eta = 1.75, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 948.676 - sampling = 0, 10 SCIndices: 25280 (6), 25920 (6), 25984 (7), 26048 (5), 26112 (5), 28800 (6), 28864 (5), 28928 (5), 28992 (6), 30976 (7), -tower 4545: eta = 1.75, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 25281 (6), 25921 (6), 25985 (7), 26049 (5), 26113 (5), 28801 (6), 28865 (5), 28929 (5), 28993 (6), 30977 (7), -tower 4546: eta = 1.75, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 379.689 - sampling = 0, 10 SCIndices: 25282 (6), 25922 (6), 25986 (7), 26050 (5), 26114 (5), 28802 (6), 28866 (5), 28930 (5), 28994 (6), 30978 (7), -tower 4547: eta = 1.75, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 321.686 - sampling = 0, 10 SCIndices: 25283 (6), 25923 (6), 25987 (7), 26051 (5), 26115 (5), 28803 (6), 28867 (5), 28931 (5), 28995 (6), 30979 (7), -tower 4548: eta = 1.75, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = -16.1467 - sampling = 0, 10 SCIndices: 25284 (6), 25924 (6), 25988 (7), 26052 (5), 26116 (5), 28804 (6), 28868 (5), 28932 (5), 28996 (6), 30980 (7), -tower 4549: eta = 1.75, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 25285 (6), 25925 (6), 25989 (7), 26053 (5), 26117 (5), 28805 (6), 28869 (5), 28933 (5), 28997 (6), 30981 (7), -tower 4550: eta = 1.75, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 197.011 - sampling = 0, 10 SCIndices: 25286 (6), 25926 (6), 25990 (7), 26054 (5), 26118 (5), 28806 (6), 28870 (5), 28934 (5), 28998 (6), 30982 (7), -tower 4551: eta = 1.75, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 19.987 - sampling = 0, 10 SCIndices: 25287 (6), 25927 (6), 25991 (7), 26055 (5), 26119 (5), 28807 (6), 28871 (5), 28935 (5), 28999 (6), 30983 (7), -tower 4552: eta = 1.75, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 367.612 - sampling = 0, 10 SCIndices: 25288 (6), 25928 (6), 25992 (4), 26056 (5), 26120 (5), 28808 (7), 28872 (5), 28936 (5), 29000 (6), 30984 (7), -tower 4553: eta = 1.75, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 218.12 - sampling = 0, 10 SCIndices: 25289 (6), 25929 (6), 25993 (4), 26057 (5), 26121 (5), 28809 (7), 28873 (5), 28937 (5), 29001 (6), 30985 (7), -tower 4554: eta = 1.75, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 230.048 - sampling = 0, 10 SCIndices: 25290 (6), 25930 (6), 25994 (4), 26058 (5), 26122 (5), 28810 (7), 28874 (5), 28938 (5), 29002 (6), 30986 (7), -tower 4555: eta = 1.75, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 180.385 - sampling = 0, 10 SCIndices: 25291 (6), 25931 (6), 25995 (4), 26059 (5), 26123 (5), 28811 (7), 28875 (5), 28939 (5), 29003 (6), 30987 (7), -tower 4556: eta = 1.75, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 131.636 - sampling = 0, 10 SCIndices: 25292 (6), 25932 (6), 25996 (4), 26060 (5), 26124 (5), 28812 (7), 28876 (5), 28940 (5), 29004 (6), 30988 (7), -tower 4557: eta = 1.75, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 125.911 - sampling = 0, 10 SCIndices: 25293 (6), 25933 (6), 25997 (4), 26061 (5), 26125 (5), 28813 (7), 28877 (5), 28941 (5), 29005 (6), 30989 (7), -tower 4558: eta = 1.75, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 112.663 - sampling = 0, 10 SCIndices: 25294 (6), 25934 (6), 25998 (4), 26062 (5), 26126 (5), 28814 (7), 28878 (5), 28942 (5), 29006 (6), 30990 (7), -tower 4559: eta = 1.75, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 453.288 - sampling = 0, 10 SCIndices: 25295 (6), 25935 (6), 25999 (4), 26063 (5), 26127 (5), 28815 (7), 28879 (5), 28943 (5), 29007 (6), 30991 (7), -tower 4560: eta = 1.75, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 109.578 - sampling = 0, 10 SCIndices: 25296 (6), 25936 (6), 26000 (5), 26064 (5), 26128 (5), 28816 (7), 28880 (5), 28944 (5), 29008 (6), 30992 (4), -tower 4561: eta = 1.75, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 187.497 - sampling = 0, 10 SCIndices: 25297 (6), 25937 (6), 26001 (5), 26065 (5), 26129 (5), 28817 (7), 28881 (5), 28945 (5), 29009 (6), 30993 (4), -tower 4562: eta = 1.75, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 36.9767 - sampling = 0, 10 SCIndices: 25298 (6), 25938 (6), 26002 (5), 26066 (5), 26130 (5), 28818 (7), 28882 (5), 28946 (5), 29010 (6), 30994 (4), -tower 4563: eta = 1.75, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 25299 (6), 25939 (6), 26003 (5), 26067 (5), 26131 (5), 28819 (7), 28883 (5), 28947 (5), 29011 (6), 30995 (4), -tower 4564: eta = 1.75, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 7.61781 - sampling = 0, 10 SCIndices: 25300 (6), 25940 (6), 26004 (5), 26068 (5), 26132 (5), 28820 (7), 28884 (5), 28948 (5), 29012 (6), 30996 (4), -tower 4565: eta = 1.75, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 261.547 - sampling = 0, 10 SCIndices: 25301 (6), 25941 (6), 26005 (5), 26069 (5), 26133 (5), 28821 (7), 28885 (5), 28949 (5), 29013 (6), 30997 (4), -tower 4566: eta = 1.75, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 68.8117 - sampling = 0, 10 SCIndices: 25302 (6), 25942 (6), 26006 (5), 26070 (5), 26134 (5), 28822 (7), 28886 (5), 28950 (5), 29014 (6), 30998 (4), -tower 4567: eta = 1.75, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 927.992 - sampling = 0, 10 SCIndices: 25303 (6), 25943 (6), 26007 (5), 26071 (5), 26135 (5), 28823 (7), 28887 (5), 28951 (5), 29015 (6), 30999 (4), -tower 4568: eta = 1.75, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 101.619 - sampling = 0, 10 SCIndices: 25304 (6), 25944 (6), 26008 (5), 26072 (5), 26136 (5), 28824 (7), 28888 (5), 28952 (5), 29016 (6), 31000 (4), -tower 4569: eta = 1.75, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 797.862 - sampling = 0, 10 SCIndices: 25305 (6), 25945 (6), 26009 (5), 26073 (5), 26137 (5), 28825 (7), 28889 (5), 28953 (5), 29017 (6), 31001 (4), -tower 4570: eta = 1.75, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 22.2889 - sampling = 0, 10 SCIndices: 25306 (6), 25946 (6), 26010 (5), 26074 (5), 26138 (5), 28826 (7), 28890 (5), 28954 (5), 29018 (6), 31002 (4), -tower 4571: eta = 1.75, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 180.345 - sampling = 0, 10 SCIndices: 25307 (6), 25947 (6), 26011 (5), 26075 (5), 26139 (5), 28827 (7), 28891 (5), 28955 (5), 29019 (6), 31003 (4), -tower 4572: eta = 1.75, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 116.68 - sampling = 0, 10 SCIndices: 25308 (6), 25948 (6), 26012 (5), 26076 (5), 26140 (5), 28828 (7), 28892 (5), 28956 (5), 29020 (6), 31004 (4), -tower 4573: eta = 1.75, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 476.876 - sampling = 0, 10 SCIndices: 25309 (6), 25949 (6), 26013 (5), 26077 (5), 26141 (5), 28829 (7), 28893 (5), 28957 (5), 29021 (6), 31005 (4), -tower 4574: eta = 1.75, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 187.96 - sampling = 0, 10 SCIndices: 25310 (6), 25950 (6), 26014 (5), 26078 (5), 26142 (5), 28830 (7), 28894 (5), 28958 (5), 29022 (6), 31006 (4), -tower 4575: eta = 1.75, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 204.389 - sampling = 0, 10 SCIndices: 25311 (6), 25951 (6), 26015 (5), 26079 (5), 26143 (5), 28831 (7), 28895 (5), 28959 (5), 29023 (6), 31007 (4), -tower 4576: eta = 1.75, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 38.2647 - sampling = 0, 10 SCIndices: 25312 (7), 25952 (6), 26016 (5), 26080 (5), 26144 (6), 28832 (7), 28896 (5), 28960 (5), 29024 (6), 31008 (5), -tower 4577: eta = 1.75, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 638.818 - sampling = 0, 10 SCIndices: 25313 (7), 25953 (6), 26017 (5), 26081 (5), 26145 (6), 28833 (7), 28897 (5), 28961 (5), 29025 (6), 31009 (5), -tower 4578: eta = 1.75, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 641.033 - sampling = 0, 10 SCIndices: 25314 (7), 25954 (6), 26018 (5), 26082 (5), 26146 (6), 28834 (7), 28898 (5), 28962 (5), 29026 (6), 31010 (5), -tower 4579: eta = 1.75, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 797.946 - sampling = 0, 10 SCIndices: 25315 (7), 25955 (6), 26019 (5), 26083 (5), 26147 (6), 28835 (7), 28899 (5), 28963 (5), 29027 (6), 31011 (5), -tower 4580: eta = 1.75, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 266.978 - sampling = 0, 10 SCIndices: 25316 (7), 25956 (6), 26020 (5), 26084 (5), 26148 (6), 28836 (7), 28900 (5), 28964 (5), 29028 (6), 31012 (5), -tower 4581: eta = 1.75, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 2043.11 - sampling = 0, 10 SCIndices: 25317 (7), 25957 (6), 26021 (5), 26085 (5), 26149 (6), 28837 (7), 28901 (5), 28965 (5), 29029 (6), 31013 (5), -tower 4582: eta = 1.75, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 1070.55 - sampling = 0, 10 SCIndices: 25318 (7), 25958 (6), 26022 (5), 26086 (5), 26150 (6), 28838 (7), 28902 (5), 28966 (5), 29030 (6), 31014 (5), -tower 4583: eta = 1.75, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 262.566 - sampling = 0, 10 SCIndices: 25319 (7), 25959 (6), 26023 (5), 26087 (5), 26151 (6), 28839 (7), 28903 (5), 28967 (5), 29031 (6), 31015 (5), -tower 4584: eta = 1.75, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 284.903 - sampling = 0, 10 SCIndices: 25320 (7), 25960 (7), 26024 (5), 26088 (5), 26152 (6), 28840 (4), 28904 (5), 28968 (5), 29032 (6), 31016 (5), -tower 4585: eta = 1.75, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 913.283 - sampling = 0, 10 SCIndices: 25321 (7), 25961 (7), 26025 (5), 26089 (5), 26153 (6), 28841 (4), 28905 (5), 28969 (5), 29033 (6), 31017 (5), -tower 4586: eta = 1.75, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 188.209 - sampling = 0, 10 SCIndices: 25322 (7), 25962 (7), 26026 (5), 26090 (5), 26154 (6), 28842 (4), 28906 (5), 28970 (5), 29034 (6), 31018 (5), -tower 4587: eta = 1.75, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 149.858 - sampling = 0, 10 SCIndices: 25323 (7), 25963 (7), 26027 (5), 26091 (5), 26155 (6), 28843 (4), 28907 (5), 28971 (5), 29035 (6), 31019 (5), -tower 4588: eta = 1.75, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 522.579 - sampling = 0, 10 SCIndices: 25324 (7), 25964 (7), 26028 (5), 26092 (5), 26156 (6), 28844 (4), 28908 (5), 28972 (5), 29036 (6), 31020 (5), -tower 4589: eta = 1.75, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 370.661 - sampling = 0, 10 SCIndices: 25325 (7), 25965 (7), 26029 (5), 26093 (5), 26157 (6), 28845 (4), 28909 (5), 28973 (5), 29037 (6), 31021 (5), -tower 4590: eta = 1.75, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 25326 (7), 25966 (7), 26030 (5), 26094 (5), 26158 (6), 28846 (4), 28910 (5), 28974 (5), 29038 (6), 31022 (5), -tower 4591: eta = 1.75, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 218.379 - sampling = 0, 10 SCIndices: 25327 (7), 25967 (7), 26031 (5), 26095 (5), 26159 (6), 28847 (4), 28911 (5), 28975 (5), 29039 (6), 31023 (5), -tower 4592: eta = 1.75, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 761.05 - sampling = 0, 10 SCIndices: 25328 (6), 25968 (7), 26032 (5), 26096 (5), 26160 (6), 28848 (5), 28912 (5), 28976 (5), 29040 (6), 31024 (5), -tower 4593: eta = 1.75, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 164.406 - sampling = 0, 10 SCIndices: 25329 (6), 25969 (7), 26033 (5), 26097 (5), 26161 (6), 28849 (5), 28913 (5), 28977 (5), 29041 (6), 31025 (5), -tower 4594: eta = 1.75, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 25330 (6), 25970 (7), 26034 (5), 26098 (5), 26162 (6), 28850 (5), 28914 (5), 28978 (5), 29042 (6), 31026 (5), -tower 4595: eta = 1.75, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 412.561 - sampling = 0, 10 SCIndices: 25331 (6), 25971 (7), 26035 (5), 26099 (5), 26163 (6), 28851 (5), 28915 (5), 28979 (5), 29043 (6), 31027 (5), -tower 4596: eta = 1.75, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 373.85 - sampling = 0, 10 SCIndices: 25332 (6), 25972 (7), 26036 (5), 26100 (5), 26164 (6), 28852 (5), 28916 (5), 28980 (5), 29044 (6), 31028 (5), -tower 4597: eta = 1.75, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 1186.76 - sampling = 0, 10 SCIndices: 25333 (6), 25973 (7), 26037 (5), 26101 (5), 26165 (6), 28853 (5), 28917 (5), 28981 (5), 29045 (6), 31029 (5), -tower 4598: eta = 1.75, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 843.122 - sampling = 0, 10 SCIndices: 25334 (6), 25974 (7), 26038 (5), 26102 (5), 26166 (6), 28854 (5), 28918 (5), 28982 (5), 29046 (6), 31030 (5), -tower 4599: eta = 1.75, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 25335 (6), 25975 (7), 26039 (5), 26103 (5), 26167 (6), 28855 (5), 28919 (5), 28983 (5), 29047 (6), 31031 (5), -tower 4600: eta = 1.75, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 221.567 - sampling = 0, 10 SCIndices: 25336 (6), 25976 (7), 26040 (5), 26104 (5), 26168 (6), 28856 (5), 28920 (5), 28984 (5), 29048 (6), 31032 (5), -tower 4601: eta = 1.75, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 159.571 - sampling = 0, 10 SCIndices: 25337 (6), 25977 (7), 26041 (5), 26105 (5), 26169 (6), 28857 (5), 28921 (5), 28985 (5), 29049 (6), 31033 (5), -tower 4602: eta = 1.75, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = -12.511 - sampling = 0, 10 SCIndices: 25338 (6), 25978 (7), 26042 (5), 26106 (5), 26170 (6), 28858 (5), 28922 (5), 28986 (5), 29050 (6), 31034 (5), -tower 4603: eta = 1.75, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 10 SCIndices: 25339 (6), 25979 (7), 26043 (5), 26107 (5), 26171 (6), 28859 (5), 28923 (5), 28987 (5), 29051 (6), 31035 (5), -tower 4604: eta = 1.75, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 228.245 - sampling = 0, 10 SCIndices: 25340 (6), 25980 (7), 26044 (5), 26108 (5), 26172 (6), 28860 (5), 28924 (5), 28988 (5), 29052 (6), 31036 (5), -tower 4605: eta = 1.75, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 202.341 - sampling = 0, 10 SCIndices: 25341 (6), 25981 (7), 26045 (5), 26109 (5), 26173 (6), 28861 (5), 28925 (5), 28989 (5), 29053 (6), 31037 (5), -tower 4606: eta = 1.75, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 17.8435 - sampling = 0, 10 SCIndices: 25342 (6), 25982 (7), 26046 (5), 26110 (5), 26174 (6), 28862 (5), 28926 (5), 28990 (5), 29054 (6), 31038 (5), -tower 4607: eta = 1.75, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 509.385 - sampling = 0, 10 SCIndices: 25343 (6), 25983 (7), 26047 (5), 26111 (5), 26175 (6), 28863 (5), 28927 (5), 28991 (5), 29055 (6), 31039 (5), -tower 4608: eta = 1.85, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 88.352 - sampling = 0, 11 SCIndices: 26176 (6), 26240 (6), 26304 (4), 26368 (5), 26432 (5), 26496 (6), 29056 (6), 29120 (7), 29184 (5), 29248 (6), 31040 (5), -tower 4609: eta = 1.85, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26177 (6), 26241 (6), 26305 (4), 26369 (5), 26433 (5), 26497 (6), 29057 (6), 29121 (7), 29185 (5), 29249 (6), 31041 (5), -tower 4610: eta = 1.85, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 107.486 - sampling = 0, 11 SCIndices: 26178 (6), 26242 (6), 26306 (4), 26370 (5), 26434 (5), 26498 (6), 29058 (6), 29122 (7), 29186 (5), 29250 (6), 31042 (5), -tower 4611: eta = 1.85, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 106.396 - sampling = 0, 11 SCIndices: 26179 (6), 26243 (6), 26307 (4), 26371 (5), 26435 (5), 26499 (6), 29059 (6), 29123 (7), 29187 (5), 29251 (6), 31043 (5), -tower 4612: eta = 1.85, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 347.957 - sampling = 0, 11 SCIndices: 26180 (6), 26244 (6), 26308 (4), 26372 (5), 26436 (5), 26500 (6), 29060 (6), 29124 (7), 29188 (5), 29252 (6), 31044 (5), -tower 4613: eta = 1.85, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 100.132 - sampling = 0, 11 SCIndices: 26181 (6), 26245 (6), 26309 (4), 26373 (5), 26437 (5), 26501 (6), 29061 (6), 29125 (7), 29189 (5), 29253 (6), 31045 (5), -tower 4614: eta = 1.85, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26182 (6), 26246 (6), 26310 (4), 26374 (5), 26438 (5), 26502 (6), 29062 (6), 29126 (7), 29190 (5), 29254 (6), 31046 (5), -tower 4615: eta = 1.85, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 272.044 - sampling = 0, 11 SCIndices: 26183 (6), 26247 (6), 26311 (4), 26375 (5), 26439 (5), 26503 (6), 29063 (6), 29127 (7), 29191 (5), 29255 (6), 31047 (5), -tower 4616: eta = 1.85, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 91.1079 - sampling = 0, 11 SCIndices: 26184 (6), 26248 (6), 26312 (5), 26376 (5), 26440 (5), 26504 (6), 29064 (6), 29128 (7), 29192 (5), 29256 (6), 31048 (5), -tower 4617: eta = 1.85, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 916.842 - sampling = 0, 11 SCIndices: 26185 (6), 26249 (6), 26313 (5), 26377 (5), 26441 (5), 26505 (6), 29065 (6), 29129 (7), 29193 (5), 29257 (6), 31049 (5), -tower 4618: eta = 1.85, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 235.444 - sampling = 0, 11 SCIndices: 26186 (6), 26250 (6), 26314 (5), 26378 (5), 26442 (5), 26506 (6), 29066 (6), 29130 (7), 29194 (5), 29258 (6), 31050 (5), -tower 4619: eta = 1.85, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 52.4499 - sampling = 0, 11 SCIndices: 26187 (6), 26251 (6), 26315 (5), 26379 (5), 26443 (5), 26507 (6), 29067 (6), 29131 (7), 29195 (5), 29259 (6), 31051 (5), -tower 4620: eta = 1.85, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 70.6858 - sampling = 0, 11 SCIndices: 26188 (6), 26252 (6), 26316 (5), 26380 (5), 26444 (5), 26508 (6), 29068 (6), 29132 (7), 29196 (5), 29260 (6), 31052 (5), -tower 4621: eta = 1.85, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 175.502 - sampling = 0, 11 SCIndices: 26189 (6), 26253 (6), 26317 (5), 26381 (5), 26445 (5), 26509 (6), 29069 (6), 29133 (7), 29197 (5), 29261 (6), 31053 (5), -tower 4622: eta = 1.85, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 38.1472 - sampling = 0, 11 SCIndices: 26190 (6), 26254 (6), 26318 (5), 26382 (5), 26446 (5), 26510 (6), 29070 (6), 29134 (7), 29198 (5), 29262 (6), 31054 (5), -tower 4623: eta = 1.85, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 190.59 - sampling = 0, 11 SCIndices: 26191 (6), 26255 (6), 26319 (5), 26383 (5), 26447 (5), 26511 (6), 29071 (6), 29135 (7), 29199 (5), 29263 (6), 31055 (5), -tower 4624: eta = 1.85, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 51.3076 - sampling = 0, 11 SCIndices: 26192 (6), 26256 (6), 26320 (5), 26384 (5), 26448 (5), 26512 (6), 29072 (6), 29136 (7), 29200 (5), 29264 (6), 31056 (5), -tower 4625: eta = 1.85, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 161.686 - sampling = 0, 11 SCIndices: 26193 (6), 26257 (6), 26321 (5), 26385 (5), 26449 (5), 26513 (6), 29073 (6), 29137 (7), 29201 (5), 29265 (6), 31057 (5), -tower 4626: eta = 1.85, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26194 (6), 26258 (6), 26322 (5), 26386 (5), 26450 (5), 26514 (6), 29074 (6), 29138 (7), 29202 (5), 29266 (6), 31058 (5), -tower 4627: eta = 1.85, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 105.764 - sampling = 0, 11 SCIndices: 26195 (6), 26259 (6), 26323 (5), 26387 (5), 26451 (5), 26515 (6), 29075 (6), 29139 (7), 29203 (5), 29267 (6), 31059 (5), -tower 4628: eta = 1.85, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 127.416 - sampling = 0, 11 SCIndices: 26196 (6), 26260 (6), 26324 (5), 26388 (5), 26452 (5), 26516 (6), 29076 (6), 29140 (7), 29204 (5), 29268 (6), 31060 (5), -tower 4629: eta = 1.85, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 609.379 - sampling = 0, 11 SCIndices: 26197 (6), 26261 (6), 26325 (5), 26389 (5), 26453 (5), 26517 (6), 29077 (6), 29141 (7), 29205 (5), 29269 (6), 31061 (5), -tower 4630: eta = 1.85, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 72.5719 - sampling = 0, 11 SCIndices: 26198 (6), 26262 (6), 26326 (5), 26390 (5), 26454 (5), 26518 (6), 29078 (6), 29142 (7), 29206 (5), 29270 (6), 31062 (5), -tower 4631: eta = 1.85, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 141.836 - sampling = 0, 11 SCIndices: 26199 (6), 26263 (6), 26327 (5), 26391 (5), 26455 (5), 26519 (6), 29079 (6), 29143 (7), 29207 (5), 29271 (6), 31063 (5), -tower 4632: eta = 1.85, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 263.484 - sampling = 0, 11 SCIndices: 26200 (6), 26264 (6), 26328 (5), 26392 (5), 26456 (6), 26520 (6), 29080 (6), 29144 (7), 29208 (5), 29272 (6), 31064 (5), -tower 4633: eta = 1.85, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 54.2996 - sampling = 0, 11 SCIndices: 26201 (6), 26265 (6), 26329 (5), 26393 (5), 26457 (6), 26521 (6), 29081 (6), 29145 (7), 29209 (5), 29273 (6), 31065 (5), -tower 4634: eta = 1.85, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26202 (6), 26266 (6), 26330 (5), 26394 (5), 26458 (6), 26522 (6), 29082 (6), 29146 (7), 29210 (5), 29274 (6), 31066 (5), -tower 4635: eta = 1.85, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 265.469 - sampling = 0, 11 SCIndices: 26203 (6), 26267 (6), 26331 (5), 26395 (5), 26459 (6), 26523 (6), 29083 (6), 29147 (7), 29211 (5), 29275 (6), 31067 (5), -tower 4636: eta = 1.85, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = -16.5885 - sampling = 0, 11 SCIndices: 26204 (6), 26268 (6), 26332 (5), 26396 (5), 26460 (6), 26524 (6), 29084 (6), 29148 (7), 29212 (5), 29276 (6), 31068 (5), -tower 4637: eta = 1.85, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 137.678 - sampling = 0, 11 SCIndices: 26205 (6), 26269 (6), 26333 (5), 26397 (5), 26461 (6), 26525 (6), 29085 (6), 29149 (7), 29213 (5), 29277 (6), 31069 (5), -tower 4638: eta = 1.85, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 428.353 - sampling = 0, 11 SCIndices: 26206 (6), 26270 (6), 26334 (5), 26398 (5), 26462 (6), 26526 (6), 29086 (6), 29150 (7), 29214 (5), 29278 (6), 31070 (5), -tower 4639: eta = 1.85, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26207 (6), 26271 (6), 26335 (5), 26399 (5), 26463 (6), 26527 (6), 29087 (6), 29151 (7), 29215 (5), 29279 (6), 31071 (5), -tower 4640: eta = 1.85, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 87.404 - sampling = 0, 11 SCIndices: 26208 (6), 26272 (7), 26336 (5), 26400 (5), 26464 (6), 26528 (6), 29088 (6), 29152 (4), 29216 (5), 29280 (6), 31072 (5), -tower 4641: eta = 1.85, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 76.204 - sampling = 0, 11 SCIndices: 26209 (6), 26273 (7), 26337 (5), 26401 (5), 26465 (6), 26529 (6), 29089 (6), 29153 (4), 29217 (5), 29281 (6), 31073 (5), -tower 4642: eta = 1.85, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 1246.22 - sampling = 0, 11 SCIndices: 26210 (6), 26274 (7), 26338 (5), 26402 (5), 26466 (6), 26530 (6), 29090 (6), 29154 (4), 29218 (5), 29282 (6), 31074 (5), -tower 4643: eta = 1.85, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 747.976 - sampling = 0, 11 SCIndices: 26211 (6), 26275 (7), 26339 (5), 26403 (5), 26467 (6), 26531 (6), 29091 (6), 29155 (4), 29219 (5), 29283 (6), 31075 (5), -tower 4644: eta = 1.85, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 16.589 - sampling = 0, 11 SCIndices: 26212 (6), 26276 (7), 26340 (5), 26404 (5), 26468 (6), 26532 (6), 29092 (6), 29156 (4), 29220 (5), 29284 (6), 31076 (5), -tower 4645: eta = 1.85, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 211.742 - sampling = 0, 11 SCIndices: 26213 (6), 26277 (7), 26341 (5), 26405 (5), 26469 (6), 26533 (6), 29093 (6), 29157 (4), 29221 (5), 29285 (6), 31077 (5), -tower 4646: eta = 1.85, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 550.252 - sampling = 0, 11 SCIndices: 26214 (6), 26278 (7), 26342 (5), 26406 (5), 26470 (6), 26534 (6), 29094 (6), 29158 (4), 29222 (5), 29286 (6), 31078 (5), -tower 4647: eta = 1.85, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 53.9798 - sampling = 0, 11 SCIndices: 26215 (6), 26279 (7), 26343 (5), 26407 (5), 26471 (6), 26535 (6), 29095 (6), 29159 (4), 29223 (5), 29287 (6), 31079 (5), -tower 4648: eta = 1.85, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26216 (6), 26280 (7), 26344 (5), 26408 (5), 26472 (6), 26536 (6), 29096 (6), 29160 (4), 29224 (5), 29288 (6), 31080 (5), -tower 4649: eta = 1.85, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 394.074 - sampling = 0, 11 SCIndices: 26217 (6), 26281 (7), 26345 (5), 26409 (5), 26473 (6), 26537 (6), 29097 (6), 29161 (4), 29225 (5), 29289 (6), 31081 (5), -tower 4650: eta = 1.85, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26218 (6), 26282 (7), 26346 (5), 26410 (5), 26474 (6), 26538 (6), 29098 (6), 29162 (4), 29226 (5), 29290 (6), 31082 (5), -tower 4651: eta = 1.85, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 559.021 - sampling = 0, 11 SCIndices: 26219 (6), 26283 (7), 26347 (5), 26411 (5), 26475 (6), 26539 (6), 29099 (6), 29163 (4), 29227 (5), 29291 (6), 31083 (5), -tower 4652: eta = 1.85, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 896.616 - sampling = 0, 11 SCIndices: 26220 (6), 26284 (7), 26348 (5), 26412 (5), 26476 (6), 26540 (6), 29100 (6), 29164 (4), 29228 (5), 29292 (6), 31084 (5), -tower 4653: eta = 1.85, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 557.856 - sampling = 0, 11 SCIndices: 26221 (6), 26285 (7), 26349 (5), 26413 (5), 26477 (6), 26541 (6), 29101 (6), 29165 (4), 29229 (5), 29293 (6), 31085 (5), -tower 4654: eta = 1.85, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26222 (6), 26286 (7), 26350 (5), 26414 (5), 26478 (6), 26542 (6), 29102 (6), 29166 (4), 29230 (5), 29294 (6), 31086 (5), -tower 4655: eta = 1.85, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26223 (6), 26287 (7), 26351 (5), 26415 (5), 26479 (6), 26543 (6), 29103 (6), 29167 (4), 29231 (5), 29295 (6), 31087 (5), -tower 4656: eta = 1.85, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 107.948 - sampling = 0, 11 SCIndices: 26224 (6), 26288 (7), 26352 (5), 26416 (5), 26480 (6), 26544 (6), 29104 (6), 29168 (5), 29232 (5), 29296 (6), 31088 (6), -tower 4657: eta = 1.85, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26225 (6), 26289 (7), 26353 (5), 26417 (5), 26481 (6), 26545 (6), 29105 (6), 29169 (5), 29233 (5), 29297 (6), 31089 (6), -tower 4658: eta = 1.85, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 76.4546 - sampling = 0, 11 SCIndices: 26226 (6), 26290 (7), 26354 (5), 26418 (5), 26482 (6), 26546 (6), 29106 (6), 29170 (5), 29234 (5), 29298 (6), 31090 (6), -tower 4659: eta = 1.85, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 217.885 - sampling = 0, 11 SCIndices: 26227 (6), 26291 (7), 26355 (5), 26419 (5), 26483 (6), 26547 (6), 29107 (6), 29171 (5), 29235 (5), 29299 (6), 31091 (6), -tower 4660: eta = 1.85, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 74.1105 - sampling = 0, 11 SCIndices: 26228 (6), 26292 (7), 26356 (5), 26420 (5), 26484 (6), 26548 (6), 29108 (6), 29172 (5), 29236 (5), 29300 (6), 31092 (6), -tower 4661: eta = 1.85, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 108.27 - sampling = 0, 11 SCIndices: 26229 (6), 26293 (7), 26357 (5), 26421 (5), 26485 (6), 26549 (6), 29109 (6), 29173 (5), 29237 (5), 29301 (6), 31093 (6), -tower 4662: eta = 1.85, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 278.919 - sampling = 0, 11 SCIndices: 26230 (6), 26294 (7), 26358 (5), 26422 (5), 26486 (6), 26550 (6), 29110 (6), 29174 (5), 29238 (5), 29302 (6), 31094 (6), -tower 4663: eta = 1.85, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 369.314 - sampling = 0, 11 SCIndices: 26231 (6), 26295 (7), 26359 (5), 26423 (5), 26487 (6), 26551 (6), 29111 (6), 29175 (5), 29239 (5), 29303 (6), 31095 (6), -tower 4664: eta = 1.85, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 187.22 - sampling = 0, 11 SCIndices: 26232 (6), 26296 (7), 26360 (5), 26424 (5), 26488 (6), 26552 (6), 29112 (6), 29176 (5), 29240 (5), 29304 (6), 31096 (6), -tower 4665: eta = 1.85, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26233 (6), 26297 (7), 26361 (5), 26425 (5), 26489 (6), 26553 (6), 29113 (6), 29177 (5), 29241 (5), 29305 (6), 31097 (6), -tower 4666: eta = 1.85, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 424.442 - sampling = 0, 11 SCIndices: 26234 (6), 26298 (7), 26362 (5), 26426 (5), 26490 (6), 26554 (6), 29114 (6), 29178 (5), 29242 (5), 29306 (6), 31098 (6), -tower 4667: eta = 1.85, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 86.5002 - sampling = 0, 11 SCIndices: 26235 (6), 26299 (7), 26363 (5), 26427 (5), 26491 (6), 26555 (6), 29115 (6), 29179 (5), 29243 (5), 29307 (6), 31099 (6), -tower 4668: eta = 1.85, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 176.588 - sampling = 0, 11 SCIndices: 26236 (6), 26300 (7), 26364 (5), 26428 (5), 26492 (6), 26556 (6), 29116 (6), 29180 (5), 29244 (5), 29308 (6), 31100 (6), -tower 4669: eta = 1.85, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 36.2839 - sampling = 0, 11 SCIndices: 26237 (6), 26301 (7), 26365 (5), 26429 (5), 26493 (6), 26557 (6), 29117 (6), 29181 (5), 29245 (5), 29309 (6), 31101 (6), -tower 4670: eta = 1.85, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 406.604 - sampling = 0, 11 SCIndices: 26238 (6), 26302 (7), 26366 (5), 26430 (5), 26494 (6), 26558 (6), 29118 (6), 29182 (5), 29246 (5), 29310 (6), 31102 (6), -tower 4671: eta = 1.85, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 121.308 - sampling = 0, 11 SCIndices: 26239 (6), 26303 (7), 26367 (5), 26431 (5), 26495 (6), 26559 (6), 29119 (6), 29183 (5), 29247 (5), 29311 (6), 31103 (6), -tower 4672: eta = 1.95, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 429.717 - sampling = 0, 11 SCIndices: 26560 (6), 26624 (5), 26688 (5), 26752 (5), 26816 (6), 26880 (6), 29312 (6), 29376 (7), 29440 (6), 29504 (6), 31104 (6), -tower 4673: eta = 1.95, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 512.971 - sampling = 0, 11 SCIndices: 26561 (6), 26625 (5), 26689 (5), 26753 (5), 26817 (6), 26881 (6), 29313 (6), 29377 (7), 29441 (6), 29505 (6), 31105 (6), -tower 4674: eta = 1.95, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 267.103 - sampling = 0, 11 SCIndices: 26562 (6), 26626 (5), 26690 (5), 26754 (5), 26818 (6), 26882 (6), 29314 (6), 29378 (7), 29442 (6), 29506 (6), 31106 (6), -tower 4675: eta = 1.95, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 311.493 - sampling = 0, 11 SCIndices: 26563 (6), 26627 (5), 26691 (5), 26755 (5), 26819 (6), 26883 (6), 29315 (6), 29379 (7), 29443 (6), 29507 (6), 31107 (6), -tower 4676: eta = 1.95, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 434.154 - sampling = 0, 11 SCIndices: 26564 (6), 26628 (5), 26692 (5), 26756 (5), 26820 (6), 26884 (6), 29316 (6), 29380 (7), 29444 (6), 29508 (6), 31108 (6), -tower 4677: eta = 1.95, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 512.918 - sampling = 0, 11 SCIndices: 26565 (6), 26629 (5), 26693 (5), 26757 (5), 26821 (6), 26885 (6), 29317 (6), 29381 (7), 29445 (6), 29509 (6), 31109 (6), -tower 4678: eta = 1.95, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26566 (6), 26630 (5), 26694 (5), 26758 (5), 26822 (6), 26886 (6), 29318 (6), 29382 (7), 29446 (6), 29510 (6), 31110 (6), -tower 4679: eta = 1.95, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 545.42 - sampling = 0, 11 SCIndices: 26567 (6), 26631 (5), 26695 (5), 26759 (5), 26823 (6), 26887 (6), 29319 (6), 29383 (7), 29447 (6), 29511 (6), 31111 (6), -tower 4680: eta = 1.95, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 192.025 - sampling = 0, 11 SCIndices: 26568 (6), 26632 (5), 26696 (5), 26760 (5), 26824 (6), 26888 (6), 29320 (6), 29384 (7), 29448 (6), 29512 (6), 31112 (6), -tower 4681: eta = 1.95, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 192.014 - sampling = 0, 11 SCIndices: 26569 (6), 26633 (5), 26697 (5), 26761 (5), 26825 (6), 26889 (6), 29321 (6), 29385 (7), 29449 (6), 29513 (6), 31113 (6), -tower 4682: eta = 1.95, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26570 (6), 26634 (5), 26698 (5), 26762 (5), 26826 (6), 26890 (6), 29322 (6), 29386 (7), 29450 (6), 29514 (6), 31114 (6), -tower 4683: eta = 1.95, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 59.664 - sampling = 0, 11 SCIndices: 26571 (6), 26635 (5), 26699 (5), 26763 (5), 26827 (6), 26891 (6), 29323 (6), 29387 (7), 29451 (6), 29515 (6), 31115 (6), -tower 4684: eta = 1.95, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 191.976 - sampling = 0, 11 SCIndices: 26572 (6), 26636 (5), 26700 (5), 26764 (5), 26828 (6), 26892 (6), 29324 (6), 29388 (7), 29452 (6), 29516 (6), 31116 (6), -tower 4685: eta = 1.95, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 66.9976 - sampling = 0, 11 SCIndices: 26573 (6), 26637 (5), 26701 (5), 26765 (5), 26829 (6), 26893 (6), 29325 (6), 29389 (7), 29453 (6), 29517 (6), 31117 (6), -tower 4686: eta = 1.95, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26574 (6), 26638 (5), 26702 (5), 26766 (5), 26830 (6), 26894 (6), 29326 (6), 29390 (7), 29454 (6), 29518 (6), 31118 (6), -tower 4687: eta = 1.95, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 224.721 - sampling = 0, 11 SCIndices: 26575 (6), 26639 (5), 26703 (5), 26767 (5), 26831 (6), 26895 (6), 29327 (6), 29391 (7), 29455 (6), 29519 (6), 31119 (6), -tower 4688: eta = 1.95, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 339.619 - sampling = 0, 11 SCIndices: 26576 (6), 26640 (5), 26704 (5), 26768 (6), 26832 (6), 26896 (7), 29328 (6), 29392 (5), 29456 (6), 29520 (7), 31120 (6), -tower 4689: eta = 1.95, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 368.138 - sampling = 0, 11 SCIndices: 26577 (6), 26641 (5), 26705 (5), 26769 (6), 26833 (6), 26897 (7), 29329 (6), 29393 (5), 29457 (6), 29521 (7), 31121 (6), -tower 4690: eta = 1.95, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 44.644 - sampling = 0, 11 SCIndices: 26578 (6), 26642 (5), 26706 (5), 26770 (6), 26834 (6), 26898 (7), 29330 (6), 29394 (5), 29458 (6), 29522 (7), 31122 (6), -tower 4691: eta = 1.95, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 194.777 - sampling = 0, 11 SCIndices: 26579 (6), 26643 (5), 26707 (5), 26771 (6), 26835 (6), 26899 (7), 29331 (6), 29395 (5), 29459 (6), 29523 (7), 31123 (6), -tower 4692: eta = 1.95, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 310.272 - sampling = 0, 11 SCIndices: 26580 (6), 26644 (5), 26708 (5), 26772 (6), 26836 (6), 26900 (7), 29332 (6), 29396 (5), 29460 (6), 29524 (7), 31124 (6), -tower 4693: eta = 1.95, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 1359.2 - sampling = 0, 11 SCIndices: 26581 (6), 26645 (5), 26709 (5), 26773 (6), 26837 (6), 26901 (7), 29333 (6), 29397 (5), 29461 (6), 29525 (7), 31125 (6), -tower 4694: eta = 1.95, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26582 (6), 26646 (5), 26710 (5), 26774 (6), 26838 (6), 26902 (7), 29334 (6), 29398 (5), 29462 (6), 29526 (7), 31126 (6), -tower 4695: eta = 1.95, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 451.581 - sampling = 0, 11 SCIndices: 26583 (6), 26647 (5), 26711 (5), 26775 (6), 26839 (6), 26903 (7), 29335 (6), 29399 (5), 29463 (6), 29527 (7), 31127 (6), -tower 4696: eta = 1.95, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 122.762 - sampling = 0, 11 SCIndices: 26584 (7), 26648 (5), 26712 (5), 26776 (6), 26840 (6), 26904 (7), 29336 (6), 29400 (5), 29464 (6), 29528 (7), 31128 (6), -tower 4697: eta = 1.95, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 236.019 - sampling = 0, 11 SCIndices: 26585 (7), 26649 (5), 26713 (5), 26777 (6), 26841 (6), 26905 (7), 29337 (6), 29401 (5), 29465 (6), 29529 (7), 31129 (6), -tower 4698: eta = 1.95, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26586 (7), 26650 (5), 26714 (5), 26778 (6), 26842 (6), 26906 (7), 29338 (6), 29402 (5), 29466 (6), 29530 (7), 31130 (6), -tower 4699: eta = 1.95, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 73.2382 - sampling = 0, 11 SCIndices: 26587 (7), 26651 (5), 26715 (5), 26779 (6), 26843 (6), 26907 (7), 29339 (6), 29403 (5), 29467 (6), 29531 (7), 31131 (6), -tower 4700: eta = 1.95, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 161.654 - sampling = 0, 11 SCIndices: 26588 (7), 26652 (5), 26716 (5), 26780 (6), 26844 (6), 26908 (7), 29340 (6), 29404 (5), 29468 (6), 29532 (7), 31132 (6), -tower 4701: eta = 1.95, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 558.19 - sampling = 0, 11 SCIndices: 26589 (7), 26653 (5), 26717 (5), 26781 (6), 26845 (6), 26909 (7), 29341 (6), 29405 (5), 29469 (6), 29533 (7), 31133 (6), -tower 4702: eta = 1.95, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 123.39 - sampling = 0, 11 SCIndices: 26590 (7), 26654 (5), 26718 (5), 26782 (6), 26846 (6), 26910 (7), 29342 (6), 29406 (5), 29470 (6), 29534 (7), 31134 (6), -tower 4703: eta = 1.95, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 18.8377 - sampling = 0, 11 SCIndices: 26591 (7), 26655 (5), 26719 (5), 26783 (6), 26847 (6), 26911 (7), 29343 (6), 29407 (5), 29471 (6), 29535 (7), 31135 (6), -tower 4704: eta = 1.95, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 478.191 - sampling = 0, 11 SCIndices: 26592 (7), 26656 (5), 26720 (5), 26784 (6), 26848 (6), 26912 (7), 29344 (6), 29408 (6), 29472 (7), 29536 (7), 31136 (6), -tower 4705: eta = 1.95, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 837.48 - sampling = 0, 11 SCIndices: 26593 (7), 26657 (5), 26721 (5), 26785 (6), 26849 (6), 26913 (7), 29345 (6), 29409 (6), 29473 (7), 29537 (7), 31137 (6), -tower 4706: eta = 1.95, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26594 (7), 26658 (5), 26722 (5), 26786 (6), 26850 (6), 26914 (7), 29346 (6), 29410 (6), 29474 (7), 29538 (7), 31138 (6), -tower 4707: eta = 1.95, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 346.658 - sampling = 0, 11 SCIndices: 26595 (7), 26659 (5), 26723 (5), 26787 (6), 26851 (6), 26915 (7), 29347 (6), 29411 (6), 29475 (7), 29539 (7), 31139 (6), -tower 4708: eta = 1.95, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 365.17 - sampling = 0, 11 SCIndices: 26596 (7), 26660 (5), 26724 (5), 26788 (6), 26852 (6), 26916 (7), 29348 (6), 29412 (6), 29476 (7), 29540 (7), 31140 (6), -tower 4709: eta = 1.95, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 132.064 - sampling = 0, 11 SCIndices: 26597 (7), 26661 (5), 26725 (5), 26789 (6), 26853 (6), 26917 (7), 29349 (6), 29413 (6), 29477 (7), 29541 (7), 31141 (6), -tower 4710: eta = 1.95, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 69.2132 - sampling = 0, 11 SCIndices: 26598 (7), 26662 (5), 26726 (5), 26790 (6), 26854 (6), 26918 (7), 29350 (6), 29414 (6), 29478 (7), 29542 (7), 31142 (6), -tower 4711: eta = 1.95, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26599 (7), 26663 (5), 26727 (5), 26791 (6), 26855 (6), 26919 (7), 29351 (6), 29415 (6), 29479 (7), 29543 (7), 31143 (6), -tower 4712: eta = 1.95, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 25.9868 - sampling = 0, 11 SCIndices: 26600 (7), 26664 (5), 26728 (5), 26792 (6), 26856 (6), 26920 (7), 29352 (6), 29416 (6), 29480 (7), 29544 (7), 31144 (6), -tower 4713: eta = 1.95, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 106.88 - sampling = 0, 11 SCIndices: 26601 (7), 26665 (5), 26729 (5), 26793 (6), 26857 (6), 26921 (7), 29353 (6), 29417 (6), 29481 (7), 29545 (7), 31145 (6), -tower 4714: eta = 1.95, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26602 (7), 26666 (5), 26730 (5), 26794 (6), 26858 (6), 26922 (7), 29354 (6), 29418 (6), 29482 (7), 29546 (7), 31146 (6), -tower 4715: eta = 1.95, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 517.936 - sampling = 0, 11 SCIndices: 26603 (7), 26667 (5), 26731 (5), 26795 (6), 26859 (6), 26923 (7), 29355 (6), 29419 (6), 29483 (7), 29547 (7), 31147 (6), -tower 4716: eta = 1.95, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 479.374 - sampling = 0, 11 SCIndices: 26604 (7), 26668 (5), 26732 (5), 26796 (6), 26860 (6), 26924 (7), 29356 (6), 29420 (6), 29484 (7), 29548 (7), 31148 (6), -tower 4717: eta = 1.95, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 300.439 - sampling = 0, 11 SCIndices: 26605 (7), 26669 (5), 26733 (5), 26797 (6), 26861 (6), 26925 (7), 29357 (6), 29421 (6), 29485 (7), 29549 (7), 31149 (6), -tower 4718: eta = 1.95, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 42.2886 - sampling = 0, 11 SCIndices: 26606 (7), 26670 (5), 26734 (5), 26798 (6), 26862 (6), 26926 (7), 29358 (6), 29422 (6), 29486 (7), 29550 (7), 31150 (6), -tower 4719: eta = 1.95, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26607 (7), 26671 (5), 26735 (5), 26799 (6), 26863 (6), 26927 (7), 29359 (6), 29423 (6), 29487 (7), 29551 (7), 31151 (6), -tower 4720: eta = 1.95, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 421.942 - sampling = 0, 11 SCIndices: 26608 (7), 26672 (5), 26736 (5), 26800 (6), 26864 (6), 26928 (4), 29360 (6), 29424 (6), 29488 (6), 29552 (8), 31152 (6), -tower 4721: eta = 1.95, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26609 (7), 26673 (5), 26737 (5), 26801 (6), 26865 (6), 26929 (4), 29361 (6), 29425 (6), 29489 (6), 29553 (8), 31153 (6), -tower 4722: eta = 1.95, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26610 (7), 26674 (5), 26738 (5), 26802 (6), 26866 (6), 26930 (4), 29362 (6), 29426 (6), 29490 (6), 29554 (8), 31154 (6), -tower 4723: eta = 1.95, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 50.8485 - sampling = 0, 11 SCIndices: 26611 (7), 26675 (5), 26739 (5), 26803 (6), 26867 (6), 26931 (4), 29363 (6), 29427 (6), 29491 (6), 29555 (8), 31155 (6), -tower 4724: eta = 1.95, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 222.543 - sampling = 0, 11 SCIndices: 26612 (7), 26676 (5), 26740 (5), 26804 (6), 26868 (6), 26932 (4), 29364 (6), 29428 (6), 29492 (6), 29556 (8), 31156 (6), -tower 4725: eta = 1.95, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 119.221 - sampling = 0, 11 SCIndices: 26613 (7), 26677 (5), 26741 (5), 26805 (6), 26869 (6), 26933 (4), 29365 (6), 29429 (6), 29493 (6), 29557 (8), 31157 (6), -tower 4726: eta = 1.95, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 112.961 - sampling = 0, 11 SCIndices: 26614 (7), 26678 (5), 26742 (5), 26806 (6), 26870 (6), 26934 (4), 29366 (6), 29430 (6), 29494 (6), 29558 (8), 31158 (6), -tower 4727: eta = 1.95, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 133.144 - sampling = 0, 11 SCIndices: 26615 (7), 26679 (5), 26743 (5), 26807 (6), 26871 (6), 26935 (4), 29367 (6), 29431 (6), 29495 (6), 29559 (8), 31159 (6), -tower 4728: eta = 1.95, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26616 (4), 26680 (5), 26744 (5), 26808 (6), 26872 (6), 26936 (4), 29368 (6), 29432 (6), 29496 (6), 29560 (8), 31160 (6), -tower 4729: eta = 1.95, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = -7.38385 - sampling = 0, 11 SCIndices: 26617 (4), 26681 (5), 26745 (5), 26809 (6), 26873 (6), 26937 (4), 29369 (6), 29433 (6), 29497 (6), 29561 (8), 31161 (6), -tower 4730: eta = 1.95, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = -99.632 - sampling = 0, 11 SCIndices: 26618 (4), 26682 (5), 26746 (5), 26810 (6), 26874 (6), 26938 (4), 29370 (6), 29434 (6), 29498 (6), 29562 (8), 31162 (6), -tower 4731: eta = 1.95, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 377.543 - sampling = 0, 11 SCIndices: 26619 (4), 26683 (5), 26747 (5), 26811 (6), 26875 (6), 26939 (4), 29371 (6), 29435 (6), 29499 (6), 29563 (8), 31163 (6), -tower 4732: eta = 1.95, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 186.057 - sampling = 0, 11 SCIndices: 26620 (4), 26684 (5), 26748 (5), 26812 (6), 26876 (6), 26940 (4), 29372 (6), 29436 (6), 29500 (6), 29564 (8), 31164 (6), -tower 4733: eta = 1.95, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 68.7991 - sampling = 0, 11 SCIndices: 26621 (4), 26685 (5), 26749 (5), 26813 (6), 26877 (6), 26941 (4), 29373 (6), 29437 (6), 29501 (6), 29565 (8), 31165 (6), -tower 4734: eta = 1.95, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 99.1793 - sampling = 0, 11 SCIndices: 26622 (4), 26686 (5), 26750 (5), 26814 (6), 26878 (6), 26942 (4), 29374 (6), 29438 (6), 29502 (6), 29566 (8), 31166 (6), -tower 4735: eta = 1.95, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 11 SCIndices: 26623 (4), 26687 (5), 26751 (5), 26815 (6), 26879 (6), 26943 (4), 29375 (6), 29439 (6), 29503 (6), 29567 (8), 31167 (6), -tower 4736: eta = 2.05, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 26944 (5), 27008 (5), 27072 (6), 27136 (6), 29568 (8), 29632 (8), 29696 (8), 29760 (5), 31168 (6), -tower 4737: eta = 2.05, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 866.296 - sampling = 0, 9 SCIndices: 26945 (5), 27009 (5), 27073 (6), 27137 (6), 29569 (8), 29633 (8), 29697 (8), 29761 (5), 31169 (6), -tower 4738: eta = 2.05, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 247.608 - sampling = 0, 9 SCIndices: 26946 (5), 27010 (5), 27074 (6), 27138 (6), 29570 (8), 29634 (8), 29698 (8), 29762 (5), 31170 (6), -tower 4739: eta = 2.05, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 148.778 - sampling = 0, 9 SCIndices: 26947 (5), 27011 (5), 27075 (6), 27139 (6), 29571 (8), 29635 (8), 29699 (8), 29763 (5), 31171 (6), -tower 4740: eta = 2.05, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 439.168 - sampling = 0, 9 SCIndices: 26948 (5), 27012 (5), 27076 (6), 27140 (6), 29572 (8), 29636 (8), 29700 (8), 29764 (5), 31172 (6), -tower 4741: eta = 2.05, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 441.581 - sampling = 0, 9 SCIndices: 26949 (5), 27013 (5), 27077 (6), 27141 (6), 29573 (8), 29637 (8), 29701 (8), 29765 (5), 31173 (6), -tower 4742: eta = 2.05, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 26950 (5), 27014 (5), 27078 (6), 27142 (6), 29574 (8), 29638 (8), 29702 (8), 29766 (5), 31174 (6), -tower 4743: eta = 2.05, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 223.029 - sampling = 0, 9 SCIndices: 26951 (5), 27015 (5), 27079 (6), 27143 (6), 29575 (8), 29639 (8), 29703 (8), 29767 (5), 31175 (6), -tower 4744: eta = 2.05, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = -64.0829 - sampling = 0, 9 SCIndices: 26952 (5), 27016 (5), 27080 (6), 27144 (6), 29576 (8), 29640 (8), 29704 (8), 29768 (5), 31176 (6), -tower 4745: eta = 2.05, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 313.409 - sampling = 0, 9 SCIndices: 26953 (5), 27017 (5), 27081 (6), 27145 (6), 29577 (8), 29641 (8), 29705 (8), 29769 (5), 31177 (6), -tower 4746: eta = 2.05, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 144.06 - sampling = 0, 9 SCIndices: 26954 (5), 27018 (5), 27082 (6), 27146 (6), 29578 (8), 29642 (8), 29706 (8), 29770 (5), 31178 (6), -tower 4747: eta = 2.05, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 385.262 - sampling = 0, 9 SCIndices: 26955 (5), 27019 (5), 27083 (6), 27147 (6), 29579 (8), 29643 (8), 29707 (8), 29771 (5), 31179 (6), -tower 4748: eta = 2.05, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 26956 (5), 27020 (5), 27084 (6), 27148 (6), 29580 (8), 29644 (8), 29708 (8), 29772 (5), 31180 (6), -tower 4749: eta = 2.05, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 26957 (5), 27021 (5), 27085 (6), 27149 (6), 29581 (8), 29645 (8), 29709 (8), 29773 (5), 31181 (6), -tower 4750: eta = 2.05, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 100.221 - sampling = 0, 9 SCIndices: 26958 (5), 27022 (5), 27086 (6), 27150 (6), 29582 (8), 29646 (8), 29710 (8), 29774 (5), 31182 (6), -tower 4751: eta = 2.05, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 401.709 - sampling = 0, 9 SCIndices: 26959 (5), 27023 (5), 27087 (6), 27151 (6), 29583 (8), 29647 (8), 29711 (8), 29775 (5), 31183 (6), -tower 4752: eta = 2.05, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 15.7327 - sampling = 0, 9 SCIndices: 26960 (5), 27024 (6), 27088 (6), 27152 (7), 29584 (8), 29648 (8), 29712 (8), 29776 (5), 31184 (6), -tower 4753: eta = 2.05, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 26961 (5), 27025 (6), 27089 (6), 27153 (7), 29585 (8), 29649 (8), 29713 (8), 29777 (5), 31185 (6), -tower 4754: eta = 2.05, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 26962 (5), 27026 (6), 27090 (6), 27154 (7), 29586 (8), 29650 (8), 29714 (8), 29778 (5), 31186 (6), -tower 4755: eta = 2.05, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 119.113 - sampling = 0, 9 SCIndices: 26963 (5), 27027 (6), 27091 (6), 27155 (7), 29587 (8), 29651 (8), 29715 (8), 29779 (5), 31187 (6), -tower 4756: eta = 2.05, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 120.376 - sampling = 0, 9 SCIndices: 26964 (5), 27028 (6), 27092 (6), 27156 (7), 29588 (8), 29652 (8), 29716 (8), 29780 (5), 31188 (6), -tower 4757: eta = 2.05, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 1299.82 - sampling = 0, 9 SCIndices: 26965 (5), 27029 (6), 27093 (6), 27157 (7), 29589 (8), 29653 (8), 29717 (8), 29781 (5), 31189 (6), -tower 4758: eta = 2.05, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 700.114 - sampling = 0, 9 SCIndices: 26966 (5), 27030 (6), 27094 (6), 27158 (7), 29590 (8), 29654 (8), 29718 (8), 29782 (5), 31190 (6), -tower 4759: eta = 2.05, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 246.862 - sampling = 0, 9 SCIndices: 26967 (5), 27031 (6), 27095 (6), 27159 (7), 29591 (8), 29655 (8), 29719 (8), 29783 (5), 31191 (6), -tower 4760: eta = 2.05, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 26968 (5), 27032 (6), 27096 (6), 27160 (7), 29592 (8), 29656 (8), 29720 (8), 29784 (5), 31192 (6), -tower 4761: eta = 2.05, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 136.297 - sampling = 0, 9 SCIndices: 26969 (5), 27033 (6), 27097 (6), 27161 (7), 29593 (8), 29657 (8), 29721 (8), 29785 (5), 31193 (6), -tower 4762: eta = 2.05, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 431.203 - sampling = 0, 9 SCIndices: 26970 (5), 27034 (6), 27098 (6), 27162 (7), 29594 (8), 29658 (8), 29722 (8), 29786 (5), 31194 (6), -tower 4763: eta = 2.05, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 90.3459 - sampling = 0, 9 SCIndices: 26971 (5), 27035 (6), 27099 (6), 27163 (7), 29595 (8), 29659 (8), 29723 (8), 29787 (5), 31195 (6), -tower 4764: eta = 2.05, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 56.1026 - sampling = 0, 9 SCIndices: 26972 (5), 27036 (6), 27100 (6), 27164 (7), 29596 (8), 29660 (8), 29724 (8), 29788 (5), 31196 (6), -tower 4765: eta = 2.05, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 160.039 - sampling = 0, 9 SCIndices: 26973 (5), 27037 (6), 27101 (6), 27165 (7), 29597 (8), 29661 (8), 29725 (8), 29789 (5), 31197 (6), -tower 4766: eta = 2.05, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 26974 (5), 27038 (6), 27102 (6), 27166 (7), 29598 (8), 29662 (8), 29726 (8), 29790 (5), 31198 (6), -tower 4767: eta = 2.05, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 26975 (5), 27039 (6), 27103 (6), 27167 (7), 29599 (8), 29663 (8), 29727 (8), 29791 (5), 31199 (6), -tower 4768: eta = 2.05, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 315.032 - sampling = 0, 9 SCIndices: 26976 (5), 27040 (6), 27104 (6), 27168 (5), 29600 (8), 29664 (8), 29728 (8), 29792 (5), 31200 (6), -tower 4769: eta = 2.05, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 26977 (5), 27041 (6), 27105 (6), 27169 (5), 29601 (8), 29665 (8), 29729 (8), 29793 (5), 31201 (6), -tower 4770: eta = 2.05, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 531.198 - sampling = 0, 9 SCIndices: 26978 (5), 27042 (6), 27106 (6), 27170 (5), 29602 (8), 29666 (8), 29730 (8), 29794 (5), 31202 (6), -tower 4771: eta = 2.05, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 185.22 - sampling = 0, 9 SCIndices: 26979 (5), 27043 (6), 27107 (6), 27171 (5), 29603 (8), 29667 (8), 29731 (8), 29795 (5), 31203 (6), -tower 4772: eta = 2.05, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 197.563 - sampling = 0, 9 SCIndices: 26980 (5), 27044 (6), 27108 (6), 27172 (5), 29604 (8), 29668 (8), 29732 (8), 29796 (5), 31204 (6), -tower 4773: eta = 2.05, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 720.18 - sampling = 0, 9 SCIndices: 26981 (5), 27045 (6), 27109 (6), 27173 (5), 29605 (8), 29669 (8), 29733 (8), 29797 (5), 31205 (6), -tower 4774: eta = 2.05, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 116.887 - sampling = 0, 9 SCIndices: 26982 (5), 27046 (6), 27110 (6), 27174 (5), 29606 (8), 29670 (8), 29734 (8), 29798 (5), 31206 (6), -tower 4775: eta = 2.05, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 26983 (5), 27047 (6), 27111 (6), 27175 (5), 29607 (8), 29671 (8), 29735 (8), 29799 (5), 31207 (6), -tower 4776: eta = 2.05, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 197.604 - sampling = 0, 9 SCIndices: 26984 (5), 27048 (6), 27112 (6), 27176 (5), 29608 (8), 29672 (8), 29736 (8), 29800 (5), 31208 (6), -tower 4777: eta = 2.05, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 315.161 - sampling = 0, 9 SCIndices: 26985 (5), 27049 (6), 27113 (6), 27177 (5), 29609 (8), 29673 (8), 29737 (8), 29801 (5), 31209 (6), -tower 4778: eta = 2.05, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 26986 (5), 27050 (6), 27114 (6), 27178 (5), 29610 (8), 29674 (8), 29738 (8), 29802 (5), 31210 (6), -tower 4779: eta = 2.05, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 26987 (5), 27051 (6), 27115 (6), 27179 (5), 29611 (8), 29675 (8), 29739 (8), 29803 (5), 31211 (6), -tower 4780: eta = 2.05, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 441.106 - sampling = 0, 9 SCIndices: 26988 (5), 27052 (6), 27116 (6), 27180 (5), 29612 (8), 29676 (8), 29740 (8), 29804 (5), 31212 (6), -tower 4781: eta = 2.05, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 26989 (5), 27053 (6), 27117 (6), 27181 (5), 29613 (8), 29677 (8), 29741 (8), 29805 (5), 31213 (6), -tower 4782: eta = 2.05, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 26990 (5), 27054 (6), 27118 (6), 27182 (5), 29614 (8), 29678 (8), 29742 (8), 29806 (5), 31214 (6), -tower 4783: eta = 2.05, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 26991 (5), 27055 (6), 27119 (6), 27183 (5), 29615 (8), 29679 (8), 29743 (8), 29807 (5), 31215 (6), -tower 4784: eta = 2.05, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 122.836 - sampling = 0, 9 SCIndices: 26992 (5), 27056 (6), 27120 (6), 27184 (6), 29616 (8), 29680 (8), 29744 (4), 29808 (5), 31216 (7), -tower 4785: eta = 2.05, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 165.87 - sampling = 0, 9 SCIndices: 26993 (5), 27057 (6), 27121 (6), 27185 (6), 29617 (8), 29681 (8), 29745 (4), 29809 (5), 31217 (7), -tower 4786: eta = 2.05, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 90.435 - sampling = 0, 9 SCIndices: 26994 (5), 27058 (6), 27122 (6), 27186 (6), 29618 (8), 29682 (8), 29746 (4), 29810 (5), 31218 (7), -tower 4787: eta = 2.05, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 147.782 - sampling = 0, 9 SCIndices: 26995 (5), 27059 (6), 27123 (6), 27187 (6), 29619 (8), 29683 (8), 29747 (4), 29811 (5), 31219 (7), -tower 4788: eta = 2.05, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 62.6938 - sampling = 0, 9 SCIndices: 26996 (5), 27060 (6), 27124 (6), 27188 (6), 29620 (8), 29684 (8), 29748 (4), 29812 (5), 31220 (7), -tower 4789: eta = 2.05, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 241.644 - sampling = 0, 9 SCIndices: 26997 (5), 27061 (6), 27125 (6), 27189 (6), 29621 (8), 29685 (8), 29749 (4), 29813 (5), 31221 (7), -tower 4790: eta = 2.05, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 26998 (5), 27062 (6), 27126 (6), 27190 (6), 29622 (8), 29686 (8), 29750 (4), 29814 (5), 31222 (7), -tower 4791: eta = 2.05, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 68.909 - sampling = 0, 9 SCIndices: 26999 (5), 27063 (6), 27127 (6), 27191 (6), 29623 (8), 29687 (8), 29751 (4), 29815 (5), 31223 (7), -tower 4792: eta = 2.05, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 441.533 - sampling = 0, 9 SCIndices: 27000 (5), 27064 (6), 27128 (6), 27192 (6), 29624 (8), 29688 (8), 29752 (5), 29816 (5), 31224 (7), -tower 4793: eta = 2.05, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 214.785 - sampling = 0, 9 SCIndices: 27001 (5), 27065 (6), 27129 (6), 27193 (6), 29625 (8), 29689 (8), 29753 (5), 29817 (5), 31225 (7), -tower 4794: eta = 2.05, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 1491.56 - sampling = 0, 9 SCIndices: 27002 (5), 27066 (6), 27130 (6), 27194 (6), 29626 (8), 29690 (8), 29754 (5), 29818 (5), 31226 (7), -tower 4795: eta = 2.05, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 265.71 - sampling = 0, 9 SCIndices: 27003 (5), 27067 (6), 27131 (6), 27195 (6), 29627 (8), 29691 (8), 29755 (5), 29819 (5), 31227 (7), -tower 4796: eta = 2.05, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27004 (5), 27068 (6), 27132 (6), 27196 (6), 29628 (8), 29692 (8), 29756 (5), 29820 (5), 31228 (7), -tower 4797: eta = 2.05, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 102.328 - sampling = 0, 9 SCIndices: 27005 (5), 27069 (6), 27133 (6), 27197 (6), 29629 (8), 29693 (8), 29757 (5), 29821 (5), 31229 (7), -tower 4798: eta = 2.05, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27006 (5), 27070 (6), 27134 (6), 27198 (6), 29630 (8), 29694 (8), 29758 (5), 29822 (5), 31230 (7), -tower 4799: eta = 2.05, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = -41.3406 - sampling = 0, 9 SCIndices: 27007 (5), 27071 (6), 27135 (6), 27199 (6), 29631 (8), 29695 (8), 29759 (5), 29823 (5), 31231 (7), -tower 4800: eta = 2.15, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 14.3497 - sampling = 0, 9 SCIndices: 27200 (6), 27264 (6), 27328 (8), 27392 (8), 29824 (5), 29888 (5), 29952 (6), 30016 (6), 31232 (5), -tower 4801: eta = 2.15, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 203.545 - sampling = 0, 9 SCIndices: 27201 (6), 27265 (6), 27329 (8), 27393 (8), 29825 (5), 29889 (5), 29953 (6), 30017 (6), 31233 (5), -tower 4802: eta = 2.15, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 39.9647 - sampling = 0, 9 SCIndices: 27202 (6), 27266 (6), 27330 (8), 27394 (8), 29826 (5), 29890 (5), 29954 (6), 30018 (6), 31234 (5), -tower 4803: eta = 2.15, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27203 (6), 27267 (6), 27331 (8), 27395 (8), 29827 (5), 29891 (5), 29955 (6), 30019 (6), 31235 (5), -tower 4804: eta = 2.15, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 291.312 - sampling = 0, 9 SCIndices: 27204 (6), 27268 (6), 27332 (8), 27396 (8), 29828 (5), 29892 (5), 29956 (6), 30020 (6), 31236 (5), -tower 4805: eta = 2.15, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 69.9211 - sampling = 0, 9 SCIndices: 27205 (6), 27269 (6), 27333 (8), 27397 (8), 29829 (5), 29893 (5), 29957 (6), 30021 (6), 31237 (5), -tower 4806: eta = 2.15, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 21.7119 - sampling = 0, 9 SCIndices: 27206 (6), 27270 (6), 27334 (8), 27398 (8), 29830 (5), 29894 (5), 29958 (6), 30022 (6), 31238 (5), -tower 4807: eta = 2.15, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 529.278 - sampling = 0, 9 SCIndices: 27207 (6), 27271 (6), 27335 (8), 27399 (8), 29831 (5), 29895 (5), 29959 (6), 30023 (6), 31239 (5), -tower 4808: eta = 2.15, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 248.157 - sampling = 0, 9 SCIndices: 27208 (6), 27272 (6), 27336 (8), 27400 (8), 29832 (5), 29896 (6), 29960 (6), 30024 (7), 31240 (5), -tower 4809: eta = 2.15, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27209 (6), 27273 (6), 27337 (8), 27401 (8), 29833 (5), 29897 (6), 29961 (6), 30025 (7), 31241 (5), -tower 4810: eta = 2.15, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 286.277 - sampling = 0, 9 SCIndices: 27210 (6), 27274 (6), 27338 (8), 27402 (8), 29834 (5), 29898 (6), 29962 (6), 30026 (7), 31242 (5), -tower 4811: eta = 2.15, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 392.69 - sampling = 0, 9 SCIndices: 27211 (6), 27275 (6), 27339 (8), 27403 (8), 29835 (5), 29899 (6), 29963 (6), 30027 (7), 31243 (5), -tower 4812: eta = 2.15, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 11.0723 - sampling = 0, 9 SCIndices: 27212 (6), 27276 (6), 27340 (8), 27404 (8), 29836 (5), 29900 (6), 29964 (6), 30028 (7), 31244 (5), -tower 4813: eta = 2.15, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 53.0772 - sampling = 0, 9 SCIndices: 27213 (6), 27277 (6), 27341 (8), 27405 (8), 29837 (5), 29901 (6), 29965 (6), 30029 (7), 31245 (5), -tower 4814: eta = 2.15, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 180.531 - sampling = 0, 9 SCIndices: 27214 (6), 27278 (6), 27342 (8), 27406 (8), 29838 (5), 29902 (6), 29966 (6), 30030 (7), 31246 (5), -tower 4815: eta = 2.15, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 381.136 - sampling = 0, 9 SCIndices: 27215 (6), 27279 (6), 27343 (8), 27407 (8), 29839 (5), 29903 (6), 29967 (6), 30031 (7), 31247 (5), -tower 4816: eta = 2.15, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 304.377 - sampling = 0, 9 SCIndices: 27216 (6), 27280 (6), 27344 (8), 27408 (8), 29840 (5), 29904 (6), 29968 (6), 30032 (7), 31248 (6), -tower 4817: eta = 2.15, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27217 (6), 27281 (6), 27345 (8), 27409 (8), 29841 (5), 29905 (6), 29969 (6), 30033 (7), 31249 (6), -tower 4818: eta = 2.15, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 44.0718 - sampling = 0, 9 SCIndices: 27218 (6), 27282 (6), 27346 (8), 27410 (8), 29842 (5), 29906 (6), 29970 (6), 30034 (7), 31250 (6), -tower 4819: eta = 2.15, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 300.058 - sampling = 0, 9 SCIndices: 27219 (6), 27283 (6), 27347 (8), 27411 (8), 29843 (5), 29907 (6), 29971 (6), 30035 (7), 31251 (6), -tower 4820: eta = 2.15, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = -6.72802 - sampling = 0, 9 SCIndices: 27220 (6), 27284 (6), 27348 (8), 27412 (8), 29844 (5), 29908 (6), 29972 (6), 30036 (7), 31252 (6), -tower 4821: eta = 2.15, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 456.328 - sampling = 0, 9 SCIndices: 27221 (6), 27285 (6), 27349 (8), 27413 (8), 29845 (5), 29909 (6), 29973 (6), 30037 (7), 31253 (6), -tower 4822: eta = 2.15, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27222 (6), 27286 (6), 27350 (8), 27414 (8), 29846 (5), 29910 (6), 29974 (6), 30038 (7), 31254 (6), -tower 4823: eta = 2.15, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27223 (6), 27287 (6), 27351 (8), 27415 (8), 29847 (5), 29911 (6), 29975 (6), 30039 (7), 31255 (6), -tower 4824: eta = 2.15, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = -234.032 - sampling = 0, 9 SCIndices: 27224 (6), 27288 (6), 27352 (8), 27416 (8), 29848 (5), 29912 (6), 29976 (6), 30040 (7), 31256 (6), -tower 4825: eta = 2.15, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 137.489 - sampling = 0, 9 SCIndices: 27225 (6), 27289 (6), 27353 (8), 27417 (8), 29849 (5), 29913 (6), 29977 (6), 30041 (7), 31257 (6), -tower 4826: eta = 2.15, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27226 (6), 27290 (6), 27354 (8), 27418 (8), 29850 (5), 29914 (6), 29978 (6), 30042 (7), 31258 (6), -tower 4827: eta = 2.15, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 137.475 - sampling = 0, 9 SCIndices: 27227 (6), 27291 (6), 27355 (8), 27419 (8), 29851 (5), 29915 (6), 29979 (6), 30043 (7), 31259 (6), -tower 4828: eta = 2.15, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27228 (6), 27292 (6), 27356 (8), 27420 (8), 29852 (5), 29916 (6), 29980 (6), 30044 (7), 31260 (6), -tower 4829: eta = 2.15, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 340.605 - sampling = 0, 9 SCIndices: 27229 (6), 27293 (6), 27357 (8), 27421 (8), 29853 (5), 29917 (6), 29981 (6), 30045 (7), 31261 (6), -tower 4830: eta = 2.15, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 138.833 - sampling = 0, 9 SCIndices: 27230 (6), 27294 (6), 27358 (8), 27422 (8), 29854 (5), 29918 (6), 29982 (6), 30046 (7), 31262 (6), -tower 4831: eta = 2.15, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 135.593 - sampling = 0, 9 SCIndices: 27231 (6), 27295 (6), 27359 (8), 27423 (8), 29855 (5), 29919 (6), 29983 (6), 30047 (7), 31263 (6), -tower 4832: eta = 2.15, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 823.371 - sampling = 0, 9 SCIndices: 27232 (6), 27296 (7), 27360 (8), 27424 (8), 29856 (5), 29920 (6), 29984 (6), 30048 (7), 31264 (6), -tower 4833: eta = 2.15, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 735.911 - sampling = 0, 9 SCIndices: 27233 (6), 27297 (7), 27361 (8), 27425 (8), 29857 (5), 29921 (6), 29985 (6), 30049 (7), 31265 (6), -tower 4834: eta = 2.15, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 137.465 - sampling = 0, 9 SCIndices: 27234 (6), 27298 (7), 27362 (8), 27426 (8), 29858 (5), 29922 (6), 29986 (6), 30050 (7), 31266 (6), -tower 4835: eta = 2.15, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 342.189 - sampling = 0, 9 SCIndices: 27235 (6), 27299 (7), 27363 (8), 27427 (8), 29859 (5), 29923 (6), 29987 (6), 30051 (7), 31267 (6), -tower 4836: eta = 2.15, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 277.187 - sampling = 0, 9 SCIndices: 27236 (6), 27300 (7), 27364 (8), 27428 (8), 29860 (5), 29924 (6), 29988 (6), 30052 (7), 31268 (6), -tower 4837: eta = 2.15, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = -33.1003 - sampling = 0, 9 SCIndices: 27237 (6), 27301 (7), 27365 (8), 27429 (8), 29861 (5), 29925 (6), 29989 (6), 30053 (7), 31269 (6), -tower 4838: eta = 2.15, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 1338.86 - sampling = 0, 9 SCIndices: 27238 (6), 27302 (7), 27366 (8), 27430 (8), 29862 (5), 29926 (6), 29990 (6), 30054 (7), 31270 (6), -tower 4839: eta = 2.15, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 182.497 - sampling = 0, 9 SCIndices: 27239 (6), 27303 (7), 27367 (8), 27431 (8), 29863 (5), 29927 (6), 29991 (6), 30055 (7), 31271 (6), -tower 4840: eta = 2.15, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 368.675 - sampling = 0, 9 SCIndices: 27240 (6), 27304 (7), 27368 (8), 27432 (8), 29864 (5), 29928 (6), 29992 (6), 30056 (4), 31272 (6), -tower 4841: eta = 2.15, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27241 (6), 27305 (7), 27369 (8), 27433 (8), 29865 (5), 29929 (6), 29993 (6), 30057 (4), 31273 (6), -tower 4842: eta = 2.15, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 93.5671 - sampling = 0, 9 SCIndices: 27242 (6), 27306 (7), 27370 (8), 27434 (8), 29866 (5), 29930 (6), 29994 (6), 30058 (4), 31274 (6), -tower 4843: eta = 2.15, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27243 (6), 27307 (7), 27371 (8), 27435 (8), 29867 (5), 29931 (6), 29995 (6), 30059 (4), 31275 (6), -tower 4844: eta = 2.15, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 268.663 - sampling = 0, 9 SCIndices: 27244 (6), 27308 (7), 27372 (8), 27436 (8), 29868 (5), 29932 (6), 29996 (6), 30060 (4), 31276 (6), -tower 4845: eta = 2.15, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27245 (6), 27309 (7), 27373 (8), 27437 (8), 29869 (5), 29933 (6), 29997 (6), 30061 (4), 31277 (6), -tower 4846: eta = 2.15, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = -60.4797 - sampling = 0, 9 SCIndices: 27246 (6), 27310 (7), 27374 (8), 27438 (8), 29870 (5), 29934 (6), 29998 (6), 30062 (4), 31278 (6), -tower 4847: eta = 2.15, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 368.906 - sampling = 0, 9 SCIndices: 27247 (6), 27311 (7), 27375 (8), 27439 (8), 29871 (5), 29935 (6), 29999 (6), 30063 (4), 31279 (6), -tower 4848: eta = 2.15, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 242.287 - sampling = 0, 9 SCIndices: 27248 (7), 27312 (7), 27376 (8), 27440 (8), 29872 (5), 29936 (6), 30000 (6), 30064 (5), 31280 (6), -tower 4849: eta = 2.15, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 204.216 - sampling = 0, 9 SCIndices: 27249 (7), 27313 (7), 27377 (8), 27441 (8), 29873 (5), 29937 (6), 30001 (6), 30065 (5), 31281 (6), -tower 4850: eta = 2.15, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27250 (7), 27314 (7), 27378 (8), 27442 (8), 29874 (5), 29938 (6), 30002 (6), 30066 (5), 31282 (6), -tower 4851: eta = 2.15, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 261.965 - sampling = 0, 9 SCIndices: 27251 (7), 27315 (7), 27379 (8), 27443 (8), 29875 (5), 29939 (6), 30003 (6), 30067 (5), 31283 (6), -tower 4852: eta = 2.15, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 163.825 - sampling = 0, 9 SCIndices: 27252 (7), 27316 (7), 27380 (8), 27444 (8), 29876 (5), 29940 (6), 30004 (6), 30068 (5), 31284 (6), -tower 4853: eta = 2.15, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 78.5844 - sampling = 0, 9 SCIndices: 27253 (7), 27317 (7), 27381 (8), 27445 (8), 29877 (5), 29941 (6), 30005 (6), 30069 (5), 31285 (6), -tower 4854: eta = 2.15, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27254 (7), 27318 (7), 27382 (8), 27446 (8), 29878 (5), 29942 (6), 30006 (6), 30070 (5), 31286 (6), -tower 4855: eta = 2.15, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 210.77 - sampling = 0, 9 SCIndices: 27255 (7), 27319 (7), 27383 (8), 27447 (8), 29879 (5), 29943 (6), 30007 (6), 30071 (5), 31287 (6), -tower 4856: eta = 2.15, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 225.832 - sampling = 0, 9 SCIndices: 27256 (7), 27320 (7), 27384 (8), 27448 (8), 29880 (5), 29944 (6), 30008 (6), 30072 (5), 31288 (6), -tower 4857: eta = 2.15, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27257 (7), 27321 (7), 27385 (8), 27449 (8), 29881 (5), 29945 (6), 30009 (6), 30073 (5), 31289 (6), -tower 4858: eta = 2.15, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 257.267 - sampling = 0, 9 SCIndices: 27258 (7), 27322 (7), 27386 (8), 27450 (8), 29882 (5), 29946 (6), 30010 (6), 30074 (5), 31290 (6), -tower 4859: eta = 2.15, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27259 (7), 27323 (7), 27387 (8), 27451 (8), 29883 (5), 29947 (6), 30011 (6), 30075 (5), 31291 (6), -tower 4860: eta = 2.15, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 286.917 - sampling = 0, 9 SCIndices: 27260 (7), 27324 (7), 27388 (8), 27452 (8), 29884 (5), 29948 (6), 30012 (6), 30076 (5), 31292 (6), -tower 4861: eta = 2.15, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 230.498 - sampling = 0, 9 SCIndices: 27261 (7), 27325 (7), 27389 (8), 27453 (8), 29885 (5), 29949 (6), 30013 (6), 30077 (5), 31293 (6), -tower 4862: eta = 2.15, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 501.348 - sampling = 0, 9 SCIndices: 27262 (7), 27326 (7), 27390 (8), 27454 (8), 29886 (5), 29950 (6), 30014 (6), 30078 (5), 31294 (6), -tower 4863: eta = 2.15, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27263 (7), 27327 (7), 27391 (8), 27455 (8), 29887 (5), 29951 (6), 30015 (6), 30079 (5), 31295 (6), -tower 4864: eta = 2.25, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27456 (8), 27520 (4), 27584 (5), 27648 (5), 30080 (5), 30144 (5), 30208 (6), 30272 (6), 31296 (6), -tower 4865: eta = 2.25, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 394.127 - sampling = 0, 9 SCIndices: 27457 (8), 27521 (4), 27585 (5), 27649 (5), 30081 (5), 30145 (5), 30209 (6), 30273 (6), 31297 (6), -tower 4866: eta = 2.25, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 73.3595 - sampling = 0, 9 SCIndices: 27458 (8), 27522 (4), 27586 (5), 27650 (5), 30082 (5), 30146 (5), 30210 (6), 30274 (6), 31298 (6), -tower 4867: eta = 2.25, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 85.2937 - sampling = 0, 9 SCIndices: 27459 (8), 27523 (4), 27587 (5), 27651 (5), 30083 (5), 30147 (5), 30211 (6), 30275 (6), 31299 (6), -tower 4868: eta = 2.25, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 10.9922 - sampling = 0, 9 SCIndices: 27460 (8), 27524 (4), 27588 (5), 27652 (5), 30084 (5), 30148 (5), 30212 (6), 30276 (6), 31300 (6), -tower 4869: eta = 2.25, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 148.933 - sampling = 0, 9 SCIndices: 27461 (8), 27525 (4), 27589 (5), 27653 (5), 30085 (5), 30149 (5), 30213 (6), 30277 (6), 31301 (6), -tower 4870: eta = 2.25, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 276.864 - sampling = 0, 9 SCIndices: 27462 (8), 27526 (4), 27590 (5), 27654 (5), 30086 (5), 30150 (5), 30214 (6), 30278 (6), 31302 (6), -tower 4871: eta = 2.25, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 516.851 - sampling = 0, 9 SCIndices: 27463 (8), 27527 (4), 27591 (5), 27655 (5), 30087 (5), 30151 (5), 30215 (6), 30279 (6), 31303 (6), -tower 4872: eta = 2.25, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 447.482 - sampling = 0, 9 SCIndices: 27464 (8), 27528 (5), 27592 (5), 27656 (5), 30088 (5), 30152 (5), 30216 (6), 30280 (6), 31304 (6), -tower 4873: eta = 2.25, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 598.201 - sampling = 0, 9 SCIndices: 27465 (8), 27529 (5), 27593 (5), 27657 (5), 30089 (5), 30153 (5), 30217 (6), 30281 (6), 31305 (6), -tower 4874: eta = 2.25, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = -55.36 - sampling = 0, 9 SCIndices: 27466 (8), 27530 (5), 27594 (5), 27658 (5), 30090 (5), 30154 (5), 30218 (6), 30282 (6), 31306 (6), -tower 4875: eta = 2.25, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 727.266 - sampling = 0, 9 SCIndices: 27467 (8), 27531 (5), 27595 (5), 27659 (5), 30091 (5), 30155 (5), 30219 (6), 30283 (6), 31307 (6), -tower 4876: eta = 2.25, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 329.895 - sampling = 0, 9 SCIndices: 27468 (8), 27532 (5), 27596 (5), 27660 (5), 30092 (5), 30156 (5), 30220 (6), 30284 (6), 31308 (6), -tower 4877: eta = 2.25, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 76.1366 - sampling = 0, 9 SCIndices: 27469 (8), 27533 (5), 27597 (5), 27661 (5), 30093 (5), 30157 (5), 30221 (6), 30285 (6), 31309 (6), -tower 4878: eta = 2.25, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 70.8343 - sampling = 0, 9 SCIndices: 27470 (8), 27534 (5), 27598 (5), 27662 (5), 30094 (5), 30158 (5), 30222 (6), 30286 (6), 31310 (6), -tower 4879: eta = 2.25, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 38.9605 - sampling = 0, 9 SCIndices: 27471 (8), 27535 (5), 27599 (5), 27663 (5), 30095 (5), 30159 (5), 30223 (6), 30287 (6), 31311 (6), -tower 4880: eta = 2.25, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 155.667 - sampling = 0, 9 SCIndices: 27472 (8), 27536 (5), 27600 (5), 27664 (5), 30096 (5), 30160 (5), 30224 (6), 30288 (6), 31312 (7), -tower 4881: eta = 2.25, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27473 (8), 27537 (5), 27601 (5), 27665 (5), 30097 (5), 30161 (5), 30225 (6), 30289 (6), 31313 (7), -tower 4882: eta = 2.25, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 231.667 - sampling = 0, 9 SCIndices: 27474 (8), 27538 (5), 27602 (5), 27666 (5), 30098 (5), 30162 (5), 30226 (6), 30290 (6), 31314 (7), -tower 4883: eta = 2.25, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 154.253 - sampling = 0, 9 SCIndices: 27475 (8), 27539 (5), 27603 (5), 27667 (5), 30099 (5), 30163 (5), 30227 (6), 30291 (6), 31315 (7), -tower 4884: eta = 2.25, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 310.469 - sampling = 0, 9 SCIndices: 27476 (8), 27540 (5), 27604 (5), 27668 (5), 30100 (5), 30164 (5), 30228 (6), 30292 (6), 31316 (7), -tower 4885: eta = 2.25, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 362.449 - sampling = 0, 9 SCIndices: 27477 (8), 27541 (5), 27605 (5), 27669 (5), 30101 (5), 30165 (5), 30229 (6), 30293 (6), 31317 (7), -tower 4886: eta = 2.25, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 218.813 - sampling = 0, 9 SCIndices: 27478 (8), 27542 (5), 27606 (5), 27670 (5), 30102 (5), 30166 (5), 30230 (6), 30294 (6), 31318 (7), -tower 4887: eta = 2.25, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 37.5993 - sampling = 0, 9 SCIndices: 27479 (8), 27543 (5), 27607 (5), 27671 (5), 30103 (5), 30167 (5), 30231 (6), 30295 (6), 31319 (7), -tower 4888: eta = 2.25, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = -86.4763 - sampling = 0, 9 SCIndices: 27480 (8), 27544 (5), 27608 (5), 27672 (6), 30104 (5), 30168 (5), 30232 (6), 30296 (6), 31320 (7), -tower 4889: eta = 2.25, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 725.313 - sampling = 0, 9 SCIndices: 27481 (8), 27545 (5), 27609 (5), 27673 (6), 30105 (5), 30169 (5), 30233 (6), 30297 (6), 31321 (7), -tower 4890: eta = 2.25, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 51.0935 - sampling = 0, 9 SCIndices: 27482 (8), 27546 (5), 27610 (5), 27674 (6), 30106 (5), 30170 (5), 30234 (6), 30298 (6), 31322 (7), -tower 4891: eta = 2.25, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = -11.1137 - sampling = 0, 9 SCIndices: 27483 (8), 27547 (5), 27611 (5), 27675 (6), 30107 (5), 30171 (5), 30235 (6), 30299 (6), 31323 (7), -tower 4892: eta = 2.25, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 19.647 - sampling = 0, 9 SCIndices: 27484 (8), 27548 (5), 27612 (5), 27676 (6), 30108 (5), 30172 (5), 30236 (6), 30300 (6), 31324 (7), -tower 4893: eta = 2.25, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 24.3234 - sampling = 0, 9 SCIndices: 27485 (8), 27549 (5), 27613 (5), 27677 (6), 30109 (5), 30173 (5), 30237 (6), 30301 (6), 31325 (7), -tower 4894: eta = 2.25, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27486 (8), 27550 (5), 27614 (5), 27678 (6), 30110 (5), 30174 (5), 30238 (6), 30302 (6), 31326 (7), -tower 4895: eta = 2.25, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 73.7065 - sampling = 0, 9 SCIndices: 27487 (8), 27551 (5), 27615 (5), 27679 (6), 30111 (5), 30175 (5), 30239 (6), 30303 (6), 31327 (7), -tower 4896: eta = 2.25, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 37.5841 - sampling = 0, 9 SCIndices: 27488 (8), 27552 (5), 27616 (5), 27680 (6), 30112 (5), 30176 (5), 30240 (6), 30304 (6), 31328 (6), -tower 4897: eta = 2.25, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 214.809 - sampling = 0, 9 SCIndices: 27489 (8), 27553 (5), 27617 (5), 27681 (6), 30113 (5), 30177 (5), 30241 (6), 30305 (6), 31329 (6), -tower 4898: eta = 2.25, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27490 (8), 27554 (5), 27618 (5), 27682 (6), 30114 (5), 30178 (5), 30242 (6), 30306 (6), 31330 (6), -tower 4899: eta = 2.25, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 73.4861 - sampling = 0, 9 SCIndices: 27491 (8), 27555 (5), 27619 (5), 27683 (6), 30115 (5), 30179 (5), 30243 (6), 30307 (6), 31331 (6), -tower 4900: eta = 2.25, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 76.0373 - sampling = 0, 9 SCIndices: 27492 (8), 27556 (5), 27620 (5), 27684 (6), 30116 (5), 30180 (5), 30244 (6), 30308 (6), 31332 (6), -tower 4901: eta = 2.25, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 173.309 - sampling = 0, 9 SCIndices: 27493 (8), 27557 (5), 27621 (5), 27685 (6), 30117 (5), 30181 (5), 30245 (6), 30309 (6), 31333 (6), -tower 4902: eta = 2.25, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27494 (8), 27558 (5), 27622 (5), 27686 (6), 30118 (5), 30182 (5), 30246 (6), 30310 (6), 31334 (6), -tower 4903: eta = 2.25, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = -103.87 - sampling = 0, 9 SCIndices: 27495 (8), 27559 (5), 27623 (5), 27687 (6), 30119 (5), 30183 (5), 30247 (6), 30311 (6), 31335 (6), -tower 4904: eta = 2.25, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = -10.7932 - sampling = 0, 9 SCIndices: 27496 (8), 27560 (5), 27624 (5), 27688 (6), 30120 (5), 30184 (5), 30248 (6), 30312 (6), 31336 (6), -tower 4905: eta = 2.25, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 341.69 - sampling = 0, 9 SCIndices: 27497 (8), 27561 (5), 27625 (5), 27689 (6), 30121 (5), 30185 (5), 30249 (6), 30313 (6), 31337 (6), -tower 4906: eta = 2.25, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 73.2408 - sampling = 0, 9 SCIndices: 27498 (8), 27562 (5), 27626 (5), 27690 (6), 30122 (5), 30186 (5), 30250 (6), 30314 (6), 31338 (6), -tower 4907: eta = 2.25, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 231.486 - sampling = 0, 9 SCIndices: 27499 (8), 27563 (5), 27627 (5), 27691 (6), 30123 (5), 30187 (5), 30251 (6), 30315 (6), 31339 (6), -tower 4908: eta = 2.25, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 526.504 - sampling = 0, 9 SCIndices: 27500 (8), 27564 (5), 27628 (5), 27692 (6), 30124 (5), 30188 (5), 30252 (6), 30316 (6), 31340 (6), -tower 4909: eta = 2.25, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 336.443 - sampling = 0, 9 SCIndices: 27501 (8), 27565 (5), 27629 (5), 27693 (6), 30125 (5), 30189 (5), 30253 (6), 30317 (6), 31341 (6), -tower 4910: eta = 2.25, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 125.357 - sampling = 0, 9 SCIndices: 27502 (8), 27566 (5), 27630 (5), 27694 (6), 30126 (5), 30190 (5), 30254 (6), 30318 (6), 31342 (6), -tower 4911: eta = 2.25, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 239.036 - sampling = 0, 9 SCIndices: 27503 (8), 27567 (5), 27631 (5), 27695 (6), 30127 (5), 30191 (5), 30255 (6), 30319 (6), 31343 (6), -tower 4912: eta = 2.25, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 147.71 - sampling = 0, 9 SCIndices: 27504 (8), 27568 (5), 27632 (5), 27696 (6), 30128 (5), 30192 (5), 30256 (6), 30320 (6), 31344 (6), -tower 4913: eta = 2.25, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 180.025 - sampling = 0, 9 SCIndices: 27505 (8), 27569 (5), 27633 (5), 27697 (6), 30129 (5), 30193 (5), 30257 (6), 30321 (6), 31345 (6), -tower 4914: eta = 2.25, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 131.078 - sampling = 0, 9 SCIndices: 27506 (8), 27570 (5), 27634 (5), 27698 (6), 30130 (5), 30194 (5), 30258 (6), 30322 (6), 31346 (6), -tower 4915: eta = 2.25, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 71.3737 - sampling = 0, 9 SCIndices: 27507 (8), 27571 (5), 27635 (5), 27699 (6), 30131 (5), 30195 (5), 30259 (6), 30323 (6), 31347 (6), -tower 4916: eta = 2.25, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 721.439 - sampling = 0, 9 SCIndices: 27508 (8), 27572 (5), 27636 (5), 27700 (6), 30132 (5), 30196 (5), 30260 (6), 30324 (6), 31348 (6), -tower 4917: eta = 2.25, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27509 (8), 27573 (5), 27637 (5), 27701 (6), 30133 (5), 30197 (5), 30261 (6), 30325 (6), 31349 (6), -tower 4918: eta = 2.25, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = -11.5317 - sampling = 0, 9 SCIndices: 27510 (8), 27574 (5), 27638 (5), 27702 (6), 30134 (5), 30198 (5), 30262 (6), 30326 (6), 31350 (6), -tower 4919: eta = 2.25, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 276.821 - sampling = 0, 9 SCIndices: 27511 (8), 27575 (5), 27639 (5), 27703 (6), 30135 (5), 30199 (5), 30263 (6), 30327 (6), 31351 (6), -tower 4920: eta = 2.25, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27512 (8), 27576 (5), 27640 (5), 27704 (6), 30136 (5), 30200 (5), 30264 (6), 30328 (6), 31352 (6), -tower 4921: eta = 2.25, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 165.44 - sampling = 0, 9 SCIndices: 27513 (8), 27577 (5), 27641 (5), 27705 (6), 30137 (5), 30201 (5), 30265 (6), 30329 (6), 31353 (6), -tower 4922: eta = 2.25, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27514 (8), 27578 (5), 27642 (5), 27706 (6), 30138 (5), 30202 (5), 30266 (6), 30330 (6), 31354 (6), -tower 4923: eta = 2.25, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27515 (8), 27579 (5), 27643 (5), 27707 (6), 30139 (5), 30203 (5), 30267 (6), 30331 (6), 31355 (6), -tower 4924: eta = 2.25, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 92.1906 - sampling = 0, 9 SCIndices: 27516 (8), 27580 (5), 27644 (5), 27708 (6), 30140 (5), 30204 (5), 30268 (6), 30332 (6), 31356 (6), -tower 4925: eta = 2.25, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 186.737 - sampling = 0, 9 SCIndices: 27517 (8), 27581 (5), 27645 (5), 27709 (6), 30141 (5), 30205 (5), 30269 (6), 30333 (6), 31357 (6), -tower 4926: eta = 2.25, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 522.378 - sampling = 0, 9 SCIndices: 27518 (8), 27582 (5), 27646 (5), 27710 (6), 30142 (5), 30206 (5), 30270 (6), 30334 (6), 31358 (6), -tower 4927: eta = 2.25, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 194.846 - sampling = 0, 9 SCIndices: 27519 (8), 27583 (5), 27647 (5), 27711 (6), 30143 (5), 30207 (5), 30271 (6), 30335 (6), 31359 (6), -tower 4928: eta = 2.35, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27712 (6), 27776 (6), 27840 (5), 27904 (5), 30336 (7), 30400 (5), 30464 (5), 30528 (6), 31360 (7), -tower 4929: eta = 2.35, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 306.02 - sampling = 0, 9 SCIndices: 27713 (6), 27777 (6), 27841 (5), 27905 (5), 30337 (7), 30401 (5), 30465 (5), 30529 (6), 31361 (7), -tower 4930: eta = 2.35, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = -22.1199 - sampling = 0, 9 SCIndices: 27714 (6), 27778 (6), 27842 (5), 27906 (5), 30338 (7), 30402 (5), 30466 (5), 30530 (6), 31362 (7), -tower 4931: eta = 2.35, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 49.5453 - sampling = 0, 9 SCIndices: 27715 (6), 27779 (6), 27843 (5), 27907 (5), 30339 (7), 30403 (5), 30467 (5), 30531 (6), 31363 (7), -tower 4932: eta = 2.35, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 530.262 - sampling = 0, 9 SCIndices: 27716 (6), 27780 (6), 27844 (5), 27908 (5), 30340 (7), 30404 (5), 30468 (5), 30532 (6), 31364 (7), -tower 4933: eta = 2.35, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27717 (6), 27781 (6), 27845 (5), 27909 (5), 30341 (7), 30405 (5), 30469 (5), 30533 (6), 31365 (7), -tower 4934: eta = 2.35, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = -40.2304 - sampling = 0, 9 SCIndices: 27718 (6), 27782 (6), 27846 (5), 27910 (5), 30342 (7), 30406 (5), 30470 (5), 30534 (6), 31366 (7), -tower 4935: eta = 2.35, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 72.5145 - sampling = 0, 9 SCIndices: 27719 (6), 27783 (6), 27847 (5), 27911 (5), 30343 (7), 30407 (5), 30471 (5), 30535 (6), 31367 (7), -tower 4936: eta = 2.35, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 15.5499 - sampling = 0, 9 SCIndices: 27720 (6), 27784 (6), 27848 (5), 27912 (5), 30344 (7), 30408 (5), 30472 (5), 30536 (6), 31368 (7), -tower 4937: eta = 2.35, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 593.146 - sampling = 0, 9 SCIndices: 27721 (6), 27785 (6), 27849 (5), 27913 (5), 30345 (7), 30409 (5), 30473 (5), 30537 (6), 31369 (7), -tower 4938: eta = 2.35, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 841.451 - sampling = 0, 9 SCIndices: 27722 (6), 27786 (6), 27850 (5), 27914 (5), 30346 (7), 30410 (5), 30474 (5), 30538 (6), 31370 (7), -tower 4939: eta = 2.35, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 146.737 - sampling = 0, 9 SCIndices: 27723 (6), 27787 (6), 27851 (5), 27915 (5), 30347 (7), 30411 (5), 30475 (5), 30539 (6), 31371 (7), -tower 4940: eta = 2.35, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 394.361 - sampling = 0, 9 SCIndices: 27724 (6), 27788 (6), 27852 (5), 27916 (5), 30348 (7), 30412 (5), 30476 (5), 30540 (6), 31372 (7), -tower 4941: eta = 2.35, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 69.8835 - sampling = 0, 9 SCIndices: 27725 (6), 27789 (6), 27853 (5), 27917 (5), 30349 (7), 30413 (5), 30477 (5), 30541 (6), 31373 (7), -tower 4942: eta = 2.35, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 311.394 - sampling = 0, 9 SCIndices: 27726 (6), 27790 (6), 27854 (5), 27918 (5), 30350 (7), 30414 (5), 30478 (5), 30542 (6), 31374 (7), -tower 4943: eta = 2.35, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 109.21 - sampling = 0, 9 SCIndices: 27727 (6), 27791 (6), 27855 (5), 27919 (5), 30351 (7), 30415 (5), 30479 (5), 30543 (6), 31375 (7), -tower 4944: eta = 2.35, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 86.9885 - sampling = 0, 9 SCIndices: 27728 (6), 27792 (6), 27856 (5), 27920 (5), 30352 (7), 30416 (5), 30480 (5), 30544 (6), 31376 (7), -tower 4945: eta = 2.35, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 64.8036 - sampling = 0, 9 SCIndices: 27729 (6), 27793 (6), 27857 (5), 27921 (5), 30353 (7), 30417 (5), 30481 (5), 30545 (6), 31377 (7), -tower 4946: eta = 2.35, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = -104.326 - sampling = 0, 9 SCIndices: 27730 (6), 27794 (6), 27858 (5), 27922 (5), 30354 (7), 30418 (5), 30482 (5), 30546 (6), 31378 (7), -tower 4947: eta = 2.35, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 91.3696 - sampling = 0, 9 SCIndices: 27731 (6), 27795 (6), 27859 (5), 27923 (5), 30355 (7), 30419 (5), 30483 (5), 30547 (6), 31379 (7), -tower 4948: eta = 2.35, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 30.6516 - sampling = 0, 9 SCIndices: 27732 (6), 27796 (6), 27860 (5), 27924 (5), 30356 (7), 30420 (5), 30484 (5), 30548 (6), 31380 (7), -tower 4949: eta = 2.35, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 192.629 - sampling = 0, 9 SCIndices: 27733 (6), 27797 (6), 27861 (5), 27925 (5), 30357 (7), 30421 (5), 30485 (5), 30549 (6), 31381 (7), -tower 4950: eta = 2.35, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27734 (6), 27798 (6), 27862 (5), 27926 (5), 30358 (7), 30422 (5), 30486 (5), 30550 (6), 31382 (7), -tower 4951: eta = 2.35, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 433.029 - sampling = 0, 9 SCIndices: 27735 (6), 27799 (6), 27863 (5), 27927 (5), 30359 (7), 30423 (5), 30487 (5), 30551 (6), 31383 (7), -tower 4952: eta = 2.35, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27736 (6), 27800 (7), 27864 (5), 27928 (5), 30360 (7), 30424 (5), 30488 (5), 30552 (6), 31384 (7), -tower 4953: eta = 2.35, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 125.136 - sampling = 0, 9 SCIndices: 27737 (6), 27801 (7), 27865 (5), 27929 (5), 30361 (7), 30425 (5), 30489 (5), 30553 (6), 31385 (7), -tower 4954: eta = 2.35, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 146.498 - sampling = 0, 9 SCIndices: 27738 (6), 27802 (7), 27866 (5), 27930 (5), 30362 (7), 30426 (5), 30490 (5), 30554 (6), 31386 (7), -tower 4955: eta = 2.35, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 120.03 - sampling = 0, 9 SCIndices: 27739 (6), 27803 (7), 27867 (5), 27931 (5), 30363 (7), 30427 (5), 30491 (5), 30555 (6), 31387 (7), -tower 4956: eta = 2.35, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 196.329 - sampling = 0, 9 SCIndices: 27740 (6), 27804 (7), 27868 (5), 27932 (5), 30364 (7), 30428 (5), 30492 (5), 30556 (6), 31388 (7), -tower 4957: eta = 2.35, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27741 (6), 27805 (7), 27869 (5), 27933 (5), 30365 (7), 30429 (5), 30493 (5), 30557 (6), 31389 (7), -tower 4958: eta = 2.35, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 317.117 - sampling = 0, 9 SCIndices: 27742 (6), 27806 (7), 27870 (5), 27934 (5), 30366 (7), 30430 (5), 30494 (5), 30558 (6), 31390 (7), -tower 4959: eta = 2.35, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 19.2221 - sampling = 0, 9 SCIndices: 27743 (6), 27807 (7), 27871 (5), 27935 (5), 30367 (7), 30431 (5), 30495 (5), 30559 (6), 31391 (7), -tower 4960: eta = 2.35, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27744 (6), 27808 (7), 27872 (5), 27936 (5), 30368 (4), 30432 (5), 30496 (5), 30560 (6), 31392 (8), -tower 4961: eta = 2.35, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27745 (6), 27809 (7), 27873 (5), 27937 (5), 30369 (4), 30433 (5), 30497 (5), 30561 (6), 31393 (8), -tower 4962: eta = 2.35, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 24.5818 - sampling = 0, 9 SCIndices: 27746 (6), 27810 (7), 27874 (5), 27938 (5), 30370 (4), 30434 (5), 30498 (5), 30562 (6), 31394 (8), -tower 4963: eta = 2.35, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 82.4847 - sampling = 0, 9 SCIndices: 27747 (6), 27811 (7), 27875 (5), 27939 (5), 30371 (4), 30435 (5), 30499 (5), 30563 (6), 31395 (8), -tower 4964: eta = 2.35, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 146.489 - sampling = 0, 9 SCIndices: 27748 (6), 27812 (7), 27876 (5), 27940 (5), 30372 (4), 30436 (5), 30500 (5), 30564 (6), 31396 (8), -tower 4965: eta = 2.35, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = -35.812 - sampling = 0, 9 SCIndices: 27749 (6), 27813 (7), 27877 (5), 27941 (5), 30373 (4), 30437 (5), 30501 (5), 30565 (6), 31397 (8), -tower 4966: eta = 2.35, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 92.7308 - sampling = 0, 9 SCIndices: 27750 (6), 27814 (7), 27878 (5), 27942 (5), 30374 (4), 30438 (5), 30502 (5), 30566 (6), 31398 (8), -tower 4967: eta = 2.35, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27751 (6), 27815 (7), 27879 (5), 27943 (5), 30375 (4), 30439 (5), 30503 (5), 30567 (6), 31399 (8), -tower 4968: eta = 2.35, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27752 (6), 27816 (7), 27880 (5), 27944 (5), 30376 (5), 30440 (5), 30504 (5), 30568 (6), 31400 (8), -tower 4969: eta = 2.35, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 45.1615 - sampling = 0, 9 SCIndices: 27753 (6), 27817 (7), 27881 (5), 27945 (5), 30377 (5), 30441 (5), 30505 (5), 30569 (6), 31401 (8), -tower 4970: eta = 2.35, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 193.306 - sampling = 0, 9 SCIndices: 27754 (6), 27818 (7), 27882 (5), 27946 (5), 30378 (5), 30442 (5), 30506 (5), 30570 (6), 31402 (8), -tower 4971: eta = 2.35, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 295.056 - sampling = 0, 9 SCIndices: 27755 (6), 27819 (7), 27883 (5), 27947 (5), 30379 (5), 30443 (5), 30507 (5), 30571 (6), 31403 (8), -tower 4972: eta = 2.35, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 240.937 - sampling = 0, 9 SCIndices: 27756 (6), 27820 (7), 27884 (5), 27948 (5), 30380 (5), 30444 (5), 30508 (5), 30572 (6), 31404 (8), -tower 4973: eta = 2.35, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 498.363 - sampling = 0, 9 SCIndices: 27757 (6), 27821 (7), 27885 (5), 27949 (5), 30381 (5), 30445 (5), 30509 (5), 30573 (6), 31405 (8), -tower 4974: eta = 2.35, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 209.595 - sampling = 0, 9 SCIndices: 27758 (6), 27822 (7), 27886 (5), 27950 (5), 30382 (5), 30446 (5), 30510 (5), 30574 (6), 31406 (8), -tower 4975: eta = 2.35, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = -91.3246 - sampling = 0, 9 SCIndices: 27759 (6), 27823 (7), 27887 (5), 27951 (5), 30383 (5), 30447 (5), 30511 (5), 30575 (6), 31407 (8), -tower 4976: eta = 2.35, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 446.765 - sampling = 0, 9 SCIndices: 27760 (6), 27824 (7), 27888 (5), 27952 (5), 30384 (5), 30448 (5), 30512 (5), 30576 (6), 31408 (8), -tower 4977: eta = 2.35, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27761 (6), 27825 (7), 27889 (5), 27953 (5), 30385 (5), 30449 (5), 30513 (5), 30577 (6), 31409 (8), -tower 4978: eta = 2.35, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 82.2161 - sampling = 0, 9 SCIndices: 27762 (6), 27826 (7), 27890 (5), 27954 (5), 30386 (5), 30450 (5), 30514 (5), 30578 (6), 31410 (8), -tower 4979: eta = 2.35, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = -21.9087 - sampling = 0, 9 SCIndices: 27763 (6), 27827 (7), 27891 (5), 27955 (5), 30387 (5), 30451 (5), 30515 (5), 30579 (6), 31411 (8), -tower 4980: eta = 2.35, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27764 (6), 27828 (7), 27892 (5), 27956 (5), 30388 (5), 30452 (5), 30516 (5), 30580 (6), 31412 (8), -tower 4981: eta = 2.35, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27765 (6), 27829 (7), 27893 (5), 27957 (5), 30389 (5), 30453 (5), 30517 (5), 30581 (6), 31413 (8), -tower 4982: eta = 2.35, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27766 (6), 27830 (7), 27894 (5), 27958 (5), 30390 (5), 30454 (5), 30518 (5), 30582 (6), 31414 (8), -tower 4983: eta = 2.35, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = -166.301 - sampling = 0, 9 SCIndices: 27767 (6), 27831 (7), 27895 (5), 27959 (5), 30391 (5), 30455 (5), 30519 (5), 30583 (6), 31415 (8), -tower 4984: eta = 2.35, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27768 (6), 27832 (4), 27896 (5), 27960 (5), 30392 (5), 30456 (5), 30520 (6), 30584 (6), 31416 (8), -tower 4985: eta = 2.35, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 146.806 - sampling = 0, 9 SCIndices: 27769 (6), 27833 (4), 27897 (5), 27961 (5), 30393 (5), 30457 (5), 30521 (6), 30585 (6), 31417 (8), -tower 4986: eta = 2.35, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 113.613 - sampling = 0, 9 SCIndices: 27770 (6), 27834 (4), 27898 (5), 27962 (5), 30394 (5), 30458 (5), 30522 (6), 30586 (6), 31418 (8), -tower 4987: eta = 2.35, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 91.4402 - sampling = 0, 9 SCIndices: 27771 (6), 27835 (4), 27899 (5), 27963 (5), 30395 (5), 30459 (5), 30523 (6), 30587 (6), 31419 (8), -tower 4988: eta = 2.35, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 9 SCIndices: 27772 (6), 27836 (4), 27900 (5), 27964 (5), 30396 (5), 30460 (5), 30524 (6), 30588 (6), 31420 (8), -tower 4989: eta = 2.35, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 120.311 - sampling = 0, 9 SCIndices: 27773 (6), 27837 (4), 27901 (5), 27965 (5), 30397 (5), 30461 (5), 30525 (6), 30589 (6), 31421 (8), -tower 4990: eta = 2.35, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 313.621 - sampling = 0, 9 SCIndices: 27774 (6), 27838 (4), 27902 (5), 27966 (5), 30398 (5), 30462 (5), 30526 (6), 30590 (6), 31422 (8), -tower 4991: eta = 2.35, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 40.2274 - sampling = 0, 9 SCIndices: 27775 (6), 27839 (4), 27903 (5), 27967 (5), 30399 (5), 30463 (5), 30527 (6), 30591 (6), 31423 (8), -tower 4992: eta = 2.45, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 27968 (5), 30592 (6), 30656 (7), 30720 (5), 30784 (5), 31424 (8), -tower 4993: eta = 2.45, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 27969 (5), 30593 (6), 30657 (7), 30721 (5), 30785 (5), 31425 (8), -tower 4994: eta = 2.45, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 688.878 - sampling = 0, 6 SCIndices: 27970 (5), 30594 (6), 30658 (7), 30722 (5), 30786 (5), 31426 (8), -tower 4995: eta = 2.45, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 283.197 - sampling = 0, 6 SCIndices: 27971 (5), 30595 (6), 30659 (7), 30723 (5), 30787 (5), 31427 (8), -tower 4996: eta = 2.45, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 182.435 - sampling = 0, 6 SCIndices: 27972 (5), 30596 (6), 30660 (7), 30724 (5), 30788 (5), 31428 (8), -tower 4997: eta = 2.45, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 156.675 - sampling = 0, 6 SCIndices: 27973 (5), 30597 (6), 30661 (7), 30725 (5), 30789 (5), 31429 (8), -tower 4998: eta = 2.45, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 224.63 - sampling = 0, 6 SCIndices: 27974 (5), 30598 (6), 30662 (7), 30726 (5), 30790 (5), 31430 (8), -tower 4999: eta = 2.45, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 88.0225 - sampling = 0, 6 SCIndices: 27975 (5), 30599 (6), 30663 (7), 30727 (5), 30791 (5), 31431 (8), -tower 5000: eta = 2.45, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = -48.4534 - sampling = 0, 6 SCIndices: 27976 (5), 30600 (6), 30664 (7), 30728 (5), 30792 (5), 31432 (8), -tower 5001: eta = 2.45, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 117.2 - sampling = 0, 6 SCIndices: 27977 (5), 30601 (6), 30665 (7), 30729 (5), 30793 (5), 31433 (8), -tower 5002: eta = 2.45, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 13.5821 - sampling = 0, 6 SCIndices: 27978 (5), 30602 (6), 30666 (7), 30730 (5), 30794 (5), 31434 (8), -tower 5003: eta = 2.45, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 350.556 - sampling = 0, 6 SCIndices: 27979 (5), 30603 (6), 30667 (7), 30731 (5), 30795 (5), 31435 (8), -tower 5004: eta = 2.45, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 182.293 - sampling = 0, 6 SCIndices: 27980 (5), 30604 (6), 30668 (7), 30732 (5), 30796 (5), 31436 (8), -tower 5005: eta = 2.45, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 214.622 - sampling = 0, 6 SCIndices: 27981 (5), 30605 (6), 30669 (7), 30733 (5), 30797 (5), 31437 (8), -tower 5006: eta = 2.45, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 317.61 - sampling = 0, 6 SCIndices: 27982 (5), 30606 (6), 30670 (7), 30734 (5), 30798 (5), 31438 (8), -tower 5007: eta = 2.45, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 27983 (5), 30607 (6), 30671 (7), 30735 (5), 30799 (5), 31439 (8), -tower 5008: eta = 2.45, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 27984 (6), 30608 (6), 30672 (7), 30736 (5), 30800 (5), 31440 (8), -tower 5009: eta = 2.45, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 27985 (6), 30609 (6), 30673 (7), 30737 (5), 30801 (5), 31441 (8), -tower 5010: eta = 2.45, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 27986 (6), 30610 (6), 30674 (7), 30738 (5), 30802 (5), 31442 (8), -tower 5011: eta = 2.45, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 27987 (6), 30611 (6), 30675 (7), 30739 (5), 30803 (5), 31443 (8), -tower 5012: eta = 2.45, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 383.483 - sampling = 0, 6 SCIndices: 27988 (6), 30612 (6), 30676 (7), 30740 (5), 30804 (5), 31444 (8), -tower 5013: eta = 2.45, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 27989 (6), 30613 (6), 30677 (7), 30741 (5), 30805 (5), 31445 (8), -tower 5014: eta = 2.45, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 27990 (6), 30614 (6), 30678 (7), 30742 (5), 30806 (5), 31446 (8), -tower 5015: eta = 2.45, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 289.192 - sampling = 0, 6 SCIndices: 27991 (6), 30615 (6), 30679 (7), 30743 (5), 30807 (5), 31447 (8), -tower 5016: eta = 2.45, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 27992 (6), 30616 (6), 30680 (4), 30744 (5), 30808 (5), 31448 (8), -tower 5017: eta = 2.45, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 27993 (6), 30617 (6), 30681 (4), 30745 (5), 30809 (5), 31449 (8), -tower 5018: eta = 2.45, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 27994 (6), 30618 (6), 30682 (4), 30746 (5), 30810 (5), 31450 (8), -tower 5019: eta = 2.45, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 27995 (6), 30619 (6), 30683 (4), 30747 (5), 30811 (5), 31451 (8), -tower 5020: eta = 2.45, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 98.8264 - sampling = 0, 6 SCIndices: 27996 (6), 30620 (6), 30684 (4), 30748 (5), 30812 (5), 31452 (8), -tower 5021: eta = 2.45, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 27997 (6), 30621 (6), 30685 (4), 30749 (5), 30813 (5), 31453 (8), -tower 5022: eta = 2.45, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 27998 (6), 30622 (6), 30686 (4), 30750 (5), 30814 (5), 31454 (8), -tower 5023: eta = 2.45, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 27999 (6), 30623 (6), 30687 (4), 30751 (5), 30815 (5), 31455 (8), -tower 5024: eta = 2.45, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 28000 (6), 30624 (6), 30688 (5), 30752 (5), 30816 (5), 31456 (8), -tower 5025: eta = 2.45, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 253.872 - sampling = 0, 6 SCIndices: 28001 (6), 30625 (6), 30689 (5), 30753 (5), 30817 (5), 31457 (8), -tower 5026: eta = 2.45, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 109.121 - sampling = 0, 6 SCIndices: 28002 (6), 30626 (6), 30690 (5), 30754 (5), 30818 (5), 31458 (8), -tower 5027: eta = 2.45, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 614.99 - sampling = 0, 6 SCIndices: 28003 (6), 30627 (6), 30691 (5), 30755 (5), 30819 (5), 31459 (8), -tower 5028: eta = 2.45, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = -82.1812 - sampling = 0, 6 SCIndices: 28004 (6), 30628 (6), 30692 (5), 30756 (5), 30820 (5), 31460 (8), -tower 5029: eta = 2.45, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 28005 (6), 30629 (6), 30693 (5), 30757 (5), 30821 (5), 31461 (8), -tower 5030: eta = 2.45, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 28006 (6), 30630 (6), 30694 (5), 30758 (5), 30822 (5), 31462 (8), -tower 5031: eta = 2.45, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 28007 (6), 30631 (6), 30695 (5), 30759 (5), 30823 (5), 31463 (8), -tower 5032: eta = 2.45, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 182.037 - sampling = 0, 6 SCIndices: 28008 (6), 30632 (6), 30696 (5), 30760 (5), 30824 (5), 31464 (8), -tower 5033: eta = 2.45, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 28009 (6), 30633 (6), 30697 (5), 30761 (5), 30825 (5), 31465 (8), -tower 5034: eta = 2.45, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 28010 (6), 30634 (6), 30698 (5), 30762 (5), 30826 (5), 31466 (8), -tower 5035: eta = 2.45, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 28011 (6), 30635 (6), 30699 (5), 30763 (5), 30827 (5), 31467 (8), -tower 5036: eta = 2.45, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 135.823 - sampling = 0, 6 SCIndices: 28012 (6), 30636 (6), 30700 (5), 30764 (5), 30828 (5), 31468 (8), -tower 5037: eta = 2.45, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 195.324 - sampling = 0, 6 SCIndices: 28013 (6), 30637 (6), 30701 (5), 30765 (5), 30829 (5), 31469 (8), -tower 5038: eta = 2.45, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 225.179 - sampling = 0, 6 SCIndices: 28014 (6), 30638 (6), 30702 (5), 30766 (5), 30830 (5), 31470 (8), -tower 5039: eta = 2.45, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = -64.9604 - sampling = 0, 6 SCIndices: 28015 (6), 30639 (6), 30703 (5), 30767 (5), 30831 (5), 31471 (8), -tower 5040: eta = 2.45, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 28016 (6), 30640 (6), 30704 (5), 30768 (5), 30832 (6), 31472 (8), -tower 5041: eta = 2.45, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 114.749 - sampling = 0, 6 SCIndices: 28017 (6), 30641 (6), 30705 (5), 30769 (5), 30833 (6), 31473 (8), -tower 5042: eta = 2.45, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = -49.8348 - sampling = 0, 6 SCIndices: 28018 (6), 30642 (6), 30706 (5), 30770 (5), 30834 (6), 31474 (8), -tower 5043: eta = 2.45, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 28019 (6), 30643 (6), 30707 (5), 30771 (5), 30835 (6), 31475 (8), -tower 5044: eta = 2.45, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 201.403 - sampling = 0, 6 SCIndices: 28020 (6), 30644 (6), 30708 (5), 30772 (5), 30836 (6), 31476 (8), -tower 5045: eta = 2.45, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 28021 (6), 30645 (6), 30709 (5), 30773 (5), 30837 (6), 31477 (8), -tower 5046: eta = 2.45, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 28022 (6), 30646 (6), 30710 (5), 30774 (5), 30838 (6), 31478 (8), -tower 5047: eta = 2.45, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 28023 (6), 30647 (6), 30711 (5), 30775 (5), 30839 (6), 31479 (8), -tower 5048: eta = 2.45, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = -36.5334 - sampling = 0, 6 SCIndices: 28024 (6), 30648 (7), 30712 (5), 30776 (5), 30840 (6), 31480 (8), -tower 5049: eta = 2.45, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 28025 (6), 30649 (7), 30713 (5), 30777 (5), 30841 (6), 31481 (8), -tower 5050: eta = 2.45, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 535.836 - sampling = 0, 6 SCIndices: 28026 (6), 30650 (7), 30714 (5), 30778 (5), 30842 (6), 31482 (8), -tower 5051: eta = 2.45, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 28027 (6), 30651 (7), 30715 (5), 30779 (5), 30843 (6), 31483 (8), -tower 5052: eta = 2.45, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 844.406 - sampling = 0, 6 SCIndices: 28028 (6), 30652 (7), 30716 (5), 30780 (5), 30844 (6), 31484 (8), -tower 5053: eta = 2.45, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 28029 (6), 30653 (7), 30717 (5), 30781 (5), 30845 (6), 31485 (8), -tower 5054: eta = 2.45, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 0, 6 SCIndices: 28030 (6), 30654 (7), 30718 (5), 30782 (5), 30846 (6), 31486 (8), -tower 5055: eta = 2.45, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 313.897 - sampling = 0, 6 SCIndices: 28031 (6), 30655 (7), 30719 (5), 30783 (5), 30847 (6), 31487 (8), -tower 5056: eta = 2.6, phi = 0.0981748, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31488 (8), 31616 (5), -tower 5057: eta = 2.6, phi = 0.294524, deta = 0.2, dphi = 0.19635, et = 3014.51 - sampling = 0, 2 SCIndices: 31489 (8), 31617 (5), -tower 5058: eta = 2.6, phi = 0.490874, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31490 (8), 31618 (5), -tower 5059: eta = 2.6, phi = 0.687223, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31491 (8), 31619 (5), -tower 5060: eta = 2.6, phi = 0.883573, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31492 (8), 31620 (5), -tower 5061: eta = 2.6, phi = 1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31493 (8), 31621 (5), -tower 5062: eta = 2.6, phi = 1.27627, deta = 0.2, dphi = 0.19635, et = 1438.81 - sampling = 0, 2 SCIndices: 31494 (8), 31622 (5), -tower 5063: eta = 2.6, phi = 1.47262, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31495 (8), 31623 (5), -tower 5064: eta = 2.6, phi = 1.66897, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31496 (8), 31624 (5), -tower 5065: eta = 2.6, phi = 1.86532, deta = 0.2, dphi = 0.19635, et = 2612.42 - sampling = 0, 2 SCIndices: 31497 (8), 31625 (5), -tower 5066: eta = 2.6, phi = 2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31498 (8), 31626 (5), -tower 5067: eta = 2.6, phi = 2.25802, deta = 0.2, dphi = 0.19635, et = 205.9 - sampling = 0, 2 SCIndices: 31499 (8), 31627 (5), -tower 5068: eta = 2.6, phi = 2.45437, deta = 0.2, dphi = 0.19635, et = 1294.69 - sampling = 0, 2 SCIndices: 31500 (8), 31628 (5), -tower 5069: eta = 2.6, phi = 2.65072, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31501 (8), 31629 (5), -tower 5070: eta = 2.6, phi = 2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31502 (8), 31630 (5), -tower 5071: eta = 2.6, phi = 3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31503 (8), 31631 (5), -tower 5072: eta = 2.6, phi = -3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31504 (8), 31632 (5), -tower 5073: eta = 2.6, phi = -2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31505 (8), 31633 (5), -tower 5074: eta = 2.6, phi = -2.65072, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31506 (8), 31634 (5), -tower 5075: eta = 2.6, phi = -2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31507 (8), 31635 (5), -tower 5076: eta = 2.6, phi = -2.25802, deta = 0.2, dphi = 0.19635, et = 2728.44 - sampling = 0, 2 SCIndices: 31508 (8), 31636 (5), -tower 5077: eta = 2.6, phi = -2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31509 (8), 31637 (5), -tower 5078: eta = 2.6, phi = -1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31510 (8), 31638 (5), -tower 5079: eta = 2.6, phi = -1.66897, deta = 0.2, dphi = 0.19635, et = 2251.17 - sampling = 0, 2 SCIndices: 31511 (8), 31639 (5), -tower 5080: eta = 2.6, phi = -1.47262, deta = 0.2, dphi = 0.19635, et = 152.96 - sampling = 0, 2 SCIndices: 31512 (8), 31640 (5), -tower 5081: eta = 2.6, phi = -1.27627, deta = 0.2, dphi = 0.19635, et = 206.196 - sampling = 0, 2 SCIndices: 31513 (8), 31641 (5), -tower 5082: eta = 2.6, phi = -1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31514 (8), 31642 (5), -tower 5083: eta = 2.6, phi = -0.883573, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31515 (8), 31643 (5), -tower 5084: eta = 2.6, phi = -0.687223, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31516 (8), 31644 (5), -tower 5085: eta = 2.6, phi = -0.490874, deta = 0.2, dphi = 0.19635, et = 2097.3 - sampling = 0, 2 SCIndices: 31517 (8), 31645 (5), -tower 5086: eta = 2.6, phi = -0.294524, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31518 (8), 31646 (5), -tower 5087: eta = 2.6, phi = -0.0981744, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31519 (8), 31647 (5), -tower 5088: eta = 2.8, phi = 0.0981748, deta = 0.2, dphi = 0.19635, et = 40.3101 - sampling = 0, 2 SCIndices: 31520 (8), 31648 (5), -tower 5089: eta = 2.8, phi = 0.294524, deta = 0.2, dphi = 0.19635, et = 2365.19 - sampling = 0, 2 SCIndices: 31521 (8), 31649 (5), -tower 5090: eta = 2.8, phi = 0.490874, deta = 0.2, dphi = 0.19635, et = 1364.3 - sampling = 0, 2 SCIndices: 31522 (8), 31650 (5), -tower 5091: eta = 2.8, phi = 0.687223, deta = 0.2, dphi = 0.19635, et = 2645.16 - sampling = 0, 2 SCIndices: 31523 (8), 31651 (5), -tower 5092: eta = 2.8, phi = 0.883573, deta = 0.2, dphi = 0.19635, et = 1653.74 - sampling = 0, 2 SCIndices: 31524 (8), 31652 (5), -tower 5093: eta = 2.8, phi = 1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31525 (8), 31653 (5), -tower 5094: eta = 2.8, phi = 1.27627, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31526 (8), 31654 (5), -tower 5095: eta = 2.8, phi = 1.47262, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31527 (8), 31655 (5), -tower 5096: eta = 2.8, phi = 1.66897, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31528 (8), 31656 (5), -tower 5097: eta = 2.8, phi = 1.86532, deta = 0.2, dphi = 0.19635, et = 216.279 - sampling = 0, 2 SCIndices: 31529 (8), 31657 (5), -tower 5098: eta = 2.8, phi = 2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31530 (8), 31658 (5), -tower 5099: eta = 2.8, phi = 2.25802, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31531 (8), 31659 (5), -tower 5100: eta = 2.8, phi = 2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31532 (8), 31660 (5), -tower 5101: eta = 2.8, phi = 2.65072, deta = 0.2, dphi = 0.19635, et = 1374.26 - sampling = 0, 2 SCIndices: 31533 (8), 31661 (5), -tower 5102: eta = 2.8, phi = 2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31534 (8), 31662 (5), -tower 5103: eta = 2.8, phi = 3.04342, deta = 0.2, dphi = 0.19635, et = 1478.15 - sampling = 0, 2 SCIndices: 31535 (8), 31663 (5), -tower 5104: eta = 2.8, phi = -3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31536 (8), 31664 (5), -tower 5105: eta = 2.8, phi = -2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31537 (8), 31665 (5), -tower 5106: eta = 2.8, phi = -2.65072, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31538 (8), 31666 (5), -tower 5107: eta = 2.8, phi = -2.45437, deta = 0.2, dphi = 0.19635, et = 1592.05 - sampling = 0, 2 SCIndices: 31539 (8), 31667 (5), -tower 5108: eta = 2.8, phi = -2.25802, deta = 0.2, dphi = 0.19635, et = 51.9406 - sampling = 0, 2 SCIndices: 31540 (8), 31668 (5), -tower 5109: eta = 2.8, phi = -2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31541 (8), 31669 (5), -tower 5110: eta = 2.8, phi = -1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31542 (8), 31670 (5), -tower 5111: eta = 2.8, phi = -1.66897, deta = 0.2, dphi = 0.19635, et = 2929.05 - sampling = 0, 2 SCIndices: 31543 (8), 31671 (5), -tower 5112: eta = 2.8, phi = -1.47262, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31544 (8), 31672 (5), -tower 5113: eta = 2.8, phi = -1.27627, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31545 (8), 31673 (5), -tower 5114: eta = 2.8, phi = -1.07992, deta = 0.2, dphi = 0.19635, et = 973.913 - sampling = 0, 2 SCIndices: 31546 (8), 31674 (5), -tower 5115: eta = 2.8, phi = -0.883573, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31547 (8), 31675 (5), -tower 5116: eta = 2.8, phi = -0.687223, deta = 0.2, dphi = 0.19635, et = 63.3992 - sampling = 0, 2 SCIndices: 31548 (8), 31676 (5), -tower 5117: eta = 2.8, phi = -0.490874, deta = 0.2, dphi = 0.19635, et = 2589.62 - sampling = 0, 2 SCIndices: 31549 (8), 31677 (5), -tower 5118: eta = 2.8, phi = -0.294524, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31550 (8), 31678 (5), -tower 5119: eta = 2.8, phi = -0.0981744, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31551 (8), 31679 (5), -tower 5120: eta = 3, phi = 0.0981748, deta = 0.2, dphi = 0.19635, et = 2967.02 - sampling = 0, 2 SCIndices: 31552 (8), 31680 (5), -tower 5121: eta = 3, phi = 0.294524, deta = 0.2, dphi = 0.19635, et = 798.356 - sampling = 0, 2 SCIndices: 31553 (8), 31681 (5), -tower 5122: eta = 3, phi = 0.490874, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31554 (8), 31682 (5), -tower 5123: eta = 3, phi = 0.687223, deta = 0.2, dphi = 0.19635, et = 4041.14 - sampling = 0, 2 SCIndices: 31555 (8), 31683 (5), -tower 5124: eta = 3, phi = 0.883573, deta = 0.2, dphi = 0.19635, et = 3078.87 - sampling = 0, 2 SCIndices: 31556 (8), 31684 (5), -tower 5125: eta = 3, phi = 1.07992, deta = 0.2, dphi = 0.19635, et = 5264.39 - sampling = 0, 2 SCIndices: 31557 (8), 31685 (5), -tower 5126: eta = 3, phi = 1.27627, deta = 0.2, dphi = 0.19635, et = 2486.32 - sampling = 0, 2 SCIndices: 31558 (8), 31686 (5), -tower 5127: eta = 3, phi = 1.47262, deta = 0.2, dphi = 0.19635, et = 233.129 - sampling = 0, 2 SCIndices: 31559 (8), 31687 (5), -tower 5128: eta = 3, phi = 1.66897, deta = 0.2, dphi = 0.19635, et = 2783.09 - sampling = 0, 2 SCIndices: 31560 (8), 31688 (5), -tower 5129: eta = 3, phi = 1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31561 (8), 31689 (5), -tower 5130: eta = 3, phi = 2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31562 (8), 31690 (5), -tower 5131: eta = 3, phi = 2.25802, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31563 (8), 31691 (5), -tower 5132: eta = 3, phi = 2.45437, deta = 0.2, dphi = 0.19635, et = 208.135 - sampling = 0, 2 SCIndices: 31564 (8), 31692 (5), -tower 5133: eta = 3, phi = 2.65072, deta = 0.2, dphi = 0.19635, et = 251.92 - sampling = 0, 2 SCIndices: 31565 (8), 31693 (5), -tower 5134: eta = 3, phi = 2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31566 (8), 31694 (5), -tower 5135: eta = 3, phi = 3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31567 (8), 31695 (5), -tower 5136: eta = 3, phi = -3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31568 (8), 31696 (5), -tower 5137: eta = 3, phi = -2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31569 (8), 31697 (5), -tower 5138: eta = 3, phi = -2.65072, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31570 (8), 31698 (5), -tower 5139: eta = 3, phi = -2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31571 (8), 31699 (5), -tower 5140: eta = 3, phi = -2.25802, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31572 (8), 31700 (5), -tower 5141: eta = 3, phi = -2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31573 (8), 31701 (5), -tower 5142: eta = 3, phi = -1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31574 (8), 31702 (5), -tower 5143: eta = 3, phi = -1.66897, deta = 0.2, dphi = 0.19635, et = 325.069 - sampling = 0, 2 SCIndices: 31575 (8), 31703 (5), -tower 5144: eta = 3, phi = -1.47262, deta = 0.2, dphi = 0.19635, et = 210.765 - sampling = 0, 2 SCIndices: 31576 (8), 31704 (5), -tower 5145: eta = 3, phi = -1.27627, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31577 (8), 31705 (5), -tower 5146: eta = 3, phi = -1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31578 (8), 31706 (5), -tower 5147: eta = 3, phi = -0.883573, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31579 (8), 31707 (5), -tower 5148: eta = 3, phi = -0.687223, deta = 0.2, dphi = 0.19635, et = 201.106 - sampling = 0, 2 SCIndices: 31580 (8), 31708 (5), -tower 5149: eta = 3, phi = -0.490874, deta = 0.2, dphi = 0.19635, et = 277.672 - sampling = 0, 2 SCIndices: 31581 (8), 31709 (5), -tower 5150: eta = 3, phi = -0.294524, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31582 (8), 31710 (5), -tower 5151: eta = 3, phi = -0.0981744, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31583 (8), 31711 (5), -tower 5152: eta = 3.15, phi = 0.0981748, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31584 (4), 31712 (5), -tower 5153: eta = 3.15, phi = 0.294524, deta = 0.1, dphi = 0.19635, et = 1452.5 - sampling = 0, 2 SCIndices: 31585 (4), 31713 (5), -tower 5154: eta = 3.15, phi = 0.490874, deta = 0.1, dphi = 0.19635, et = 1344 - sampling = 0, 2 SCIndices: 31586 (4), 31714 (5), -tower 5155: eta = 3.15, phi = 0.687223, deta = 0.1, dphi = 0.19635, et = 324.394 - sampling = 0, 2 SCIndices: 31587 (4), 31715 (5), -tower 5156: eta = 3.15, phi = 0.883573, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31588 (4), 31716 (5), -tower 5157: eta = 3.15, phi = 1.07992, deta = 0.1, dphi = 0.19635, et = 1453.62 - sampling = 0, 2 SCIndices: 31589 (4), 31717 (5), -tower 5158: eta = 3.15, phi = 1.27627, deta = 0.1, dphi = 0.19635, et = 1654.42 - sampling = 0, 2 SCIndices: 31590 (4), 31718 (5), -tower 5159: eta = 3.15, phi = 1.47262, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31591 (4), 31719 (5), -tower 5160: eta = 3.15, phi = 1.66897, deta = 0.1, dphi = 0.19635, et = 2242.37 - sampling = 0, 2 SCIndices: 31592 (5), 31720 (5), -tower 5161: eta = 3.15, phi = 1.86532, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31593 (5), 31721 (5), -tower 5162: eta = 3.15, phi = 2.06167, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31594 (5), 31722 (5), -tower 5163: eta = 3.15, phi = 2.25802, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31595 (5), 31723 (5), -tower 5164: eta = 3.15, phi = 2.45437, deta = 0.1, dphi = 0.19635, et = 1144.87 - sampling = 0, 2 SCIndices: 31596 (5), 31724 (5), -tower 5165: eta = 3.15, phi = 2.65072, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31597 (5), 31725 (5), -tower 5166: eta = 3.15, phi = 2.84707, deta = 0.1, dphi = 0.19635, et = 1229.11 - sampling = 0, 2 SCIndices: 31598 (5), 31726 (5), -tower 5167: eta = 3.15, phi = 3.04342, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31599 (5), 31727 (5), -tower 5168: eta = 3.15, phi = -3.04342, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31600 (5), 31728 (5), -tower 5169: eta = 3.15, phi = -2.84707, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31601 (5), 31729 (5), -tower 5170: eta = 3.15, phi = -2.65072, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31602 (5), 31730 (5), -tower 5171: eta = 3.15, phi = -2.45437, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31603 (5), 31731 (5), -tower 5172: eta = 3.15, phi = -2.25802, deta = 0.1, dphi = 0.19635, et = 463.528 - sampling = 0, 2 SCIndices: 31604 (5), 31732 (5), -tower 5173: eta = 3.15, phi = -2.06167, deta = 0.1, dphi = 0.19635, et = 453.761 - sampling = 0, 2 SCIndices: 31605 (5), 31733 (5), -tower 5174: eta = 3.15, phi = -1.86532, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31606 (5), 31734 (5), -tower 5175: eta = 3.15, phi = -1.66897, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31607 (5), 31735 (5), -tower 5176: eta = 3.15, phi = -1.47262, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31608 (5), 31736 (6), -tower 5177: eta = 3.15, phi = -1.27627, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31609 (5), 31737 (6), -tower 5178: eta = 3.15, phi = -1.07992, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31610 (5), 31738 (6), -tower 5179: eta = 3.15, phi = -0.883573, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31611 (5), 31739 (6), -tower 5180: eta = 3.15, phi = -0.687223, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 0, 2 SCIndices: 31612 (5), 31740 (6), -tower 5181: eta = 3.15, phi = -0.490874, deta = 0.1, dphi = 0.19635, et = 1795.7 - sampling = 0, 2 SCIndices: 31613 (5), 31741 (6), -tower 5182: eta = 3.15, phi = -0.294524, deta = 0.1, dphi = 0.19635, et = 698.959 - sampling = 0, 2 SCIndices: 31614 (5), 31742 (6), -tower 5183: eta = 3.15, phi = -0.0981744, deta = 0.1, dphi = 0.19635, et = 161.117 - sampling = 0, 2 SCIndices: 31615 (5), 31743 (6), -tower 5184: eta = 0.05, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5185: eta = 0.05, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5186: eta = 0.05, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5187: eta = 0.05, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5188: eta = 0.05, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5189: eta = 0.05, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5190: eta = 0.05, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5191: eta = 0.05, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5192: eta = 0.05, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5193: eta = 0.05, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5194: eta = 0.05, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5195: eta = 0.05, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5196: eta = 0.05, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5197: eta = 0.05, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5198: eta = 0.05, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5199: eta = 0.05, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5200: eta = 0.05, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5201: eta = 0.05, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5202: eta = 0.05, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5203: eta = 0.05, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5204: eta = 0.05, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5205: eta = 0.05, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5206: eta = 0.05, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5207: eta = 0.05, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5208: eta = 0.05, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5209: eta = 0.05, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5210: eta = 0.05, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5211: eta = 0.05, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5212: eta = 0.05, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5213: eta = 0.05, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5214: eta = 0.05, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5215: eta = 0.05, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5216: eta = 0.05, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5217: eta = 0.05, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5218: eta = 0.05, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5219: eta = 0.05, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5220: eta = 0.05, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5221: eta = 0.05, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5222: eta = 0.05, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5223: eta = 0.05, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5224: eta = 0.05, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5225: eta = 0.05, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5226: eta = 0.05, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5227: eta = 0.05, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5228: eta = 0.05, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5229: eta = 0.05, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5230: eta = 0.05, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5231: eta = 0.05, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5232: eta = 0.05, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5233: eta = 0.05, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5234: eta = 0.05, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5235: eta = 0.05, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5236: eta = 0.05, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5237: eta = 0.05, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5238: eta = 0.05, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5239: eta = 0.05, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5240: eta = 0.05, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5241: eta = 0.05, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5242: eta = 0.05, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5243: eta = 0.05, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5244: eta = 0.05, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5245: eta = 0.05, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5246: eta = 0.05, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5247: eta = 0.05, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5248: eta = 0.15, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5249: eta = 0.15, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5250: eta = 0.15, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5251: eta = 0.15, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5252: eta = 0.15, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5253: eta = 0.15, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5254: eta = 0.15, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5255: eta = 0.15, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5256: eta = 0.15, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5257: eta = 0.15, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 2000 - sampling = 1, 0 SCIndices: -tower 5258: eta = 0.15, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5259: eta = 0.15, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5260: eta = 0.15, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5261: eta = 0.15, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5262: eta = 0.15, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5263: eta = 0.15, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5264: eta = 0.15, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5265: eta = 0.15, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5266: eta = 0.15, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5267: eta = 0.15, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5268: eta = 0.15, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5269: eta = 0.15, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5270: eta = 0.15, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5271: eta = 0.15, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5272: eta = 0.15, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5273: eta = 0.15, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5274: eta = 0.15, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5275: eta = 0.15, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5276: eta = 0.15, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5277: eta = 0.15, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5278: eta = 0.15, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5279: eta = 0.15, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5280: eta = 0.15, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5281: eta = 0.15, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5282: eta = 0.15, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5283: eta = 0.15, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5284: eta = 0.15, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5285: eta = 0.15, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5286: eta = 0.15, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5287: eta = 0.15, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5288: eta = 0.15, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5289: eta = 0.15, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5290: eta = 0.15, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5291: eta = 0.15, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5292: eta = 0.15, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5293: eta = 0.15, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5294: eta = 0.15, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5295: eta = 0.15, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5296: eta = 0.15, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5297: eta = 0.15, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5298: eta = 0.15, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5299: eta = 0.15, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5300: eta = 0.15, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5301: eta = 0.15, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5302: eta = 0.15, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5303: eta = 0.15, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5304: eta = 0.15, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5305: eta = 0.15, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5306: eta = 0.15, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5307: eta = 0.15, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5308: eta = 0.15, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5309: eta = 0.15, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5310: eta = 0.15, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5311: eta = 0.15, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5312: eta = 0.25, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5313: eta = 0.25, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5314: eta = 0.25, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5315: eta = 0.25, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5316: eta = 0.25, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5317: eta = 0.25, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5318: eta = 0.25, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5319: eta = 0.25, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5320: eta = 0.25, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5321: eta = 0.25, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5322: eta = 0.25, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5323: eta = 0.25, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5324: eta = 0.25, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5325: eta = 0.25, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5326: eta = 0.25, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5327: eta = 0.25, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5328: eta = 0.25, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5329: eta = 0.25, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5330: eta = 0.25, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5331: eta = 0.25, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5332: eta = 0.25, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5333: eta = 0.25, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5334: eta = 0.25, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5335: eta = 0.25, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5336: eta = 0.25, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5337: eta = 0.25, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5338: eta = 0.25, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5339: eta = 0.25, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5340: eta = 0.25, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5341: eta = 0.25, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5342: eta = 0.25, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5343: eta = 0.25, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5344: eta = 0.25, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5345: eta = 0.25, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5346: eta = 0.25, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5347: eta = 0.25, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5348: eta = 0.25, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5349: eta = 0.25, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5350: eta = 0.25, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5351: eta = 0.25, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5352: eta = 0.25, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5353: eta = 0.25, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5354: eta = 0.25, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5355: eta = 0.25, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5356: eta = 0.25, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5357: eta = 0.25, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5358: eta = 0.25, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5359: eta = 0.25, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5360: eta = 0.25, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5361: eta = 0.25, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5362: eta = 0.25, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5363: eta = 0.25, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5364: eta = 0.25, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5365: eta = 0.25, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5366: eta = 0.25, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5367: eta = 0.25, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5368: eta = 0.25, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5369: eta = 0.25, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5370: eta = 0.25, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5371: eta = 0.25, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5372: eta = 0.25, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5373: eta = 0.25, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5374: eta = 0.25, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5375: eta = 0.25, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5376: eta = 0.35, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5377: eta = 0.35, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5378: eta = 0.35, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5379: eta = 0.35, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5380: eta = 0.35, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5381: eta = 0.35, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5382: eta = 0.35, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5383: eta = 0.35, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5384: eta = 0.35, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5385: eta = 0.35, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5386: eta = 0.35, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5387: eta = 0.35, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5388: eta = 0.35, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5389: eta = 0.35, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5390: eta = 0.35, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5391: eta = 0.35, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5392: eta = 0.35, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5393: eta = 0.35, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5394: eta = 0.35, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5395: eta = 0.35, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5396: eta = 0.35, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5397: eta = 0.35, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5398: eta = 0.35, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5399: eta = 0.35, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5400: eta = 0.35, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5401: eta = 0.35, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5402: eta = 0.35, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5403: eta = 0.35, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5404: eta = 0.35, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5405: eta = 0.35, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5406: eta = 0.35, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5407: eta = 0.35, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5408: eta = 0.35, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5409: eta = 0.35, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5410: eta = 0.35, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5411: eta = 0.35, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5412: eta = 0.35, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5413: eta = 0.35, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5414: eta = 0.35, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5415: eta = 0.35, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5416: eta = 0.35, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5417: eta = 0.35, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5418: eta = 0.35, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5419: eta = 0.35, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5420: eta = 0.35, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5421: eta = 0.35, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5422: eta = 0.35, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5423: eta = 0.35, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5424: eta = 0.35, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5425: eta = 0.35, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5426: eta = 0.35, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5427: eta = 0.35, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5428: eta = 0.35, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5429: eta = 0.35, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5430: eta = 0.35, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5431: eta = 0.35, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5432: eta = 0.35, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5433: eta = 0.35, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5434: eta = 0.35, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5435: eta = 0.35, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5436: eta = 0.35, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5437: eta = 0.35, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5438: eta = 0.35, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5439: eta = 0.35, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5440: eta = 0.45, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5441: eta = 0.45, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5442: eta = 0.45, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5443: eta = 0.45, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5444: eta = 0.45, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5445: eta = 0.45, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5446: eta = 0.45, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5447: eta = 0.45, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5448: eta = 0.45, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5449: eta = 0.45, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5450: eta = 0.45, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5451: eta = 0.45, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5452: eta = 0.45, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5453: eta = 0.45, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5454: eta = 0.45, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5455: eta = 0.45, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5456: eta = 0.45, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5457: eta = 0.45, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5458: eta = 0.45, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5459: eta = 0.45, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5460: eta = 0.45, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5461: eta = 0.45, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5462: eta = 0.45, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5463: eta = 0.45, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5464: eta = 0.45, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5465: eta = 0.45, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5466: eta = 0.45, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5467: eta = 0.45, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5468: eta = 0.45, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5469: eta = 0.45, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5470: eta = 0.45, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5471: eta = 0.45, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5472: eta = 0.45, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5473: eta = 0.45, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5474: eta = 0.45, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5475: eta = 0.45, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5476: eta = 0.45, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5477: eta = 0.45, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5478: eta = 0.45, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5479: eta = 0.45, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5480: eta = 0.45, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5481: eta = 0.45, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5482: eta = 0.45, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5483: eta = 0.45, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5484: eta = 0.45, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5485: eta = 0.45, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5486: eta = 0.45, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5487: eta = 0.45, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5488: eta = 0.45, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5489: eta = 0.45, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5490: eta = 0.45, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5491: eta = 0.45, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5492: eta = 0.45, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5493: eta = 0.45, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5494: eta = 0.45, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5495: eta = 0.45, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5496: eta = 0.45, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5497: eta = 0.45, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5498: eta = 0.45, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5499: eta = 0.45, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5500: eta = 0.45, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5501: eta = 0.45, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5502: eta = 0.45, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5503: eta = 0.45, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5504: eta = 0.55, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5505: eta = 0.55, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5506: eta = 0.55, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5507: eta = 0.55, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5508: eta = 0.55, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5509: eta = 0.55, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5510: eta = 0.55, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5511: eta = 0.55, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5512: eta = 0.55, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5513: eta = 0.55, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5514: eta = 0.55, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5515: eta = 0.55, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5516: eta = 0.55, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5517: eta = 0.55, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5518: eta = 0.55, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5519: eta = 0.55, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5520: eta = 0.55, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5521: eta = 0.55, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5522: eta = 0.55, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5523: eta = 0.55, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5524: eta = 0.55, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5525: eta = 0.55, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5526: eta = 0.55, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5527: eta = 0.55, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5528: eta = 0.55, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5529: eta = 0.55, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5530: eta = 0.55, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5531: eta = 0.55, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5532: eta = 0.55, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5533: eta = 0.55, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5534: eta = 0.55, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5535: eta = 0.55, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5536: eta = 0.55, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 2000 - sampling = 1, 0 SCIndices: -tower 5537: eta = 0.55, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 2000 - sampling = 1, 0 SCIndices: -tower 5538: eta = 0.55, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5539: eta = 0.55, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5540: eta = 0.55, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5541: eta = 0.55, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5542: eta = 0.55, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5543: eta = 0.55, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5544: eta = 0.55, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5545: eta = 0.55, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5546: eta = 0.55, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5547: eta = 0.55, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5548: eta = 0.55, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5549: eta = 0.55, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5550: eta = 0.55, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5551: eta = 0.55, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5552: eta = 0.55, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5553: eta = 0.55, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5554: eta = 0.55, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5555: eta = 0.55, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5556: eta = 0.55, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5557: eta = 0.55, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5558: eta = 0.55, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5559: eta = 0.55, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5560: eta = 0.55, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5561: eta = 0.55, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5562: eta = 0.55, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5563: eta = 0.55, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5564: eta = 0.55, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5565: eta = 0.55, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5566: eta = 0.55, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5567: eta = 0.55, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5568: eta = 0.65, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5569: eta = 0.65, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5570: eta = 0.65, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5571: eta = 0.65, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5572: eta = 0.65, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5573: eta = 0.65, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5574: eta = 0.65, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5575: eta = 0.65, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5576: eta = 0.65, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5577: eta = 0.65, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5578: eta = 0.65, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5579: eta = 0.65, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5580: eta = 0.65, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5581: eta = 0.65, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5582: eta = 0.65, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5583: eta = 0.65, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5584: eta = 0.65, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5585: eta = 0.65, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5586: eta = 0.65, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5587: eta = 0.65, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5588: eta = 0.65, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5589: eta = 0.65, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5590: eta = 0.65, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5591: eta = 0.65, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5592: eta = 0.65, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5593: eta = 0.65, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5594: eta = 0.65, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5595: eta = 0.65, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5596: eta = 0.65, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5597: eta = 0.65, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5598: eta = 0.65, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5599: eta = 0.65, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5600: eta = 0.65, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5601: eta = 0.65, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5602: eta = 0.65, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5603: eta = 0.65, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5604: eta = 0.65, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5605: eta = 0.65, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5606: eta = 0.65, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5607: eta = 0.65, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5608: eta = 0.65, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5609: eta = 0.65, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5610: eta = 0.65, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5611: eta = 0.65, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5612: eta = 0.65, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5613: eta = 0.65, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5614: eta = 0.65, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5615: eta = 0.65, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5616: eta = 0.65, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5617: eta = 0.65, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5618: eta = 0.65, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5619: eta = 0.65, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5620: eta = 0.65, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5621: eta = 0.65, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5622: eta = 0.65, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5623: eta = 0.65, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5624: eta = 0.65, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5625: eta = 0.65, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 5000 - sampling = 1, 0 SCIndices: -tower 5626: eta = 0.65, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5627: eta = 0.65, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5628: eta = 0.65, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5629: eta = 0.65, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5630: eta = 0.65, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5631: eta = 0.65, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5632: eta = 0.75, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5633: eta = 0.75, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5634: eta = 0.75, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5635: eta = 0.75, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5636: eta = 0.75, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5637: eta = 0.75, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5638: eta = 0.75, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5639: eta = 0.75, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5640: eta = 0.75, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5641: eta = 0.75, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5642: eta = 0.75, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5643: eta = 0.75, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5644: eta = 0.75, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5645: eta = 0.75, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5646: eta = 0.75, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5647: eta = 0.75, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5648: eta = 0.75, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5649: eta = 0.75, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5650: eta = 0.75, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5651: eta = 0.75, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5652: eta = 0.75, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5653: eta = 0.75, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5654: eta = 0.75, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5655: eta = 0.75, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5656: eta = 0.75, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5657: eta = 0.75, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5658: eta = 0.75, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5659: eta = 0.75, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5660: eta = 0.75, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5661: eta = 0.75, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5662: eta = 0.75, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5663: eta = 0.75, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5664: eta = 0.75, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 23000 - sampling = 1, 0 SCIndices: -tower 5665: eta = 0.75, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 23000 - sampling = 1, 0 SCIndices: -tower 5666: eta = 0.75, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 23000 - sampling = 1, 0 SCIndices: -tower 5667: eta = 0.75, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 23000 - sampling = 1, 0 SCIndices: -tower 5668: eta = 0.75, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5669: eta = 0.75, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5670: eta = 0.75, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5671: eta = 0.75, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5672: eta = 0.75, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5673: eta = 0.75, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5674: eta = 0.75, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5675: eta = 0.75, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5676: eta = 0.75, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5677: eta = 0.75, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5678: eta = 0.75, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5679: eta = 0.75, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5680: eta = 0.75, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5681: eta = 0.75, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5682: eta = 0.75, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5683: eta = 0.75, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5684: eta = 0.75, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5685: eta = 0.75, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5686: eta = 0.75, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5687: eta = 0.75, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5688: eta = 0.75, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 20000 - sampling = 1, 0 SCIndices: -tower 5689: eta = 0.75, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 7000 - sampling = 1, 0 SCIndices: -tower 5690: eta = 0.75, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5691: eta = 0.75, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5692: eta = 0.75, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5693: eta = 0.75, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5694: eta = 0.75, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5695: eta = 0.75, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5696: eta = 0.85, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5697: eta = 0.85, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5698: eta = 0.85, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5699: eta = 0.85, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5700: eta = 0.85, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5701: eta = 0.85, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5702: eta = 0.85, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5703: eta = 0.85, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5704: eta = 0.85, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5705: eta = 0.85, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5706: eta = 0.85, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5707: eta = 0.85, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5708: eta = 0.85, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5709: eta = 0.85, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5710: eta = 0.85, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5711: eta = 0.85, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5712: eta = 0.85, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5713: eta = 0.85, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5714: eta = 0.85, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5715: eta = 0.85, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5716: eta = 0.85, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5717: eta = 0.85, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5718: eta = 0.85, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5719: eta = 0.85, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5720: eta = 0.85, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5721: eta = 0.85, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5722: eta = 0.85, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5723: eta = 0.85, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5724: eta = 0.85, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5725: eta = 0.85, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5726: eta = 0.85, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5727: eta = 0.85, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5728: eta = 0.85, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5729: eta = 0.85, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5730: eta = 0.85, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5731: eta = 0.85, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5732: eta = 0.85, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5733: eta = 0.85, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5734: eta = 0.85, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5735: eta = 0.85, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5736: eta = 0.85, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5737: eta = 0.85, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5738: eta = 0.85, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5739: eta = 0.85, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5740: eta = 0.85, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5741: eta = 0.85, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5742: eta = 0.85, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5743: eta = 0.85, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5744: eta = 0.85, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5745: eta = 0.85, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5746: eta = 0.85, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5747: eta = 0.85, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5748: eta = 0.85, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5749: eta = 0.85, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5750: eta = 0.85, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5751: eta = 0.85, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5752: eta = 0.85, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 3000 - sampling = 1, 0 SCIndices: -tower 5753: eta = 0.85, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5754: eta = 0.85, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5755: eta = 0.85, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5756: eta = 0.85, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5757: eta = 0.85, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5758: eta = 0.85, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5759: eta = 0.85, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5760: eta = 0.95, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5761: eta = 0.95, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5762: eta = 0.95, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5763: eta = 0.95, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5764: eta = 0.95, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5765: eta = 0.95, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5766: eta = 0.95, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5767: eta = 0.95, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5768: eta = 0.95, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5769: eta = 0.95, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5770: eta = 0.95, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5771: eta = 0.95, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5772: eta = 0.95, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5773: eta = 0.95, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5774: eta = 0.95, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5775: eta = 0.95, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5776: eta = 0.95, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5777: eta = 0.95, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5778: eta = 0.95, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5779: eta = 0.95, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5780: eta = 0.95, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5781: eta = 0.95, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5782: eta = 0.95, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5783: eta = 0.95, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5784: eta = 0.95, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5785: eta = 0.95, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5786: eta = 0.95, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5787: eta = 0.95, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5788: eta = 0.95, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5789: eta = 0.95, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5790: eta = 0.95, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5791: eta = 0.95, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5792: eta = 0.95, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5793: eta = 0.95, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5794: eta = 0.95, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5795: eta = 0.95, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5796: eta = 0.95, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5797: eta = 0.95, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5798: eta = 0.95, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5799: eta = 0.95, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5800: eta = 0.95, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5801: eta = 0.95, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5802: eta = 0.95, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5803: eta = 0.95, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5804: eta = 0.95, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5805: eta = 0.95, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5806: eta = 0.95, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5807: eta = 0.95, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5808: eta = 0.95, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5809: eta = 0.95, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5810: eta = 0.95, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5811: eta = 0.95, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5812: eta = 0.95, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5813: eta = 0.95, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5814: eta = 0.95, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5815: eta = 0.95, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5816: eta = 0.95, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5817: eta = 0.95, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5818: eta = 0.95, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5819: eta = 0.95, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5820: eta = 0.95, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5821: eta = 0.95, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5822: eta = 0.95, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5823: eta = 0.95, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5824: eta = 1.05, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5825: eta = 1.05, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5826: eta = 1.05, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5827: eta = 1.05, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5828: eta = 1.05, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5829: eta = 1.05, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5830: eta = 1.05, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5831: eta = 1.05, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5832: eta = 1.05, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5833: eta = 1.05, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5834: eta = 1.05, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5835: eta = 1.05, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5836: eta = 1.05, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5837: eta = 1.05, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5838: eta = 1.05, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5839: eta = 1.05, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5840: eta = 1.05, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5841: eta = 1.05, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5842: eta = 1.05, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5843: eta = 1.05, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5844: eta = 1.05, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5845: eta = 1.05, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5846: eta = 1.05, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5847: eta = 1.05, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5848: eta = 1.05, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5849: eta = 1.05, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5850: eta = 1.05, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5851: eta = 1.05, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 2000 - sampling = 1, 0 SCIndices: -tower 5852: eta = 1.05, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5853: eta = 1.05, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5854: eta = 1.05, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5855: eta = 1.05, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5856: eta = 1.05, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5857: eta = 1.05, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5858: eta = 1.05, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5859: eta = 1.05, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5860: eta = 1.05, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5861: eta = 1.05, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5862: eta = 1.05, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5863: eta = 1.05, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5864: eta = 1.05, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5865: eta = 1.05, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5866: eta = 1.05, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5867: eta = 1.05, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5868: eta = 1.05, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5869: eta = 1.05, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5870: eta = 1.05, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5871: eta = 1.05, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5872: eta = 1.05, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5873: eta = 1.05, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5874: eta = 1.05, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5875: eta = 1.05, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5876: eta = 1.05, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5877: eta = 1.05, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5878: eta = 1.05, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5879: eta = 1.05, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5880: eta = 1.05, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5881: eta = 1.05, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5882: eta = 1.05, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5883: eta = 1.05, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5884: eta = 1.05, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5885: eta = 1.05, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5886: eta = 1.05, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5887: eta = 1.05, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5888: eta = 1.15, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5889: eta = 1.15, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5890: eta = 1.15, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5891: eta = 1.15, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5892: eta = 1.15, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5893: eta = 1.15, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5894: eta = 1.15, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5895: eta = 1.15, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5896: eta = 1.15, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5897: eta = 1.15, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5898: eta = 1.15, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5899: eta = 1.15, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5900: eta = 1.15, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5901: eta = 1.15, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5902: eta = 1.15, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5903: eta = 1.15, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5904: eta = 1.15, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5905: eta = 1.15, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5906: eta = 1.15, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5907: eta = 1.15, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5908: eta = 1.15, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5909: eta = 1.15, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5910: eta = 1.15, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5911: eta = 1.15, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5912: eta = 1.15, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5913: eta = 1.15, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5914: eta = 1.15, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5915: eta = 1.15, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5916: eta = 1.15, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5917: eta = 1.15, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5918: eta = 1.15, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5919: eta = 1.15, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5920: eta = 1.15, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5921: eta = 1.15, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5922: eta = 1.15, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5923: eta = 1.15, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5924: eta = 1.15, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5925: eta = 1.15, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5926: eta = 1.15, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5927: eta = 1.15, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5928: eta = 1.15, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5929: eta = 1.15, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5930: eta = 1.15, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5931: eta = 1.15, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5932: eta = 1.15, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5933: eta = 1.15, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5934: eta = 1.15, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5935: eta = 1.15, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5936: eta = 1.15, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5937: eta = 1.15, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5938: eta = 1.15, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5939: eta = 1.15, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5940: eta = 1.15, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5941: eta = 1.15, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5942: eta = 1.15, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5943: eta = 1.15, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5944: eta = 1.15, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5945: eta = 1.15, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5946: eta = 1.15, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5947: eta = 1.15, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5948: eta = 1.15, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5949: eta = 1.15, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5950: eta = 1.15, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5951: eta = 1.15, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5952: eta = 1.25, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5953: eta = 1.25, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5954: eta = 1.25, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5955: eta = 1.25, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5956: eta = 1.25, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5957: eta = 1.25, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5958: eta = 1.25, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5959: eta = 1.25, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5960: eta = 1.25, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5961: eta = 1.25, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5962: eta = 1.25, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5963: eta = 1.25, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5964: eta = 1.25, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5965: eta = 1.25, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5966: eta = 1.25, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5967: eta = 1.25, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5968: eta = 1.25, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5969: eta = 1.25, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5970: eta = 1.25, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5971: eta = 1.25, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5972: eta = 1.25, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5973: eta = 1.25, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5974: eta = 1.25, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5975: eta = 1.25, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5976: eta = 1.25, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5977: eta = 1.25, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5978: eta = 1.25, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5979: eta = 1.25, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5980: eta = 1.25, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5981: eta = 1.25, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5982: eta = 1.25, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5983: eta = 1.25, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5984: eta = 1.25, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5985: eta = 1.25, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5986: eta = 1.25, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5987: eta = 1.25, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5988: eta = 1.25, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5989: eta = 1.25, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5990: eta = 1.25, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5991: eta = 1.25, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5992: eta = 1.25, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5993: eta = 1.25, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5994: eta = 1.25, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5995: eta = 1.25, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5996: eta = 1.25, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5997: eta = 1.25, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5998: eta = 1.25, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 5999: eta = 1.25, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6000: eta = 1.25, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6001: eta = 1.25, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6002: eta = 1.25, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6003: eta = 1.25, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6004: eta = 1.25, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6005: eta = 1.25, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6006: eta = 1.25, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6007: eta = 1.25, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6008: eta = 1.25, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6009: eta = 1.25, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6010: eta = 1.25, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6011: eta = 1.25, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6012: eta = 1.25, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6013: eta = 1.25, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6014: eta = 1.25, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6015: eta = 1.25, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6016: eta = 1.35, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6017: eta = 1.35, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6018: eta = 1.35, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6019: eta = 1.35, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6020: eta = 1.35, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6021: eta = 1.35, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6022: eta = 1.35, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6023: eta = 1.35, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6024: eta = 1.35, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6025: eta = 1.35, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6026: eta = 1.35, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6027: eta = 1.35, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6028: eta = 1.35, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6029: eta = 1.35, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6030: eta = 1.35, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6031: eta = 1.35, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6032: eta = 1.35, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6033: eta = 1.35, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6034: eta = 1.35, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6035: eta = 1.35, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6036: eta = 1.35, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6037: eta = 1.35, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6038: eta = 1.35, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6039: eta = 1.35, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 2000 - sampling = 1, 0 SCIndices: -tower 6040: eta = 1.35, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6041: eta = 1.35, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6042: eta = 1.35, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6043: eta = 1.35, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6044: eta = 1.35, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6045: eta = 1.35, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6046: eta = 1.35, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6047: eta = 1.35, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6048: eta = 1.35, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6049: eta = 1.35, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6050: eta = 1.35, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6051: eta = 1.35, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6052: eta = 1.35, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6053: eta = 1.35, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6054: eta = 1.35, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6055: eta = 1.35, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6056: eta = 1.35, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6057: eta = 1.35, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6058: eta = 1.35, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6059: eta = 1.35, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6060: eta = 1.35, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6061: eta = 1.35, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6062: eta = 1.35, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6063: eta = 1.35, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6064: eta = 1.35, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6065: eta = 1.35, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6066: eta = 1.35, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6067: eta = 1.35, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6068: eta = 1.35, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6069: eta = 1.35, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6070: eta = 1.35, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6071: eta = 1.35, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6072: eta = 1.35, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6073: eta = 1.35, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6074: eta = 1.35, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6075: eta = 1.35, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6076: eta = 1.35, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6077: eta = 1.35, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6078: eta = 1.35, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6079: eta = 1.35, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6080: eta = 1.45, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6081: eta = 1.45, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6082: eta = 1.45, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6083: eta = 1.45, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6084: eta = 1.45, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6085: eta = 1.45, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6086: eta = 1.45, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6087: eta = 1.45, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6088: eta = 1.45, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6089: eta = 1.45, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6090: eta = 1.45, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6091: eta = 1.45, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6092: eta = 1.45, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6093: eta = 1.45, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6094: eta = 1.45, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6095: eta = 1.45, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6096: eta = 1.45, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6097: eta = 1.45, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6098: eta = 1.45, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6099: eta = 1.45, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6100: eta = 1.45, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6101: eta = 1.45, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6102: eta = 1.45, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6103: eta = 1.45, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6104: eta = 1.45, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6105: eta = 1.45, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6106: eta = 1.45, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6107: eta = 1.45, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6108: eta = 1.45, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6109: eta = 1.45, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6110: eta = 1.45, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6111: eta = 1.45, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6112: eta = 1.45, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6113: eta = 1.45, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6114: eta = 1.45, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6115: eta = 1.45, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6116: eta = 1.45, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6117: eta = 1.45, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6118: eta = 1.45, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6119: eta = 1.45, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6120: eta = 1.45, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6121: eta = 1.45, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6122: eta = 1.45, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6123: eta = 1.45, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6124: eta = 1.45, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6125: eta = 1.45, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6126: eta = 1.45, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6127: eta = 1.45, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6128: eta = 1.45, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6129: eta = 1.45, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6130: eta = 1.45, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6131: eta = 1.45, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6132: eta = 1.45, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6133: eta = 1.45, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6134: eta = 1.45, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6135: eta = 1.45, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6136: eta = 1.45, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6137: eta = 1.45, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6138: eta = 1.45, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6139: eta = 1.45, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6140: eta = 1.45, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6141: eta = 1.45, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6142: eta = 1.45, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6143: eta = 1.45, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 0 SCIndices: -tower 6144: eta = 1.55, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32512 (7), -tower 6145: eta = 1.55, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 545.728 - sampling = 1, 1 SCIndices: 32513 (7), -tower 6146: eta = 1.55, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32514 (7), -tower 6147: eta = 1.55, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32515 (7), -tower 6148: eta = 1.55, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32516 (7), -tower 6149: eta = 1.55, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32517 (7), -tower 6150: eta = 1.55, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32518 (7), -tower 6151: eta = 1.55, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32519 (7), -tower 6152: eta = 1.55, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 302.151 - sampling = 1, 1 SCIndices: 32520 (4), -tower 6153: eta = 1.55, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32521 (4), -tower 6154: eta = 1.55, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32522 (4), -tower 6155: eta = 1.55, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 683.74 - sampling = 1, 1 SCIndices: 32523 (4), -tower 6156: eta = 1.55, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32524 (4), -tower 6157: eta = 1.55, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 201.218 - sampling = 1, 1 SCIndices: 32525 (4), -tower 6158: eta = 1.55, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 22.0393 - sampling = 1, 1 SCIndices: 32526 (4), -tower 6159: eta = 1.55, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 460.128 - sampling = 1, 1 SCIndices: 32527 (4), -tower 6160: eta = 1.55, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 441.382 - sampling = 1, 1 SCIndices: 32528 (5), -tower 6161: eta = 1.55, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32529 (5), -tower 6162: eta = 1.55, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32530 (5), -tower 6163: eta = 1.55, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32531 (5), -tower 6164: eta = 1.55, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = -59.0138 - sampling = 1, 1 SCIndices: 32532 (5), -tower 6165: eta = 1.55, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32533 (5), -tower 6166: eta = 1.55, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 203.968 - sampling = 1, 1 SCIndices: 32534 (5), -tower 6167: eta = 1.55, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 245.139 - sampling = 1, 1 SCIndices: 32535 (5), -tower 6168: eta = 1.55, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 946.856 - sampling = 1, 1 SCIndices: 32536 (5), -tower 6169: eta = 1.55, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 1233.02 - sampling = 1, 1 SCIndices: 32537 (5), -tower 6170: eta = 1.55, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32538 (5), -tower 6171: eta = 1.55, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32539 (5), -tower 6172: eta = 1.55, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 754.088 - sampling = 1, 1 SCIndices: 32540 (5), -tower 6173: eta = 1.55, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 665.345 - sampling = 1, 1 SCIndices: 32541 (5), -tower 6174: eta = 1.55, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 355.248 - sampling = 1, 1 SCIndices: 32542 (5), -tower 6175: eta = 1.55, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32543 (5), -tower 6176: eta = 1.55, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32544 (5), -tower 6177: eta = 1.55, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32545 (5), -tower 6178: eta = 1.55, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32546 (5), -tower 6179: eta = 1.55, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32547 (5), -tower 6180: eta = 1.55, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32548 (5), -tower 6181: eta = 1.55, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 671.439 - sampling = 1, 1 SCIndices: 32549 (5), -tower 6182: eta = 1.55, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32550 (5), -tower 6183: eta = 1.55, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32551 (5), -tower 6184: eta = 1.55, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 529.91 - sampling = 1, 1 SCIndices: 32552 (5), -tower 6185: eta = 1.55, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32553 (5), -tower 6186: eta = 1.55, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32554 (5), -tower 6187: eta = 1.55, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 335.626 - sampling = 1, 1 SCIndices: 32555 (5), -tower 6188: eta = 1.55, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 257.844 - sampling = 1, 1 SCIndices: 32556 (5), -tower 6189: eta = 1.55, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 1134.9 - sampling = 1, 1 SCIndices: 32557 (5), -tower 6190: eta = 1.55, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32558 (5), -tower 6191: eta = 1.55, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32559 (5), -tower 6192: eta = 1.55, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 460.128 - sampling = 1, 1 SCIndices: 32560 (5), -tower 6193: eta = 1.55, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32561 (5), -tower 6194: eta = 1.55, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 158.174 - sampling = 1, 1 SCIndices: 32562 (5), -tower 6195: eta = 1.55, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 89.7925 - sampling = 1, 1 SCIndices: 32563 (5), -tower 6196: eta = 1.55, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32564 (5), -tower 6197: eta = 1.55, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32565 (5), -tower 6198: eta = 1.55, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32566 (5), -tower 6199: eta = 1.55, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32567 (5), -tower 6200: eta = 1.55, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32568 (5), -tower 6201: eta = 1.55, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32569 (5), -tower 6202: eta = 1.55, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32570 (5), -tower 6203: eta = 1.55, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32571 (5), -tower 6204: eta = 1.55, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 499.199 - sampling = 1, 1 SCIndices: 32572 (5), -tower 6205: eta = 1.55, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 578.3 - sampling = 1, 1 SCIndices: 32573 (5), -tower 6206: eta = 1.55, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32574 (5), -tower 6207: eta = 1.55, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 529.91 - sampling = 1, 1 SCIndices: 32575 (5), -tower 6208: eta = 1.65, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32576 (5), -tower 6209: eta = 1.65, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 406.799 - sampling = 1, 1 SCIndices: 32577 (5), -tower 6210: eta = 1.65, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32578 (5), -tower 6211: eta = 1.65, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32579 (5), -tower 6212: eta = 1.65, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 769.105 - sampling = 1, 1 SCIndices: 32580 (5), -tower 6213: eta = 1.65, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32581 (5), -tower 6214: eta = 1.65, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32582 (5), -tower 6215: eta = 1.65, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 512.45 - sampling = 1, 1 SCIndices: 32583 (5), -tower 6216: eta = 1.65, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32584 (5), -tower 6217: eta = 1.65, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 394.197 - sampling = 1, 1 SCIndices: 32585 (5), -tower 6218: eta = 1.65, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32586 (5), -tower 6219: eta = 1.65, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 350.218 - sampling = 1, 1 SCIndices: 32587 (5), -tower 6220: eta = 1.65, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 39.8212 - sampling = 1, 1 SCIndices: 32588 (5), -tower 6221: eta = 1.65, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 547.896 - sampling = 1, 1 SCIndices: 32589 (5), -tower 6222: eta = 1.65, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32590 (5), -tower 6223: eta = 1.65, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32591 (5), -tower 6224: eta = 1.65, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32592 (5), -tower 6225: eta = 1.65, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 1035.11 - sampling = 1, 1 SCIndices: 32593 (5), -tower 6226: eta = 1.65, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 99.0057 - sampling = 1, 1 SCIndices: 32594 (5), -tower 6227: eta = 1.65, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32595 (5), -tower 6228: eta = 1.65, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32596 (5), -tower 6229: eta = 1.65, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 411.059 - sampling = 1, 1 SCIndices: 32597 (5), -tower 6230: eta = 1.65, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 634.972 - sampling = 1, 1 SCIndices: 32598 (5), -tower 6231: eta = 1.65, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 762.633 - sampling = 1, 1 SCIndices: 32599 (5), -tower 6232: eta = 1.65, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 313.191 - sampling = 1, 1 SCIndices: 32600 (5), -tower 6233: eta = 1.65, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 815.438 - sampling = 1, 1 SCIndices: 32601 (5), -tower 6234: eta = 1.65, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 891.946 - sampling = 1, 1 SCIndices: 32602 (5), -tower 6235: eta = 1.65, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32603 (5), -tower 6236: eta = 1.65, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32604 (5), -tower 6237: eta = 1.65, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32605 (5), -tower 6238: eta = 1.65, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32606 (5), -tower 6239: eta = 1.65, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 1328.08 - sampling = 1, 1 SCIndices: 32607 (5), -tower 6240: eta = 1.65, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 537.607 - sampling = 1, 1 SCIndices: 32608 (5), -tower 6241: eta = 1.65, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32609 (5), -tower 6242: eta = 1.65, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32610 (5), -tower 6243: eta = 1.65, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32611 (5), -tower 6244: eta = 1.65, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 1554.73 - sampling = 1, 1 SCIndices: 32612 (5), -tower 6245: eta = 1.65, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32613 (5), -tower 6246: eta = 1.65, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32614 (5), -tower 6247: eta = 1.65, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 1011.55 - sampling = 1, 1 SCIndices: 32615 (5), -tower 6248: eta = 1.65, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32616 (5), -tower 6249: eta = 1.65, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32617 (5), -tower 6250: eta = 1.65, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 354.074 - sampling = 1, 1 SCIndices: 32618 (5), -tower 6251: eta = 1.65, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32619 (5), -tower 6252: eta = 1.65, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32620 (5), -tower 6253: eta = 1.65, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32621 (5), -tower 6254: eta = 1.65, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32622 (5), -tower 6255: eta = 1.65, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 1607.19 - sampling = 1, 1 SCIndices: 32623 (5), -tower 6256: eta = 1.65, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 204.233 - sampling = 1, 1 SCIndices: 32624 (5), -tower 6257: eta = 1.65, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 338.82 - sampling = 1, 1 SCIndices: 32625 (5), -tower 6258: eta = 1.65, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32626 (5), -tower 6259: eta = 1.65, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 497.74 - sampling = 1, 1 SCIndices: 32627 (5), -tower 6260: eta = 1.65, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32628 (5), -tower 6261: eta = 1.65, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 32.2454 - sampling = 1, 1 SCIndices: 32629 (5), -tower 6262: eta = 1.65, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32630 (5), -tower 6263: eta = 1.65, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32631 (5), -tower 6264: eta = 1.65, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32632 (5), -tower 6265: eta = 1.65, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 13.9927 - sampling = 1, 1 SCIndices: 32633 (5), -tower 6266: eta = 1.65, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32634 (5), -tower 6267: eta = 1.65, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32635 (5), -tower 6268: eta = 1.65, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 553.089 - sampling = 1, 1 SCIndices: 32636 (5), -tower 6269: eta = 1.65, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 350.218 - sampling = 1, 1 SCIndices: 32637 (5), -tower 6270: eta = 1.65, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 455.302 - sampling = 1, 1 SCIndices: 32638 (5), -tower 6271: eta = 1.65, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32639 (5), -tower 6272: eta = 1.75, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 552.725 - sampling = 1, 1 SCIndices: 32640 (5), -tower 6273: eta = 1.75, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32641 (5), -tower 6274: eta = 1.75, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32642 (5), -tower 6275: eta = 1.75, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32643 (5), -tower 6276: eta = 1.75, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 893.256 - sampling = 1, 1 SCIndices: 32644 (5), -tower 6277: eta = 1.75, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32645 (5), -tower 6278: eta = 1.75, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32646 (5), -tower 6279: eta = 1.75, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32647 (5), -tower 6280: eta = 1.75, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 879.426 - sampling = 1, 1 SCIndices: 32648 (5), -tower 6281: eta = 1.75, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 1532.56 - sampling = 1, 1 SCIndices: 32649 (5), -tower 6282: eta = 1.75, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 594.098 - sampling = 1, 1 SCIndices: 32650 (5), -tower 6283: eta = 1.75, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 1978.39 - sampling = 1, 1 SCIndices: 32651 (5), -tower 6284: eta = 1.75, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32652 (5), -tower 6285: eta = 1.75, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32653 (5), -tower 6286: eta = 1.75, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 312.042 - sampling = 1, 1 SCIndices: 32654 (5), -tower 6287: eta = 1.75, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32655 (5), -tower 6288: eta = 1.75, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32656 (5), -tower 6289: eta = 1.75, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 637.486 - sampling = 1, 1 SCIndices: 32657 (5), -tower 6290: eta = 1.75, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 453.355 - sampling = 1, 1 SCIndices: 32658 (5), -tower 6291: eta = 1.75, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32659 (5), -tower 6292: eta = 1.75, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32660 (5), -tower 6293: eta = 1.75, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32661 (5), -tower 6294: eta = 1.75, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32662 (5), -tower 6295: eta = 1.75, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32663 (5), -tower 6296: eta = 1.75, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32664 (5), -tower 6297: eta = 1.75, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32665 (5), -tower 6298: eta = 1.75, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 1086.46 - sampling = 1, 1 SCIndices: 32666 (5), -tower 6299: eta = 1.75, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 671.378 - sampling = 1, 1 SCIndices: 32667 (5), -tower 6300: eta = 1.75, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32668 (5), -tower 6301: eta = 1.75, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32669 (5), -tower 6302: eta = 1.75, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32670 (5), -tower 6303: eta = 1.75, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32671 (5), -tower 6304: eta = 1.75, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32672 (6), -tower 6305: eta = 1.75, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 318.988 - sampling = 1, 1 SCIndices: 32673 (6), -tower 6306: eta = 1.75, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32674 (6), -tower 6307: eta = 1.75, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32675 (6), -tower 6308: eta = 1.75, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 858.948 - sampling = 1, 1 SCIndices: 32676 (6), -tower 6309: eta = 1.75, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32677 (6), -tower 6310: eta = 1.75, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 480.414 - sampling = 1, 1 SCIndices: 32678 (6), -tower 6311: eta = 1.75, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32679 (6), -tower 6312: eta = 1.75, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32680 (6), -tower 6313: eta = 1.75, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32681 (6), -tower 6314: eta = 1.75, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32682 (6), -tower 6315: eta = 1.75, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32683 (6), -tower 6316: eta = 1.75, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32684 (6), -tower 6317: eta = 1.75, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32685 (6), -tower 6318: eta = 1.75, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32686 (6), -tower 6319: eta = 1.75, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32687 (6), -tower 6320: eta = 1.75, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 394.21 - sampling = 1, 1 SCIndices: 32688 (6), -tower 6321: eta = 1.75, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 643.054 - sampling = 1, 1 SCIndices: 32689 (6), -tower 6322: eta = 1.75, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32690 (6), -tower 6323: eta = 1.75, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32691 (6), -tower 6324: eta = 1.75, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32692 (6), -tower 6325: eta = 1.75, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32693 (6), -tower 6326: eta = 1.75, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32694 (6), -tower 6327: eta = 1.75, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32695 (6), -tower 6328: eta = 1.75, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32696 (6), -tower 6329: eta = 1.75, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32697 (6), -tower 6330: eta = 1.75, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 390.194 - sampling = 1, 1 SCIndices: 32698 (6), -tower 6331: eta = 1.75, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32699 (6), -tower 6332: eta = 1.75, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 245.09 - sampling = 1, 1 SCIndices: 32700 (6), -tower 6333: eta = 1.75, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 1047.33 - sampling = 1, 1 SCIndices: 32701 (6), -tower 6334: eta = 1.75, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32702 (6), -tower 6335: eta = 1.75, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32703 (6), -tower 6336: eta = 1.85, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32704 (6), -tower 6337: eta = 1.85, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32705 (6), -tower 6338: eta = 1.85, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32706 (6), -tower 6339: eta = 1.85, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32707 (6), -tower 6340: eta = 1.85, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32708 (6), -tower 6341: eta = 1.85, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 686.727 - sampling = 1, 1 SCIndices: 32709 (6), -tower 6342: eta = 1.85, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32710 (6), -tower 6343: eta = 1.85, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32711 (6), -tower 6344: eta = 1.85, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32712 (6), -tower 6345: eta = 1.85, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32713 (6), -tower 6346: eta = 1.85, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32714 (6), -tower 6347: eta = 1.85, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32715 (6), -tower 6348: eta = 1.85, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 1458.21 - sampling = 1, 1 SCIndices: 32716 (6), -tower 6349: eta = 1.85, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32717 (6), -tower 6350: eta = 1.85, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32718 (6), -tower 6351: eta = 1.85, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32719 (6), -tower 6352: eta = 1.85, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 569.735 - sampling = 1, 1 SCIndices: 32720 (6), -tower 6353: eta = 1.85, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32721 (6), -tower 6354: eta = 1.85, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 1115.69 - sampling = 1, 1 SCIndices: 32722 (6), -tower 6355: eta = 1.85, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32723 (6), -tower 6356: eta = 1.85, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32724 (6), -tower 6357: eta = 1.85, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32725 (6), -tower 6358: eta = 1.85, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32726 (6), -tower 6359: eta = 1.85, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32727 (6), -tower 6360: eta = 1.85, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32728 (6), -tower 6361: eta = 1.85, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32729 (6), -tower 6362: eta = 1.85, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32730 (6), -tower 6363: eta = 1.85, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 354.87 - sampling = 1, 1 SCIndices: 32731 (6), -tower 6364: eta = 1.85, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32732 (6), -tower 6365: eta = 1.85, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32733 (6), -tower 6366: eta = 1.85, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32734 (6), -tower 6367: eta = 1.85, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32735 (6), -tower 6368: eta = 1.85, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32736 (6), -tower 6369: eta = 1.85, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32737 (6), -tower 6370: eta = 1.85, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32738 (6), -tower 6371: eta = 1.85, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32739 (6), -tower 6372: eta = 1.85, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 897.38 - sampling = 1, 1 SCIndices: 32740 (6), -tower 6373: eta = 1.85, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32741 (6), -tower 6374: eta = 1.85, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32742 (6), -tower 6375: eta = 1.85, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32743 (6), -tower 6376: eta = 1.85, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 1875.53 - sampling = 1, 1 SCIndices: 32744 (6), -tower 6377: eta = 1.85, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32745 (6), -tower 6378: eta = 1.85, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32746 (6), -tower 6379: eta = 1.85, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32747 (6), -tower 6380: eta = 1.85, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 574.74 - sampling = 1, 1 SCIndices: 32748 (6), -tower 6381: eta = 1.85, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 1017.2 - sampling = 1, 1 SCIndices: 32749 (6), -tower 6382: eta = 1.85, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 1514.96 - sampling = 1, 1 SCIndices: 32750 (6), -tower 6383: eta = 1.85, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32751 (6), -tower 6384: eta = 1.85, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32752 (6), -tower 6385: eta = 1.85, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32753 (6), -tower 6386: eta = 1.85, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 945.505 - sampling = 1, 1 SCIndices: 32754 (6), -tower 6387: eta = 1.85, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32755 (6), -tower 6388: eta = 1.85, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32756 (6), -tower 6389: eta = 1.85, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32757 (6), -tower 6390: eta = 1.85, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32758 (6), -tower 6391: eta = 1.85, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32759 (6), -tower 6392: eta = 1.85, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32760 (6), -tower 6393: eta = 1.85, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32761 (6), -tower 6394: eta = 1.85, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32762 (6), -tower 6395: eta = 1.85, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 595.053 - sampling = 1, 1 SCIndices: 32763 (6), -tower 6396: eta = 1.85, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32764 (6), -tower 6397: eta = 1.85, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32765 (6), -tower 6398: eta = 1.85, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32766 (6), -tower 6399: eta = 1.85, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32767 (6), -tower 6400: eta = 1.95, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32768 (6), -tower 6401: eta = 1.95, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = -255.028 - sampling = 1, 1 SCIndices: 32769 (6), -tower 6402: eta = 1.95, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32770 (6), -tower 6403: eta = 1.95, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 222.57 - sampling = 1, 1 SCIndices: 32771 (6), -tower 6404: eta = 1.95, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32772 (6), -tower 6405: eta = 1.95, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32773 (6), -tower 6406: eta = 1.95, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32774 (6), -tower 6407: eta = 1.95, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32775 (6), -tower 6408: eta = 1.95, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32776 (6), -tower 6409: eta = 1.95, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32777 (6), -tower 6410: eta = 1.95, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32778 (6), -tower 6411: eta = 1.95, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32779 (6), -tower 6412: eta = 1.95, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32780 (6), -tower 6413: eta = 1.95, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 564.369 - sampling = 1, 1 SCIndices: 32781 (6), -tower 6414: eta = 1.95, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 75.7735 - sampling = 1, 1 SCIndices: 32782 (6), -tower 6415: eta = 1.95, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32783 (6), -tower 6416: eta = 1.95, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 100.778 - sampling = 1, 1 SCIndices: 32784 (6), -tower 6417: eta = 1.95, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32785 (6), -tower 6418: eta = 1.95, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32786 (6), -tower 6419: eta = 1.95, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32787 (6), -tower 6420: eta = 1.95, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32788 (6), -tower 6421: eta = 1.95, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32789 (6), -tower 6422: eta = 1.95, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32790 (6), -tower 6423: eta = 1.95, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32791 (6), -tower 6424: eta = 1.95, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 526.809 - sampling = 1, 1 SCIndices: 32792 (6), -tower 6425: eta = 1.95, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32793 (6), -tower 6426: eta = 1.95, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32794 (6), -tower 6427: eta = 1.95, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32795 (6), -tower 6428: eta = 1.95, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 151.715 - sampling = 1, 1 SCIndices: 32796 (6), -tower 6429: eta = 1.95, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 992.623 - sampling = 1, 1 SCIndices: 32797 (6), -tower 6430: eta = 1.95, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 151.715 - sampling = 1, 1 SCIndices: 32798 (6), -tower 6431: eta = 1.95, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32799 (6), -tower 6432: eta = 1.95, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 230.41 - sampling = 1, 1 SCIndices: 32800 (7), -tower 6433: eta = 1.95, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 252.21 - sampling = 1, 1 SCIndices: 32801 (7), -tower 6434: eta = 1.95, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32802 (7), -tower 6435: eta = 1.95, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 486.59 - sampling = 1, 1 SCIndices: 32803 (7), -tower 6436: eta = 1.95, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32804 (7), -tower 6437: eta = 1.95, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32805 (7), -tower 6438: eta = 1.95, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32806 (7), -tower 6439: eta = 1.95, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32807 (7), -tower 6440: eta = 1.95, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 21.9882 - sampling = 1, 1 SCIndices: 32808 (7), -tower 6441: eta = 1.95, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 170.443 - sampling = 1, 1 SCIndices: 32809 (7), -tower 6442: eta = 1.95, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32810 (7), -tower 6443: eta = 1.95, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32811 (7), -tower 6444: eta = 1.95, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32812 (7), -tower 6445: eta = 1.95, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 2975.29 - sampling = 1, 1 SCIndices: 32813 (7), -tower 6446: eta = 1.95, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32814 (7), -tower 6447: eta = 1.95, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 924.27 - sampling = 1, 1 SCIndices: 32815 (7), -tower 6448: eta = 1.95, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 709.822 - sampling = 1, 1 SCIndices: 32816 (7), -tower 6449: eta = 1.95, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32817 (7), -tower 6450: eta = 1.95, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32818 (7), -tower 6451: eta = 1.95, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32819 (7), -tower 6452: eta = 1.95, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32820 (7), -tower 6453: eta = 1.95, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 151.715 - sampling = 1, 1 SCIndices: 32821 (7), -tower 6454: eta = 1.95, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32822 (7), -tower 6455: eta = 1.95, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32823 (7), -tower 6456: eta = 1.95, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32824 (7), -tower 6457: eta = 1.95, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32825 (7), -tower 6458: eta = 1.95, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32826 (7), -tower 6459: eta = 1.95, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32827 (7), -tower 6460: eta = 1.95, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 230.41 - sampling = 1, 1 SCIndices: 32828 (7), -tower 6461: eta = 1.95, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32829 (7), -tower 6462: eta = 1.95, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 157.797 - sampling = 1, 1 SCIndices: 32830 (7), -tower 6463: eta = 1.95, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32831 (7), -tower 6464: eta = 2.05, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 979.69 - sampling = 1, 1 SCIndices: 32832 (4), -tower 6465: eta = 2.05, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 422.346 - sampling = 1, 1 SCIndices: 32833 (4), -tower 6466: eta = 2.05, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32834 (4), -tower 6467: eta = 2.05, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32835 (4), -tower 6468: eta = 2.05, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32836 (4), -tower 6469: eta = 2.05, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32837 (4), -tower 6470: eta = 2.05, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32838 (4), -tower 6471: eta = 2.05, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32839 (4), -tower 6472: eta = 2.05, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32840 (4), -tower 6473: eta = 2.05, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32841 (4), -tower 6474: eta = 2.05, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 503.754 - sampling = 1, 1 SCIndices: 32842 (4), -tower 6475: eta = 2.05, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32843 (4), -tower 6476: eta = 2.05, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32844 (4), -tower 6477: eta = 2.05, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32845 (4), -tower 6478: eta = 2.05, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32846 (4), -tower 6479: eta = 2.05, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32847 (4), -tower 6480: eta = 2.05, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32848 (5), -tower 6481: eta = 2.05, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32849 (5), -tower 6482: eta = 2.05, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 247.309 - sampling = 1, 1 SCIndices: 32850 (5), -tower 6483: eta = 2.05, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32851 (5), -tower 6484: eta = 2.05, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 263.76 - sampling = 1, 1 SCIndices: 32852 (5), -tower 6485: eta = 2.05, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 226.458 - sampling = 1, 1 SCIndices: 32853 (5), -tower 6486: eta = 2.05, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 346.846 - sampling = 1, 1 SCIndices: 32854 (5), -tower 6487: eta = 2.05, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32855 (5), -tower 6488: eta = 2.05, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32856 (5), -tower 6489: eta = 2.05, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32857 (5), -tower 6490: eta = 2.05, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32858 (5), -tower 6491: eta = 2.05, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32859 (5), -tower 6492: eta = 2.05, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32860 (5), -tower 6493: eta = 2.05, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32861 (5), -tower 6494: eta = 2.05, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 508.078 - sampling = 1, 1 SCIndices: 32862 (5), -tower 6495: eta = 2.05, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32863 (5), -tower 6496: eta = 2.05, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 516.8 - sampling = 1, 1 SCIndices: 32864 (5), -tower 6497: eta = 2.05, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 486.703 - sampling = 1, 1 SCIndices: 32865 (5), -tower 6498: eta = 2.05, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32866 (5), -tower 6499: eta = 2.05, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32867 (5), -tower 6500: eta = 2.05, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 152.801 - sampling = 1, 1 SCIndices: 32868 (5), -tower 6501: eta = 2.05, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 590.198 - sampling = 1, 1 SCIndices: 32869 (5), -tower 6502: eta = 2.05, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32870 (5), -tower 6503: eta = 2.05, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 218.952 - sampling = 1, 1 SCIndices: 32871 (5), -tower 6504: eta = 2.05, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 206.813 - sampling = 1, 1 SCIndices: 32872 (5), -tower 6505: eta = 2.05, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32873 (5), -tower 6506: eta = 2.05, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 336.857 - sampling = 1, 1 SCIndices: 32874 (5), -tower 6507: eta = 2.05, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32875 (5), -tower 6508: eta = 2.05, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 470.041 - sampling = 1, 1 SCIndices: 32876 (5), -tower 6509: eta = 2.05, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32877 (5), -tower 6510: eta = 2.05, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32878 (5), -tower 6511: eta = 2.05, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 1120.28 - sampling = 1, 1 SCIndices: 32879 (5), -tower 6512: eta = 2.05, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 407.196 - sampling = 1, 1 SCIndices: 32880 (5), -tower 6513: eta = 2.05, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32881 (5), -tower 6514: eta = 2.05, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 53.0333 - sampling = 1, 1 SCIndices: 32882 (5), -tower 6515: eta = 2.05, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32883 (5), -tower 6516: eta = 2.05, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32884 (5), -tower 6517: eta = 2.05, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32885 (5), -tower 6518: eta = 2.05, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32886 (5), -tower 6519: eta = 2.05, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32887 (5), -tower 6520: eta = 2.05, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32888 (5), -tower 6521: eta = 2.05, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32889 (5), -tower 6522: eta = 2.05, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32890 (5), -tower 6523: eta = 2.05, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32891 (5), -tower 6524: eta = 2.05, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32892 (5), -tower 6525: eta = 2.05, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 1076.78 - sampling = 1, 1 SCIndices: 32893 (5), -tower 6526: eta = 2.05, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32894 (5), -tower 6527: eta = 2.05, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32895 (5), -tower 6528: eta = 2.15, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32896 (5), -tower 6529: eta = 2.15, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32897 (5), -tower 6530: eta = 2.15, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32898 (5), -tower 6531: eta = 2.15, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 656.742 - sampling = 1, 1 SCIndices: 32899 (5), -tower 6532: eta = 2.15, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 783.702 - sampling = 1, 1 SCIndices: 32900 (5), -tower 6533: eta = 2.15, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32901 (5), -tower 6534: eta = 2.15, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32902 (5), -tower 6535: eta = 2.15, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32903 (5), -tower 6536: eta = 2.15, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 938.638 - sampling = 1, 1 SCIndices: 32904 (5), -tower 6537: eta = 2.15, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32905 (5), -tower 6538: eta = 2.15, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32906 (5), -tower 6539: eta = 2.15, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32907 (5), -tower 6540: eta = 2.15, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32908 (5), -tower 6541: eta = 2.15, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32909 (5), -tower 6542: eta = 2.15, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32910 (5), -tower 6543: eta = 2.15, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 390.238 - sampling = 1, 1 SCIndices: 32911 (5), -tower 6544: eta = 2.15, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32912 (5), -tower 6545: eta = 2.15, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32913 (5), -tower 6546: eta = 2.15, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 1732.71 - sampling = 1, 1 SCIndices: 32914 (5), -tower 6547: eta = 2.15, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32915 (5), -tower 6548: eta = 2.15, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32916 (5), -tower 6549: eta = 2.15, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 1260.45 - sampling = 1, 1 SCIndices: 32917 (5), -tower 6550: eta = 2.15, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32918 (5), -tower 6551: eta = 2.15, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32919 (5), -tower 6552: eta = 2.15, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32920 (5), -tower 6553: eta = 2.15, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32921 (5), -tower 6554: eta = 2.15, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32922 (5), -tower 6555: eta = 2.15, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32923 (5), -tower 6556: eta = 2.15, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32924 (5), -tower 6557: eta = 2.15, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32925 (5), -tower 6558: eta = 2.15, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 457.108 - sampling = 1, 1 SCIndices: 32926 (5), -tower 6559: eta = 2.15, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32927 (5), -tower 6560: eta = 2.15, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32928 (6), -tower 6561: eta = 2.15, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32929 (6), -tower 6562: eta = 2.15, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32930 (6), -tower 6563: eta = 2.15, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32931 (6), -tower 6564: eta = 2.15, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32932 (6), -tower 6565: eta = 2.15, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 145.838 - sampling = 1, 1 SCIndices: 32933 (6), -tower 6566: eta = 2.15, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32934 (6), -tower 6567: eta = 2.15, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32935 (6), -tower 6568: eta = 2.15, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32936 (6), -tower 6569: eta = 2.15, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 29.4431 - sampling = 1, 1 SCIndices: 32937 (6), -tower 6570: eta = 2.15, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32938 (6), -tower 6571: eta = 2.15, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32939 (6), -tower 6572: eta = 2.15, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32940 (6), -tower 6573: eta = 2.15, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32941 (6), -tower 6574: eta = 2.15, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32942 (6), -tower 6575: eta = 2.15, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 901.222 - sampling = 1, 1 SCIndices: 32943 (6), -tower 6576: eta = 2.15, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 29.4431 - sampling = 1, 1 SCIndices: 32944 (6), -tower 6577: eta = 2.15, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32945 (6), -tower 6578: eta = 2.15, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32946 (6), -tower 6579: eta = 2.15, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 183.374 - sampling = 1, 1 SCIndices: 32947 (6), -tower 6580: eta = 2.15, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32948 (6), -tower 6581: eta = 2.15, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32949 (6), -tower 6582: eta = 2.15, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32950 (6), -tower 6583: eta = 2.15, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32951 (6), -tower 6584: eta = 2.15, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32952 (6), -tower 6585: eta = 2.15, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 1016.55 - sampling = 1, 1 SCIndices: 32953 (6), -tower 6586: eta = 2.15, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32954 (6), -tower 6587: eta = 2.15, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32955 (6), -tower 6588: eta = 2.15, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 118.519 - sampling = 1, 1 SCIndices: 32956 (6), -tower 6589: eta = 2.15, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 376.323 - sampling = 1, 1 SCIndices: 32957 (6), -tower 6590: eta = 2.15, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32958 (6), -tower 6591: eta = 2.15, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32959 (6), -tower 6592: eta = 2.25, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32960 (6), -tower 6593: eta = 2.25, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32961 (6), -tower 6594: eta = 2.25, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32962 (6), -tower 6595: eta = 2.25, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32963 (6), -tower 6596: eta = 2.25, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32964 (6), -tower 6597: eta = 2.25, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 328.987 - sampling = 1, 1 SCIndices: 32965 (6), -tower 6598: eta = 2.25, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32966 (6), -tower 6599: eta = 2.25, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = -182.233 - sampling = 1, 1 SCIndices: 32967 (6), -tower 6600: eta = 2.25, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 1495.1 - sampling = 1, 1 SCIndices: 32968 (6), -tower 6601: eta = 2.25, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32969 (6), -tower 6602: eta = 2.25, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32970 (6), -tower 6603: eta = 2.25, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32971 (6), -tower 6604: eta = 2.25, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32972 (6), -tower 6605: eta = 2.25, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32973 (6), -tower 6606: eta = 2.25, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32974 (6), -tower 6607: eta = 2.25, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32975 (6), -tower 6608: eta = 2.25, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32976 (6), -tower 6609: eta = 2.25, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32977 (6), -tower 6610: eta = 2.25, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32978 (6), -tower 6611: eta = 2.25, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32979 (6), -tower 6612: eta = 2.25, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 128.981 - sampling = 1, 1 SCIndices: 32980 (6), -tower 6613: eta = 2.25, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32981 (6), -tower 6614: eta = 2.25, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32982 (6), -tower 6615: eta = 2.25, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 238.479 - sampling = 1, 1 SCIndices: 32983 (6), -tower 6616: eta = 2.25, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32984 (6), -tower 6617: eta = 2.25, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32985 (6), -tower 6618: eta = 2.25, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32986 (6), -tower 6619: eta = 2.25, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 137.3 - sampling = 1, 1 SCIndices: 32987 (6), -tower 6620: eta = 2.25, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 591.121 - sampling = 1, 1 SCIndices: 32988 (6), -tower 6621: eta = 2.25, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 338.196 - sampling = 1, 1 SCIndices: 32989 (6), -tower 6622: eta = 2.25, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32990 (6), -tower 6623: eta = 2.25, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32991 (6), -tower 6624: eta = 2.25, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32992 (6), -tower 6625: eta = 2.25, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32993 (6), -tower 6626: eta = 2.25, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32994 (6), -tower 6627: eta = 2.25, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 411.033 - sampling = 1, 1 SCIndices: 32995 (6), -tower 6628: eta = 2.25, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = -95.0204 - sampling = 1, 1 SCIndices: 32996 (6), -tower 6629: eta = 2.25, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32997 (6), -tower 6630: eta = 2.25, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32998 (6), -tower 6631: eta = 2.25, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 32999 (6), -tower 6632: eta = 2.25, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33000 (6), -tower 6633: eta = 2.25, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = -258.658 - sampling = 1, 1 SCIndices: 33001 (6), -tower 6634: eta = 2.25, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33002 (6), -tower 6635: eta = 2.25, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 418.13 - sampling = 1, 1 SCIndices: 33003 (6), -tower 6636: eta = 2.25, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33004 (6), -tower 6637: eta = 2.25, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 383.449 - sampling = 1, 1 SCIndices: 33005 (6), -tower 6638: eta = 2.25, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33006 (6), -tower 6639: eta = 2.25, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 990.065 - sampling = 1, 1 SCIndices: 33007 (6), -tower 6640: eta = 2.25, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 190.562 - sampling = 1, 1 SCIndices: 33008 (6), -tower 6641: eta = 2.25, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33009 (6), -tower 6642: eta = 2.25, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33010 (6), -tower 6643: eta = 2.25, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33011 (6), -tower 6644: eta = 2.25, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33012 (6), -tower 6645: eta = 2.25, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33013 (6), -tower 6646: eta = 2.25, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33014 (6), -tower 6647: eta = 2.25, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33015 (6), -tower 6648: eta = 2.25, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33016 (6), -tower 6649: eta = 2.25, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 1101.8 - sampling = 1, 1 SCIndices: 33017 (6), -tower 6650: eta = 2.25, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33018 (6), -tower 6651: eta = 2.25, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33019 (6), -tower 6652: eta = 2.25, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33020 (6), -tower 6653: eta = 2.25, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33021 (6), -tower 6654: eta = 2.25, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33022 (6), -tower 6655: eta = 2.25, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 700.655 - sampling = 1, 1 SCIndices: 33023 (6), -tower 6656: eta = 2.35, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33024 (6), -tower 6657: eta = 2.35, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33025 (6), -tower 6658: eta = 2.35, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33026 (6), -tower 6659: eta = 2.35, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33027 (6), -tower 6660: eta = 2.35, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 814.077 - sampling = 1, 1 SCIndices: 33028 (6), -tower 6661: eta = 2.35, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 433.217 - sampling = 1, 1 SCIndices: 33029 (6), -tower 6662: eta = 2.35, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33030 (6), -tower 6663: eta = 2.35, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 356.863 - sampling = 1, 1 SCIndices: 33031 (6), -tower 6664: eta = 2.35, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33032 (6), -tower 6665: eta = 2.35, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33033 (6), -tower 6666: eta = 2.35, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33034 (6), -tower 6667: eta = 2.35, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33035 (6), -tower 6668: eta = 2.35, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33036 (6), -tower 6669: eta = 2.35, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = -38.8536 - sampling = 1, 1 SCIndices: 33037 (6), -tower 6670: eta = 2.35, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33038 (6), -tower 6671: eta = 2.35, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33039 (6), -tower 6672: eta = 2.35, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33040 (6), -tower 6673: eta = 2.35, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33041 (6), -tower 6674: eta = 2.35, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33042 (6), -tower 6675: eta = 2.35, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 232.149 - sampling = 1, 1 SCIndices: 33043 (6), -tower 6676: eta = 2.35, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33044 (6), -tower 6677: eta = 2.35, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33045 (6), -tower 6678: eta = 2.35, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33046 (6), -tower 6679: eta = 2.35, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 315.1 - sampling = 1, 1 SCIndices: 33047 (6), -tower 6680: eta = 2.35, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33048 (6), -tower 6681: eta = 2.35, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33049 (6), -tower 6682: eta = 2.35, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 209.59 - sampling = 1, 1 SCIndices: 33050 (6), -tower 6683: eta = 2.35, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33051 (6), -tower 6684: eta = 2.35, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33052 (6), -tower 6685: eta = 2.35, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33053 (6), -tower 6686: eta = 2.35, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33054 (6), -tower 6687: eta = 2.35, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 1188.75 - sampling = 1, 1 SCIndices: 33055 (6), -tower 6688: eta = 2.35, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33056 (7), -tower 6689: eta = 2.35, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33057 (7), -tower 6690: eta = 2.35, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 239.219 - sampling = 1, 1 SCIndices: 33058 (7), -tower 6691: eta = 2.35, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33059 (7), -tower 6692: eta = 2.35, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33060 (7), -tower 6693: eta = 2.35, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 298.248 - sampling = 1, 1 SCIndices: 33061 (7), -tower 6694: eta = 2.35, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33062 (7), -tower 6695: eta = 2.35, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33063 (7), -tower 6696: eta = 2.35, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 180.535 - sampling = 1, 1 SCIndices: 33064 (7), -tower 6697: eta = 2.35, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33065 (7), -tower 6698: eta = 2.35, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33066 (7), -tower 6699: eta = 2.35, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33067 (7), -tower 6700: eta = 2.35, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 590.631 - sampling = 1, 1 SCIndices: 33068 (7), -tower 6701: eta = 2.35, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33069 (7), -tower 6702: eta = 2.35, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33070 (7), -tower 6703: eta = 2.35, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33071 (7), -tower 6704: eta = 2.35, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 473.294 - sampling = 1, 1 SCIndices: 33072 (5), -tower 6705: eta = 2.35, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 398.806 - sampling = 1, 1 SCIndices: 33073 (5), -tower 6706: eta = 2.35, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 477.056 - sampling = 1, 1 SCIndices: 33074 (5), -tower 6707: eta = 2.35, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33075 (5), -tower 6708: eta = 2.35, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33076 (5), -tower 6709: eta = 2.35, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33077 (5), -tower 6710: eta = 2.35, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33078 (5), -tower 6711: eta = 2.35, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33079 (5), -tower 6712: eta = 2.35, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 653.622 - sampling = 1, 1 SCIndices: 33080 (5), -tower 6713: eta = 2.35, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33081 (5), -tower 6714: eta = 2.35, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33082 (5), -tower 6715: eta = 2.35, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33083 (5), -tower 6716: eta = 2.35, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33084 (5), -tower 6717: eta = 2.35, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33085 (5), -tower 6718: eta = 2.35, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 359.98 - sampling = 1, 1 SCIndices: 33086 (5), -tower 6719: eta = 2.35, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 5.64914 - sampling = 1, 1 SCIndices: 33087 (5), -tower 6720: eta = 2.45, phi = 0.0490874, deta = 0.1, dphi = 0.0981748, et = 456.701 - sampling = 1, 1 SCIndices: 33088 (6), -tower 6721: eta = 2.45, phi = 0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33089 (6), -tower 6722: eta = 2.45, phi = 0.245437, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33090 (6), -tower 6723: eta = 2.45, phi = 0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33091 (6), -tower 6724: eta = 2.45, phi = 0.441786, deta = 0.1, dphi = 0.0981748, et = 48.8755 - sampling = 1, 1 SCIndices: 33092 (6), -tower 6725: eta = 2.45, phi = 0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33093 (6), -tower 6726: eta = 2.45, phi = 0.638136, deta = 0.1, dphi = 0.0981748, et = 119.925 - sampling = 1, 1 SCIndices: 33094 (6), -tower 6727: eta = 2.45, phi = 0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33095 (6), -tower 6728: eta = 2.45, phi = 0.834486, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33096 (6), -tower 6729: eta = 2.45, phi = 0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33097 (6), -tower 6730: eta = 2.45, phi = 1.03084, deta = 0.1, dphi = 0.0981748, et = 428.925 - sampling = 1, 1 SCIndices: 33098 (6), -tower 6731: eta = 2.45, phi = 1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33099 (6), -tower 6732: eta = 2.45, phi = 1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33100 (6), -tower 6733: eta = 2.45, phi = 1.32536, deta = 0.1, dphi = 0.0981748, et = 135.056 - sampling = 1, 1 SCIndices: 33101 (6), -tower 6734: eta = 2.45, phi = 1.42353, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33102 (6), -tower 6735: eta = 2.45, phi = 1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33103 (6), -tower 6736: eta = 2.45, phi = 1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33104 (6), -tower 6737: eta = 2.45, phi = 1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33105 (6), -tower 6738: eta = 2.45, phi = 1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33106 (6), -tower 6739: eta = 2.45, phi = 1.91441, deta = 0.1, dphi = 0.0981748, et = 253.171 - sampling = 1, 1 SCIndices: 33107 (6), -tower 6740: eta = 2.45, phi = 2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33108 (6), -tower 6741: eta = 2.45, phi = 2.11076, deta = 0.1, dphi = 0.0981748, et = 418.806 - sampling = 1, 1 SCIndices: 33109 (6), -tower 6742: eta = 2.45, phi = 2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33110 (6), -tower 6743: eta = 2.45, phi = 2.30711, deta = 0.1, dphi = 0.0981748, et = 334.805 - sampling = 1, 1 SCIndices: 33111 (6), -tower 6744: eta = 2.45, phi = 2.40528, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33112 (6), -tower 6745: eta = 2.45, phi = 2.50346, deta = 0.1, dphi = 0.0981748, et = 275.317 - sampling = 1, 1 SCIndices: 33113 (6), -tower 6746: eta = 2.45, phi = 2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33114 (6), -tower 6747: eta = 2.45, phi = 2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33115 (6), -tower 6748: eta = 2.45, phi = 2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33116 (6), -tower 6749: eta = 2.45, phi = 2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33117 (6), -tower 6750: eta = 2.45, phi = 2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33118 (6), -tower 6751: eta = 2.45, phi = 3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33119 (6), -tower 6752: eta = 2.45, phi = -3.09251, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33120 (6), -tower 6753: eta = 2.45, phi = -2.99433, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33121 (6), -tower 6754: eta = 2.45, phi = -2.89616, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33122 (6), -tower 6755: eta = 2.45, phi = -2.79798, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33123 (6), -tower 6756: eta = 2.45, phi = -2.69981, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33124 (6), -tower 6757: eta = 2.45, phi = -2.60163, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33125 (6), -tower 6758: eta = 2.45, phi = -2.50346, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33126 (6), -tower 6759: eta = 2.45, phi = -2.40528, deta = 0.1, dphi = 0.0981748, et = 153.114 - sampling = 1, 1 SCIndices: 33127 (6), -tower 6760: eta = 2.45, phi = -2.30711, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33128 (6), -tower 6761: eta = 2.45, phi = -2.20893, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33129 (6), -tower 6762: eta = 2.45, phi = -2.11076, deta = 0.1, dphi = 0.0981748, et = 808.217 - sampling = 1, 1 SCIndices: 33130 (6), -tower 6763: eta = 2.45, phi = -2.01258, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33131 (6), -tower 6764: eta = 2.45, phi = -1.91441, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33132 (6), -tower 6765: eta = 2.45, phi = -1.81623, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33133 (6), -tower 6766: eta = 2.45, phi = -1.71806, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33134 (6), -tower 6767: eta = 2.45, phi = -1.61988, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33135 (6), -tower 6768: eta = 2.45, phi = -1.52171, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33136 (6), -tower 6769: eta = 2.45, phi = -1.42353, deta = 0.1, dphi = 0.0981748, et = 234.512 - sampling = 1, 1 SCIndices: 33137 (6), -tower 6770: eta = 2.45, phi = -1.32536, deta = 0.1, dphi = 0.0981748, et = 293.407 - sampling = 1, 1 SCIndices: 33138 (6), -tower 6771: eta = 2.45, phi = -1.22718, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33139 (6), -tower 6772: eta = 2.45, phi = -1.12901, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33140 (6), -tower 6773: eta = 2.45, phi = -1.03084, deta = 0.1, dphi = 0.0981748, et = 38.5205 - sampling = 1, 1 SCIndices: 33141 (6), -tower 6774: eta = 2.45, phi = -0.93266, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33142 (6), -tower 6775: eta = 2.45, phi = -0.834485, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33143 (6), -tower 6776: eta = 2.45, phi = -0.736311, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33144 (6), -tower 6777: eta = 2.45, phi = -0.638136, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33145 (6), -tower 6778: eta = 2.45, phi = -0.539961, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33146 (6), -tower 6779: eta = 2.45, phi = -0.441786, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33147 (6), -tower 6780: eta = 2.45, phi = -0.343612, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33148 (6), -tower 6781: eta = 2.45, phi = -0.245437, deta = 0.1, dphi = 0.0981748, et = 551.179 - sampling = 1, 1 SCIndices: 33149 (6), -tower 6782: eta = 2.45, phi = -0.147262, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33150 (6), -tower 6783: eta = 2.45, phi = -0.0490873, deta = 0.1, dphi = 0.0981748, et = 0 - sampling = 1, 1 SCIndices: 33151 (6), -tower 6784: eta = 2.6, phi = 0.0981748, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33152 (7), -tower 6785: eta = 2.6, phi = 0.294524, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33153 (7), -tower 6786: eta = 2.6, phi = 0.490874, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33154 (7), -tower 6787: eta = 2.6, phi = 0.687223, deta = 0.2, dphi = 0.19635, et = 1305.07 - sampling = 1, 1 SCIndices: 33155 (7), -tower 6788: eta = 2.6, phi = 0.883573, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33156 (7), -tower 6789: eta = 2.6, phi = 1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33157 (7), -tower 6790: eta = 2.6, phi = 1.27627, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33158 (7), -tower 6791: eta = 2.6, phi = 1.47262, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33159 (7), -tower 6792: eta = 2.6, phi = 1.66897, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33160 (7), -tower 6793: eta = 2.6, phi = 1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33161 (7), -tower 6794: eta = 2.6, phi = 2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33162 (7), -tower 6795: eta = 2.6, phi = 2.25802, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33163 (7), -tower 6796: eta = 2.6, phi = 2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33164 (7), -tower 6797: eta = 2.6, phi = 2.65072, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33165 (7), -tower 6798: eta = 2.6, phi = 2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33166 (7), -tower 6799: eta = 2.6, phi = 3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33167 (7), -tower 6800: eta = 2.6, phi = -3.04342, deta = 0.2, dphi = 0.19635, et = 750.141 - sampling = 1, 1 SCIndices: 33168 (6), -tower 6801: eta = 2.6, phi = -2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33169 (6), -tower 6802: eta = 2.6, phi = -2.65072, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33170 (6), -tower 6803: eta = 2.6, phi = -2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33171 (6), -tower 6804: eta = 2.6, phi = -2.25802, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33172 (6), -tower 6805: eta = 2.6, phi = -2.06167, deta = 0.2, dphi = 0.19635, et = 1535.1 - sampling = 1, 1 SCIndices: 33173 (6), -tower 6806: eta = 2.6, phi = -1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33174 (6), -tower 6807: eta = 2.6, phi = -1.66897, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33175 (6), -tower 6808: eta = 2.6, phi = -1.47262, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33176 (6), -tower 6809: eta = 2.6, phi = -1.27627, deta = 0.2, dphi = 0.19635, et = 1884.69 - sampling = 1, 1 SCIndices: 33177 (6), -tower 6810: eta = 2.6, phi = -1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33178 (6), -tower 6811: eta = 2.6, phi = -0.883573, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33179 (6), -tower 6812: eta = 2.6, phi = -0.687223, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33180 (6), -tower 6813: eta = 2.6, phi = -0.490874, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33181 (6), -tower 6814: eta = 2.6, phi = -0.294524, deta = 0.2, dphi = 0.19635, et = 1123.7 - sampling = 1, 1 SCIndices: 33182 (6), -tower 6815: eta = 2.6, phi = -0.0981744, deta = 0.2, dphi = 0.19635, et = 634.385 - sampling = 1, 1 SCIndices: 33183 (6), -tower 6816: eta = 2.8, phi = 0.0981748, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33184 (6), -tower 6817: eta = 2.8, phi = 0.294524, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33185 (6), -tower 6818: eta = 2.8, phi = 0.490874, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33186 (6), -tower 6819: eta = 2.8, phi = 0.687223, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33187 (6), -tower 6820: eta = 2.8, phi = 0.883573, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33188 (6), -tower 6821: eta = 2.8, phi = 1.07992, deta = 0.2, dphi = 0.19635, et = 1092.79 - sampling = 1, 1 SCIndices: 33189 (6), -tower 6822: eta = 2.8, phi = 1.27627, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33190 (6), -tower 6823: eta = 2.8, phi = 1.47262, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33191 (6), -tower 6824: eta = 2.8, phi = 1.66897, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33192 (6), -tower 6825: eta = 2.8, phi = 1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33193 (6), -tower 6826: eta = 2.8, phi = 2.06167, deta = 0.2, dphi = 0.19635, et = 1115.58 - sampling = 1, 1 SCIndices: 33194 (6), -tower 6827: eta = 2.8, phi = 2.25802, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33195 (6), -tower 6828: eta = 2.8, phi = 2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33196 (6), -tower 6829: eta = 2.8, phi = 2.65072, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33197 (6), -tower 6830: eta = 2.8, phi = 2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33198 (6), -tower 6831: eta = 2.8, phi = 3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33199 (6), -tower 6832: eta = 2.8, phi = -3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33200 (7), -tower 6833: eta = 2.8, phi = -2.84707, deta = 0.2, dphi = 0.19635, et = 947.053 - sampling = 1, 1 SCIndices: 33201 (7), -tower 6834: eta = 2.8, phi = -2.65072, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33202 (7), -tower 6835: eta = 2.8, phi = -2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33203 (7), -tower 6836: eta = 2.8, phi = -2.25802, deta = 0.2, dphi = 0.19635, et = 581.145 - sampling = 1, 1 SCIndices: 33204 (7), -tower 6837: eta = 2.8, phi = -2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33205 (7), -tower 6838: eta = 2.8, phi = -1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33206 (7), -tower 6839: eta = 2.8, phi = -1.66897, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33207 (7), -tower 6840: eta = 2.8, phi = -1.47262, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33208 (7), -tower 6841: eta = 2.8, phi = -1.27627, deta = 0.2, dphi = 0.19635, et = 994.093 - sampling = 1, 1 SCIndices: 33209 (7), -tower 6842: eta = 2.8, phi = -1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33210 (7), -tower 6843: eta = 2.8, phi = -0.883573, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33211 (7), -tower 6844: eta = 2.8, phi = -0.687223, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33212 (7), -tower 6845: eta = 2.8, phi = -0.490874, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33213 (7), -tower 6846: eta = 2.8, phi = -0.294524, deta = 0.2, dphi = 0.19635, et = 650.581 - sampling = 1, 1 SCIndices: 33214 (7), -tower 6847: eta = 2.8, phi = -0.0981744, deta = 0.2, dphi = 0.19635, et = 619.075 - sampling = 1, 1 SCIndices: 33215 (7), -tower 6848: eta = 3, phi = 0.0981748, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33216 (7), -tower 6849: eta = 3, phi = 0.294524, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33217 (7), -tower 6850: eta = 3, phi = 0.490874, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33218 (7), -tower 6851: eta = 3, phi = 0.687223, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33219 (7), -tower 6852: eta = 3, phi = 0.883573, deta = 0.2, dphi = 0.19635, et = 1678.89 - sampling = 1, 1 SCIndices: 33220 (7), -tower 6853: eta = 3, phi = 1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33221 (7), -tower 6854: eta = 3, phi = 1.27627, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33222 (7), -tower 6855: eta = 3, phi = 1.47262, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33223 (7), -tower 6856: eta = 3, phi = 1.66897, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33224 (7), -tower 6857: eta = 3, phi = 1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33225 (7), -tower 6858: eta = 3, phi = 2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33226 (7), -tower 6859: eta = 3, phi = 2.25802, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33227 (7), -tower 6860: eta = 3, phi = 2.45437, deta = 0.2, dphi = 0.19635, et = 1078.49 - sampling = 1, 1 SCIndices: 33228 (7), -tower 6861: eta = 3, phi = 2.65072, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33229 (7), -tower 6862: eta = 3, phi = 2.84707, deta = 0.2, dphi = 0.19635, et = 1261.11 - sampling = 1, 1 SCIndices: 33230 (7), -tower 6863: eta = 3, phi = 3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33231 (7), -tower 6864: eta = 3, phi = -3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33232 (8), -tower 6865: eta = 3, phi = -2.84707, deta = 0.2, dphi = 0.19635, et = 1062.82 - sampling = 1, 1 SCIndices: 33233 (8), -tower 6866: eta = 3, phi = -2.65072, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33234 (8), -tower 6867: eta = 3, phi = -2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33235 (8), -tower 6868: eta = 3, phi = -2.25802, deta = 0.2, dphi = 0.19635, et = 784.729 - sampling = 1, 1 SCIndices: 33236 (8), -tower 6869: eta = 3, phi = -2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33237 (8), -tower 6870: eta = 3, phi = -1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33238 (8), -tower 6871: eta = 3, phi = -1.66897, deta = 0.2, dphi = 0.19635, et = 1393.65 - sampling = 1, 1 SCIndices: 33239 (8), -tower 6872: eta = 3, phi = -1.47262, deta = 0.2, dphi = 0.19635, et = 577.068 - sampling = 1, 1 SCIndices: 33240 (8), -tower 6873: eta = 3, phi = -1.27627, deta = 0.2, dphi = 0.19635, et = 1502.2 - sampling = 1, 1 SCIndices: 33241 (8), -tower 6874: eta = 3, phi = -1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33242 (8), -tower 6875: eta = 3, phi = -0.883573, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33243 (8), -tower 6876: eta = 3, phi = -0.687223, deta = 0.2, dphi = 0.19635, et = 1226.48 - sampling = 1, 1 SCIndices: 33244 (8), -tower 6877: eta = 3, phi = -0.490874, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33245 (8), -tower 6878: eta = 3, phi = -0.294524, deta = 0.2, dphi = 0.19635, et = 784.729 - sampling = 1, 1 SCIndices: 33246 (8), -tower 6879: eta = 3, phi = -0.0981744, deta = 0.2, dphi = 0.19635, et = 1362.75 - sampling = 1, 1 SCIndices: 33247 (8), -tower 6880: eta = 3.15, phi = 0.0981748, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 6881: eta = 3.15, phi = 0.294524, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33664 (6), -tower 6882: eta = 3.15, phi = 0.490874, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33665 (6), -tower 6883: eta = 3.15, phi = 0.687223, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 6884: eta = 3.15, phi = 0.883573, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 6885: eta = 3.15, phi = 1.07992, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33666 (6), -tower 6886: eta = 3.15, phi = 1.27627, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33667 (6), -tower 6887: eta = 3.15, phi = 1.47262, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 6888: eta = 3.15, phi = 1.66897, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 6889: eta = 3.15, phi = 1.86532, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33668 (6), -tower 6890: eta = 3.15, phi = 2.06167, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33669 (6), -tower 6891: eta = 3.15, phi = 2.25802, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 6892: eta = 3.15, phi = 2.45437, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 6893: eta = 3.15, phi = 2.65072, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33670 (6), -tower 6894: eta = 3.15, phi = 2.84707, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33671 (6), -tower 6895: eta = 3.15, phi = 3.04342, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 6896: eta = 3.15, phi = -3.04342, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 6897: eta = 3.15, phi = -2.84707, deta = 0.1, dphi = 0.19635, et = 403.684 - sampling = 1, 1 SCIndices: 33672 (6), -tower 6898: eta = 3.15, phi = -2.65072, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33673 (6), -tower 6899: eta = 3.15, phi = -2.45437, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 6900: eta = 3.15, phi = -2.25802, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 6901: eta = 3.15, phi = -2.06167, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33674 (6), -tower 6902: eta = 3.15, phi = -1.86532, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33675 (6), -tower 6903: eta = 3.15, phi = -1.66897, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 6904: eta = 3.15, phi = -1.47262, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 6905: eta = 3.15, phi = -1.27627, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33676 (6), -tower 6906: eta = 3.15, phi = -1.07992, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33677 (6), -tower 6907: eta = 3.15, phi = -0.883573, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 6908: eta = 3.15, phi = -0.687223, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 6909: eta = 3.15, phi = -0.490874, deta = 0.1, dphi = 0.19635, et = 283.725 - sampling = 1, 1 SCIndices: 33678 (6), -tower 6910: eta = 3.15, phi = -0.294524, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 1 SCIndices: 33679 (6), -tower 6911: eta = 3.15, phi = -0.0981744, deta = 0.1, dphi = 0.19635, et = 0 - sampling = 1, 0 SCIndices: -tower 6912: eta = -3.2, phi = 0.0981748, deta = 0.2, dphi = 0.19635, et = 484.23 - sampling = 2, 1 SCIndices: 32480 (6), -tower 6913: eta = -3.2, phi = 0.294524, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32481 (6), -tower 6914: eta = -3.2, phi = 0.490874, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32482 (6), -tower 6915: eta = -3.2, phi = 0.687223, deta = 0.2, dphi = 0.19635, et = 436.91 - sampling = 2, 1 SCIndices: 32483 (6), -tower 6916: eta = -3.2, phi = 0.883573, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32484 (6), -tower 6917: eta = -3.2, phi = 1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32485 (6), -tower 6918: eta = -3.2, phi = 1.27627, deta = 0.2, dphi = 0.19635, et = 176.678 - sampling = 2, 1 SCIndices: 32486 (6), -tower 6919: eta = -3.2, phi = 1.47262, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32487 (6), -tower 6920: eta = -3.2, phi = 1.66897, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32488 (7), -tower 6921: eta = -3.2, phi = 1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32489 (7), -tower 6922: eta = -3.2, phi = 2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32490 (7), -tower 6923: eta = -3.2, phi = 2.25802, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32491 (7), -tower 6924: eta = -3.2, phi = 2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32492 (7), -tower 6925: eta = -3.2, phi = 2.65072, deta = 0.2, dphi = 0.19635, et = 209.388 - sampling = 2, 1 SCIndices: 32493 (7), -tower 6926: eta = -3.2, phi = 2.84707, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32494 (7), -tower 6927: eta = -3.2, phi = 3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32495 (7), -tower 6928: eta = -3.2, phi = -3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32496 (7), -tower 6929: eta = -3.2, phi = -2.84707, deta = 0.2, dphi = 0.19635, et = 331.194 - sampling = 2, 1 SCIndices: 32497 (7), -tower 6930: eta = -3.2, phi = -2.65072, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32498 (7), -tower 6931: eta = -3.2, phi = -2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32499 (7), -tower 6932: eta = -3.2, phi = -2.25802, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32500 (7), -tower 6933: eta = -3.2, phi = -2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32501 (7), -tower 6934: eta = -3.2, phi = -1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32502 (7), -tower 6935: eta = -3.2, phi = -1.66897, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32503 (7), -tower 6936: eta = -3.2, phi = -1.47262, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32504 (7), -tower 6937: eta = -3.2, phi = -1.27627, deta = 0.2, dphi = 0.19635, et = 288.47 - sampling = 2, 1 SCIndices: 32505 (7), -tower 6938: eta = -3.2, phi = -1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32506 (7), -tower 6939: eta = -3.2, phi = -0.883573, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32507 (7), -tower 6940: eta = -3.2, phi = -0.687223, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 32508 (7), -tower 6941: eta = -3.2, phi = -0.490874, deta = 0.2, dphi = 0.19635, et = 69.7822 - sampling = 2, 1 SCIndices: 32509 (7), -tower 6942: eta = -3.2, phi = -0.294524, deta = 0.2, dphi = 0.19635, et = 541.026 - sampling = 2, 1 SCIndices: 32510 (7), -tower 6943: eta = -3.2, phi = -0.0981748, deta = 0.2, dphi = 0.19635, et = 179.635 - sampling = 2, 1 SCIndices: 32511 (7), -tower 6944: eta = 3.2, phi = 0.0981748, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33248 (8), -tower 6945: eta = 3.2, phi = 0.294524, deta = 0.2, dphi = 0.19635, et = 556.676 - sampling = 2, 1 SCIndices: 33249 (8), -tower 6946: eta = 3.2, phi = 0.490874, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33250 (8), -tower 6947: eta = 3.2, phi = 0.687223, deta = 0.2, dphi = 0.19635, et = 674.76 - sampling = 2, 1 SCIndices: 33251 (8), -tower 6948: eta = 3.2, phi = 0.883573, deta = 0.2, dphi = 0.19635, et = 354.054 - sampling = 2, 1 SCIndices: 33252 (8), -tower 6949: eta = 3.2, phi = 1.07992, deta = 0.2, dphi = 0.19635, et = 228.027 - sampling = 2, 1 SCIndices: 33253 (8), -tower 6950: eta = 3.2, phi = 1.27627, deta = 0.2, dphi = 0.19635, et = 69.7822 - sampling = 2, 1 SCIndices: 33254 (8), -tower 6951: eta = 3.2, phi = 1.47262, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33255 (8), -tower 6952: eta = 3.2, phi = 1.66897, deta = 0.2, dphi = 0.19635, et = 298.784 - sampling = 2, 1 SCIndices: 33256 (8), -tower 6953: eta = 3.2, phi = 1.86532, deta = 0.2, dphi = 0.19635, et = 190.244 - sampling = 2, 1 SCIndices: 33257 (8), -tower 6954: eta = 3.2, phi = 2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33258 (8), -tower 6955: eta = 3.2, phi = 2.25802, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33259 (8), -tower 6956: eta = 3.2, phi = 2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33260 (8), -tower 6957: eta = 3.2, phi = 2.65072, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33261 (8), -tower 6958: eta = 3.2, phi = 2.84707, deta = 0.2, dphi = 0.19635, et = 475.642 - sampling = 2, 1 SCIndices: 33262 (8), -tower 6959: eta = 3.2, phi = 3.04342, deta = 0.2, dphi = 0.19635, et = 65.1403 - sampling = 2, 1 SCIndices: 33263 (8), -tower 6960: eta = 3.2, phi = -3.04342, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33264 (8), -tower 6961: eta = 3.2, phi = -2.84707, deta = 0.2, dphi = 0.19635, et = 262.771 - sampling = 2, 1 SCIndices: 33265 (8), -tower 6962: eta = 3.2, phi = -2.65072, deta = 0.2, dphi = 0.19635, et = 74.6396 - sampling = 2, 1 SCIndices: 33266 (8), -tower 6963: eta = 3.2, phi = -2.45437, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33267 (8), -tower 6964: eta = 3.2, phi = -2.25802, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33268 (8), -tower 6965: eta = 3.2, phi = -2.06167, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33269 (8), -tower 6966: eta = 3.2, phi = -1.86532, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33270 (8), -tower 6967: eta = 3.2, phi = -1.66897, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33271 (8), -tower 6968: eta = 3.2, phi = -1.47262, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33272 (8), -tower 6969: eta = 3.2, phi = -1.27627, deta = 0.2, dphi = 0.19635, et = 331.194 - sampling = 2, 1 SCIndices: 33273 (8), -tower 6970: eta = 3.2, phi = -1.07992, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33274 (8), -tower 6971: eta = 3.2, phi = -0.883573, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33275 (8), -tower 6972: eta = 3.2, phi = -0.687223, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33276 (8), -tower 6973: eta = 3.2, phi = -0.490874, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33277 (8), -tower 6974: eta = 3.2, phi = -0.294524, deta = 0.2, dphi = 0.19635, et = 0 - sampling = 2, 1 SCIndices: 33278 (8), -tower 6975: eta = 3.2, phi = -0.0981748, deta = 0.2, dphi = 0.19635, et = 179.635 - sampling = 2, 1 SCIndices: 33279 (8), -tower 6976: eta = -3.24166, phi = 0.204926, deta = 0.243779, dphi = 0.401335, et = 0 - sampling = 2, 1 SCIndices: 33296 (8), -tower 6977: eta = -3.2564, phi = 0.58325, deta = 0.301396, dphi = 0.368937, et = 0 - sampling = 2, 1 SCIndices: 33297 (8), -tower 6978: eta = -3.26036, phi = 0.978016, deta = 0.289645, dphi = 0.306523, et = 351.272 - sampling = 2, 1 SCIndices: 33298 (8), -tower 6979: eta = -3.27242, phi = 1.36744, deta = 0.159021, dphi = 0.396581, et = 0 - sampling = 2, 1 SCIndices: 33299 (8), -tower 6980: eta = -3.27242, phi = 1.77416, deta = 0.159021, dphi = 0.396581, et = 0 - sampling = 2, 1 SCIndices: 33300 (8), -tower 6981: eta = -3.26036, phi = 2.16358, deta = 0.289645, dphi = 0.306523, et = 0 - sampling = 2, 1 SCIndices: 33301 (8), -tower 6982: eta = -3.2564, phi = 2.55834, deta = 0.301396, dphi = 0.368937, et = 0 - sampling = 2, 1 SCIndices: 33302 (8), -tower 6983: eta = -3.20413, phi = 2.94434, deta = 0.16615, dphi = 0.385486, et = 146.197 - sampling = 2, 1 SCIndices: 33303 (8), -tower 6984: eta = -3.24166, phi = -2.93667, deta = 0.243779, dphi = 0.401335, et = 0 - sampling = 2, 1 SCIndices: 33304 (8), -tower 6985: eta = -3.2564, phi = -2.55834, deta = 0.301396, dphi = 0.368937, et = 0 - sampling = 2, 1 SCIndices: 33305 (8), -tower 6986: eta = -3.26036, phi = -2.16358, deta = 0.289645, dphi = 0.306523, et = 0 - sampling = 2, 1 SCIndices: 33306 (8), -tower 6987: eta = -3.27242, phi = -1.77416, deta = 0.159021, dphi = 0.396581, et = 536.167 - sampling = 2, 1 SCIndices: 33307 (8), -tower 6988: eta = -3.27242, phi = -1.36744, deta = 0.159021, dphi = 0.396581, et = 0 - sampling = 2, 1 SCIndices: 33308 (8), -tower 6989: eta = -3.26036, phi = -0.978016, deta = 0.289645, dphi = 0.306523, et = 218.978 - sampling = 2, 1 SCIndices: 33309 (8), -tower 6990: eta = -3.2564, phi = -0.58325, deta = 0.301396, dphi = 0.368937, et = 386.834 - sampling = 2, 1 SCIndices: 33310 (8), -tower 6991: eta = -3.20413, phi = -0.197251, deta = 0.16615, dphi = 0.385486, et = 0 - sampling = 2, 1 SCIndices: 33311 (8), -tower 6992: eta = -3.33471, phi = 0.14949, deta = 0.0956653, dphi = 0.294826, et = 0 - sampling = 2, 1 SCIndices: 33312 (8), -tower 6993: eta = -3.3452, phi = 0.599699, deta = 0.301595, dphi = 0.343688, et = 0 - sampling = 2, 1 SCIndices: 33313 (8), -tower 6994: eta = -3.33495, phi = 1.02857, deta = 0.260405, dphi = 0.316433, et = 0 - sampling = 2, 1 SCIndices: 33314 (8), -tower 6995: eta = -3.3516, phi = 1.39497, deta = 0.160814, dphi = 0.345439, et = 0 - sampling = 2, 1 SCIndices: 33315 (8), -tower 6996: eta = -3.3516, phi = 1.74662, deta = 0.160814, dphi = 0.345439, et = 0 - sampling = 2, 1 SCIndices: 33316 (8), -tower 6997: eta = -3.36709, phi = 2.13288, deta = 0.321175, dphi = 0.342443, et = 0 - sampling = 2, 1 SCIndices: 33317 (8), -tower 6998: eta = -3.3452, phi = 2.54189, deta = 0.301595, dphi = 0.343688, et = 0 - sampling = 2, 1 SCIndices: 33318 (8), -tower 6999: eta = -3.32107, phi = 2.91941, deta = 0.104789, dphi = 0.287211, et = 0 - sampling = 2, 1 SCIndices: 33319 (8), -tower 7000: eta = -3.33471, phi = -2.9921, deta = 0.0956653, dphi = 0.294826, et = 0 - sampling = 2, 1 SCIndices: 33320 (8), -tower 7001: eta = -3.3452, phi = -2.54189, deta = 0.301595, dphi = 0.343688, et = 0 - sampling = 2, 1 SCIndices: 33321 (8), -tower 7002: eta = -3.33495, phi = -2.11303, deta = 0.260405, dphi = 0.316433, et = 0 - sampling = 2, 1 SCIndices: 33322 (8), -tower 7003: eta = -3.3516, phi = -1.74662, deta = 0.160814, dphi = 0.345439, et = 0 - sampling = 2, 1 SCIndices: 33323 (8), -tower 7004: eta = -3.3516, phi = -1.39497, deta = 0.160814, dphi = 0.345439, et = 0 - sampling = 2, 1 SCIndices: 33324 (8), -tower 7005: eta = -3.36709, phi = -1.00871, deta = 0.321175, dphi = 0.342443, et = 0 - sampling = 2, 1 SCIndices: 33325 (8), -tower 7006: eta = -3.3452, phi = -0.599699, deta = 0.301595, dphi = 0.343688, et = 416.93 - sampling = 2, 1 SCIndices: 33326 (8), -tower 7007: eta = -3.32107, phi = -0.222187, deta = 0.104789, dphi = 0.287211, et = 458.964 - sampling = 2, 1 SCIndices: 33327 (8), -tower 7008: eta = -3.40702, phi = 0.242561, deta = 0.117944, dphi = 0.311677, et = 0 - sampling = 2, 1 SCIndices: 33328 (8), -tower 7009: eta = -3.40383, phi = 0.592761, deta = 0.234377, dphi = 0.284081, et = 0 - sampling = 2, 1 SCIndices: 33329 (8), -tower 7010: eta = -3.39988, phi = 0.987531, deta = 0.283125, dphi = 0.333415, et = 0 - sampling = 2, 1 SCIndices: 33330 (8), -tower 7011: eta = -3.42882, phi = 1.38066, deta = 0.175508, dphi = 0.372437, et = 0 - sampling = 2, 1 SCIndices: 33331 (8), -tower 7012: eta = -3.42882, phi = 1.76094, deta = 0.175508, dphi = 0.372437, et = 0 - sampling = 2, 1 SCIndices: 33332 (8), -tower 7013: eta = -3.42465, phi = 2.11478, deta = 0.254624, dphi = 0.272677, et = -515.587 - sampling = 2, 1 SCIndices: 33333 (8), -tower 7014: eta = -3.40383, phi = 2.54883, deta = 0.234377, dphi = 0.284081, et = 24.3803 - sampling = 2, 1 SCIndices: 33334 (8), -tower 7015: eta = -3.37129, phi = 2.94725, deta = 0.189825, dphi = 0.38053, et = 0 - sampling = 2, 1 SCIndices: 33335 (8), -tower 7016: eta = -3.40702, phi = -2.89903, deta = 0.117944, dphi = 0.311677, et = 0 - sampling = 2, 1 SCIndices: 33336 (8), -tower 7017: eta = -3.40383, phi = -2.54883, deta = 0.234377, dphi = 0.284081, et = 0 - sampling = 2, 1 SCIndices: 33337 (8), -tower 7018: eta = -3.39988, phi = -2.15406, deta = 0.283125, dphi = 0.333415, et = 0 - sampling = 2, 1 SCIndices: 33338 (8), -tower 7019: eta = -3.42882, phi = -1.76094, deta = 0.175508, dphi = 0.372437, et = 156.537 - sampling = 2, 1 SCIndices: 33339 (8), -tower 7020: eta = -3.42882, phi = -1.38066, deta = 0.175508, dphi = 0.372437, et = 0 - sampling = 2, 1 SCIndices: 33340 (8), -tower 7021: eta = -3.42465, phi = -1.02681, deta = 0.254624, dphi = 0.272677, et = 0 - sampling = 2, 1 SCIndices: 33341 (8), -tower 7022: eta = -3.40383, phi = -0.592761, deta = 0.234377, dphi = 0.284081, et = 0 - sampling = 2, 1 SCIndices: 33342 (8), -tower 7023: eta = -3.37129, phi = -0.194339, deta = 0.189825, dphi = 0.38053, et = 0 - sampling = 2, 1 SCIndices: 33343 (8), -tower 7024: eta = -3.47061, phi = 0.171504, deta = 0.202337, dphi = 0.338001, et = 0 - sampling = 2, 1 SCIndices: 33344 (8), -tower 7025: eta = -3.46609, phi = 0.584933, deta = 0.338736, dphi = 0.389601, et = 0 - sampling = 2, 1 SCIndices: 33345 (8), -tower 7026: eta = -3.49577, phi = 0.981505, deta = 0.27522, dphi = 0.291203, et = 0 - sampling = 2, 1 SCIndices: 33346 (8), -tower 7027: eta = -3.51228, phi = 1.36384, deta = 0.193192, dphi = 0.403819, et = 0 - sampling = 2, 1 SCIndices: 33347 (8), -tower 7028: eta = -3.51228, phi = 1.77775, deta = 0.193192, dphi = 0.403818, et = 0 - sampling = 2, 1 SCIndices: 33348 (8), -tower 7029: eta = -3.5698, phi = 2.21249, deta = 0.298678, dphi = 0.311512, et = 0 - sampling = 2, 1 SCIndices: 33349 (8), -tower 7030: eta = -3.46609, phi = 2.55666, deta = 0.338736, dphi = 0.389601, et = 0 - sampling = 2, 1 SCIndices: 33350 (8), -tower 7031: eta = -3.47061, phi = 2.97009, deta = 0.202337, dphi = 0.338001, et = 0 - sampling = 2, 1 SCIndices: 33351 (8), -tower 7032: eta = -3.47061, phi = -2.97009, deta = 0.202337, dphi = 0.338001, et = 0 - sampling = 2, 1 SCIndices: 33352 (8), -tower 7033: eta = -3.46609, phi = -2.55666, deta = 0.338736, dphi = 0.389601, et = 0 - sampling = 2, 1 SCIndices: 33353 (8), -tower 7034: eta = -3.49577, phi = -2.16009, deta = 0.27522, dphi = 0.291203, et = 0 - sampling = 2, 1 SCIndices: 33354 (8), -tower 7035: eta = -3.51228, phi = -1.77775, deta = 0.193192, dphi = 0.403818, et = 0 - sampling = 2, 1 SCIndices: 33355 (8), -tower 7036: eta = -3.51228, phi = -1.36384, deta = 0.193192, dphi = 0.403819, et = 0 - sampling = 2, 1 SCIndices: 33356 (8), -tower 7037: eta = -3.5698, phi = -0.929101, deta = 0.298678, dphi = 0.311512, et = 0 - sampling = 2, 1 SCIndices: 33357 (8), -tower 7038: eta = -3.46609, phi = -0.584933, deta = 0.338736, dphi = 0.389601, et = 0 - sampling = 2, 1 SCIndices: 33358 (8), -tower 7039: eta = -3.47061, phi = -0.171504, deta = 0.202337, dphi = 0.338001, et = 0 - sampling = 2, 1 SCIndices: 33359 (8), -tower 7040: eta = -3.57238, phi = 0.190126, deta = 0.225524, dphi = 0.373441, et = 0 - sampling = 2, 1 SCIndices: 33360 (8), -tower 7041: eta = -3.55666, phi = 0.537018, deta = 0.232956, dphi = 0.263741, et = 54.794 - sampling = 2, 1 SCIndices: 33361 (8), -tower 7042: eta = -3.60185, phi = 0.974127, deta = 0.348946, dphi = 0.406411, et = 695.093 - sampling = 2, 1 SCIndices: 33362 (8), -tower 7043: eta = -3.61421, phi = 1.39927, deta = 0.202441, dphi = 0.337995, et = 0 - sampling = 2, 1 SCIndices: 33363 (8), -tower 7044: eta = -3.61421, phi = 1.74232, deta = 0.202441, dphi = 0.337995, et = 0 - sampling = 2, 1 SCIndices: 33364 (8), -tower 7045: eta = -3.63273, phi = 2.11951, deta = 0.314057, dphi = 0.335681, et = 935.591 - sampling = 2, 1 SCIndices: 33365 (8), -tower 7046: eta = -3.55666, phi = 2.60457, deta = 0.232956, dphi = 0.263741, et = 0 - sampling = 2, 1 SCIndices: 33366 (8), -tower 7047: eta = -3.57238, phi = 2.95147, deta = 0.225524, dphi = 0.373441, et = 0 - sampling = 2, 1 SCIndices: 33367 (8), -tower 7048: eta = -3.57238, phi = -2.95147, deta = 0.225524, dphi = 0.373441, et = 0 - sampling = 2, 1 SCIndices: 33368 (8), -tower 7049: eta = -3.55666, phi = -2.60457, deta = 0.232956, dphi = 0.26374, et = 0 - sampling = 2, 1 SCIndices: 33369 (8), -tower 7050: eta = -3.60185, phi = -2.16747, deta = 0.348946, dphi = 0.406411, et = 627.763 - sampling = 2, 1 SCIndices: 33370 (8), -tower 7051: eta = -3.61421, phi = -1.74232, deta = 0.202441, dphi = 0.337995, et = 2036.29 - sampling = 2, 1 SCIndices: 33371 (8), -tower 7052: eta = -3.61421, phi = -1.39927, deta = 0.202441, dphi = 0.337995, et = 326.872 - sampling = 2, 1 SCIndices: 33372 (8), -tower 7053: eta = -3.63273, phi = -1.02208, deta = 0.314057, dphi = 0.335681, et = 0 - sampling = 2, 1 SCIndices: 33373 (8), -tower 7054: eta = -3.55666, phi = -0.537018, deta = 0.232956, dphi = 0.26374, et = 0 - sampling = 2, 1 SCIndices: 33374 (8), -tower 7055: eta = -3.57238, phi = -0.190126, deta = 0.225524, dphi = 0.37344, et = 0 - sampling = 2, 1 SCIndices: 33375 (8), -tower 7056: eta = -3.68528, phi = 0.213215, deta = 0.254725, dphi = 0.416845, et = 0 - sampling = 2, 1 SCIndices: 33376 (8), -tower 7057: eta = -3.65152, phi = 0.597475, deta = 0.260297, dphi = 0.286379, et = 0 - sampling = 2, 1 SCIndices: 33377 (8), -tower 7058: eta = -3.72051, phi = 0.964886, deta = 0.34571, dphi = 0.36394, et = 0 - sampling = 2, 1 SCIndices: 33378 (8), -tower 7059: eta = -3.82899, phi = 1.35756, deta = 0.254807, dphi = 0.416841, et = 1238.12 - sampling = 2, 1 SCIndices: 33379 (8), -tower 7060: eta = -3.82899, phi = 1.78404, deta = 0.254808, dphi = 0.416841, et = 0 - sampling = 2, 1 SCIndices: 33380 (8), -tower 7061: eta = -3.72051, phi = 2.17671, deta = 0.34571, dphi = 0.36394, et = 0 - sampling = 2, 1 SCIndices: 33381 (8), -tower 7062: eta = -3.65152, phi = 2.54412, deta = 0.260297, dphi = 0.286379, et = 0 - sampling = 2, 1 SCIndices: 33382 (8), -tower 7063: eta = -3.68528, phi = 2.92838, deta = 0.254725, dphi = 0.416845, et = 0 - sampling = 2, 1 SCIndices: 33383 (8), -tower 7064: eta = -3.68528, phi = -2.92838, deta = 0.254725, dphi = 0.416845, et = 0 - sampling = 2, 1 SCIndices: 33384 (8), -tower 7065: eta = -3.65152, phi = -2.54412, deta = 0.260297, dphi = 0.286379, et = 0 - sampling = 2, 1 SCIndices: 33385 (8), -tower 7066: eta = -3.72051, phi = -2.17671, deta = 0.34571, dphi = 0.36394, et = 0 - sampling = 2, 1 SCIndices: 33386 (8), -tower 7067: eta = -3.82899, phi = -1.78404, deta = 0.254808, dphi = 0.416841, et = 222.554 - sampling = 2, 1 SCIndices: 33387 (8), -tower 7068: eta = -3.82899, phi = -1.35756, deta = 0.254807, dphi = 0.416841, et = -131.566 - sampling = 2, 1 SCIndices: 33388 (8), -tower 7069: eta = -3.72051, phi = -0.964886, deta = 0.34571, dphi = 0.36394, et = 0 - sampling = 2, 1 SCIndices: 33389 (8), -tower 7070: eta = -3.65152, phi = -0.597475, deta = 0.260297, dphi = 0.286379, et = 0 - sampling = 2, 1 SCIndices: 33390 (8), -tower 7071: eta = -3.68528, phi = -0.213215, deta = 0.254725, dphi = 0.416845, et = -289.031 - sampling = 2, 1 SCIndices: 33391 (8), -tower 7072: eta = -3.82463, phi = 0.183486, deta = 0.283843, dphi = 0.362436, et = 0 - sampling = 2, 1 SCIndices: 33392 (8), -tower 7073: eta = -3.81973, phi = 0.576031, deta = 0.306432, dphi = 0.340469, et = 0 - sampling = 2, 1 SCIndices: 33393 (8), -tower 7074: eta = -3.85512, phi = 0.952982, deta = 0.349249, dphi = 0.321285, et = 0 - sampling = 2, 1 SCIndices: 33394 (8), -tower 7075: eta = -3.97188, phi = 1.40728, deta = 0.282945, dphi = 0.324434, et = 0 - sampling = 2, 1 SCIndices: 33395 (8), -tower 7076: eta = -3.97188, phi = 1.73431, deta = 0.282945, dphi = 0.324434, et = 0 - sampling = 2, 1 SCIndices: 33396 (8), -tower 7077: eta = -3.9524, phi = 2.16359, deta = 0.35208, dphi = 0.426122, et = 0 - sampling = 2, 1 SCIndices: 33397 (8), -tower 7078: eta = -3.81973, phi = 2.56556, deta = 0.306432, dphi = 0.340469, et = 4208.19 - sampling = 2, 1 SCIndices: 33398 (8), -tower 7079: eta = -3.82463, phi = 2.95811, deta = 0.283843, dphi = 0.362436, et = 942.15 - sampling = 2, 1 SCIndices: 33399 (8), -tower 7080: eta = -3.82463, phi = -2.95811, deta = 0.283843, dphi = 0.362436, et = 0 - sampling = 2, 1 SCIndices: 33400 (8), -tower 7081: eta = -3.81973, phi = -2.56556, deta = 0.306432, dphi = 0.340469, et = 0 - sampling = 2, 1 SCIndices: 33401 (8), -tower 7082: eta = -3.85512, phi = -2.18861, deta = 0.349249, dphi = 0.321285, et = 0 - sampling = 2, 1 SCIndices: 33402 (8), -tower 7083: eta = -3.97188, phi = -1.73431, deta = 0.282945, dphi = 0.324434, et = 0 - sampling = 2, 1 SCIndices: 33403 (8), -tower 7084: eta = -3.97188, phi = -1.40728, deta = 0.282945, dphi = 0.324434, et = 0 - sampling = 2, 1 SCIndices: 33404 (8), -tower 7085: eta = -3.9524, phi = -0.978005, deta = 0.35208, dphi = 0.426122, et = 301.908 - sampling = 2, 1 SCIndices: 33405 (8), -tower 7086: eta = -3.81973, phi = -0.576031, deta = 0.306432, dphi = 0.340469, et = 0 - sampling = 2, 1 SCIndices: 33406 (8), -tower 7087: eta = -3.82463, phi = -0.183486, deta = 0.283843, dphi = 0.362436, et = 0 - sampling = 2, 1 SCIndices: 33407 (8), -tower 7088: eta = -4.14514, phi = 0.25418, deta = 0.395265, dphi = 0.49639, et = 0 - sampling = 2, 1 SCIndices: 33408 (8), -tower 7089: eta = -4.17405, phi = 0.648443, deta = 0.445464, dphi = 0.477657, et = 1358.5 - sampling = 2, 1 SCIndices: 33409 (8), -tower 7090: eta = -4.05934, phi = 1.0087, deta = 0.433743, dphi = 0.388427, et = 0 - sampling = 2, 1 SCIndices: 33410 (8), -tower 7091: eta = -4.2492, phi = 1.35427, deta = 0.287611, dphi = 0.42384, et = 2746.09 - sampling = 2, 1 SCIndices: 33411 (8), -tower 7092: eta = -4.2492, phi = 1.78733, deta = 0.287611, dphi = 0.42384, et = 0 - sampling = 2, 1 SCIndices: 33412 (8), -tower 7093: eta = -4.12564, phi = 2.17671, deta = 0.345927, dphi = 0.363935, et = 0 - sampling = 2, 1 SCIndices: 33413 (8), -tower 7094: eta = -4.17405, phi = 2.49315, deta = 0.445464, dphi = 0.477657, et = 0 - sampling = 2, 1 SCIndices: 33414 (8), -tower 7095: eta = -3.97268, phi = 2.92838, deta = 0.330523, dphi = 0.419324, et = 0 - sampling = 2, 1 SCIndices: 33415 (8), -tower 7096: eta = -4.14514, phi = -2.88741, deta = 0.395265, dphi = 0.49639, et = 0 - sampling = 2, 1 SCIndices: 33416 (8), -tower 7097: eta = -4.17405, phi = -2.49315, deta = 0.445464, dphi = 0.477657, et = 0 - sampling = 2, 1 SCIndices: 33417 (8), -tower 7098: eta = -4.05934, phi = -2.13289, deta = 0.433743, dphi = 0.388426, et = 0 - sampling = 2, 1 SCIndices: 33418 (8), -tower 7099: eta = -4.2492, phi = -1.78733, deta = 0.287611, dphi = 0.42384, et = 0 - sampling = 2, 1 SCIndices: 33419 (8), -tower 7100: eta = -4.2492, phi = -1.35427, deta = 0.287611, dphi = 0.42384, et = 0 - sampling = 2, 1 SCIndices: 33420 (8), -tower 7101: eta = -4.12564, phi = -0.964884, deta = 0.345927, dphi = 0.363935, et = 1367 - sampling = 2, 1 SCIndices: 33421 (8), -tower 7102: eta = -4.17405, phi = -0.648443, deta = 0.445464, dphi = 0.477657, et = 0 - sampling = 2, 1 SCIndices: 33422 (8), -tower 7103: eta = -3.97268, phi = -0.21321, deta = 0.330523, dphi = 0.419324, et = 257.237 - sampling = 2, 1 SCIndices: 33423 (8), -tower 7104: eta = -4.3199, phi = 0.201004, deta = 0.34799, dphi = 0.397319, et = 0 - sampling = 2, 1 SCIndices: 33424 (4), -tower 7105: eta = -4.37238, phi = 0.553959, deta = 0.234354, dphi = 0.219938, et = 0 - sampling = 2, 1 SCIndices: 33425 (4), -tower 7106: eta = -4.33507, phi = 0.94564, deta = 0.356023, dphi = 0.30384, et = 0 - sampling = 2, 1 SCIndices: 33426 (4), -tower 7107: eta = -4.39503, phi = 1.31958, deta = 0.24228, dphi = 0.484445, et = 886.874 - sampling = 2, 1 SCIndices: 33427 (4), -tower 7108: eta = -4.39503, phi = 1.82201, deta = 0.24228, dphi = 0.484445, et = 0 - sampling = 2, 1 SCIndices: 33428 (4), -tower 7109: eta = -4.45873, phi = 2.20938, deta = 0.299957, dphi = 0.34711, et = 324.712 - sampling = 2, 1 SCIndices: 33429 (4), -tower 7110: eta = -4.39937, phi = 2.63361, deta = 0.269093, dphi = 0.308276, et = 0 - sampling = 2, 1 SCIndices: 33430 (4), -tower 7111: eta = -4.3199, phi = 2.94059, deta = 0.34799, dphi = 0.39732, et = 0 - sampling = 2, 1 SCIndices: 33431 (4), -tower 7112: eta = -4.3199, phi = -2.94059, deta = 0.34799, dphi = 0.397319, et = 0 - sampling = 2, 1 SCIndices: 33432 (5), -tower 7113: eta = -4.37238, phi = -2.58763, deta = 0.234354, dphi = 0.219938, et = 0 - sampling = 2, 1 SCIndices: 33433 (5), -tower 7114: eta = -4.33507, phi = -2.19595, deta = 0.356023, dphi = 0.30384, et = 495.063 - sampling = 2, 1 SCIndices: 33434 (5), -tower 7115: eta = -4.39503, phi = -1.82201, deta = 0.24228, dphi = 0.484445, et = 0 - sampling = 2, 1 SCIndices: 33435 (5), -tower 7116: eta = -4.39503, phi = -1.31958, deta = 0.24228, dphi = 0.484445, et = 0 - sampling = 2, 1 SCIndices: 33436 (5), -tower 7117: eta = -4.45873, phi = -0.932213, deta = 0.299957, dphi = 0.34711, et = 0 - sampling = 2, 1 SCIndices: 33437 (5), -tower 7118: eta = -4.39937, phi = -0.507981, deta = 0.269093, dphi = 0.308276, et = 0 - sampling = 2, 1 SCIndices: 33438 (5), -tower 7119: eta = -4.3199, phi = -0.201005, deta = 0.34799, dphi = 0.39732, et = 0 - sampling = 2, 1 SCIndices: 33439 (5), -tower 7120: eta = -4.5174, phi = 0.183476, deta = 0.284035, dphi = 0.362417, et = -132.16 - sampling = 2, 1 SCIndices: 33440 (5), -tower 7121: eta = -4.5125, phi = 0.576018, deta = 0.306658, dphi = 0.340498, et = 0 - sampling = 2, 1 SCIndices: 33441 (5), -tower 7122: eta = -4.5479, phi = 0.952976, deta = 0.349468, dphi = 0.321275, et = 0 - sampling = 2, 1 SCIndices: 33442 (5), -tower 7123: eta = -4.52175, phi = 1.35754, deta = 0.254979, dphi = 0.416829, et = 0 - sampling = 2, 1 SCIndices: 33443 (5), -tower 7124: eta = -4.52175, phi = 1.78405, deta = 0.254979, dphi = 0.416829, et = 0 - sampling = 2, 1 SCIndices: 33444 (5), -tower 7125: eta = -4.64523, phi = 2.16359, deta = 0.35226, dphi = 0.426105, et = 0 - sampling = 2, 1 SCIndices: 33445 (5), -tower 7126: eta = -4.5125, phi = 2.56557, deta = 0.306658, dphi = 0.340498, et = 0 - sampling = 2, 1 SCIndices: 33446 (5), -tower 7127: eta = -4.5174, phi = 2.95812, deta = 0.284035, dphi = 0.362417, et = 0 - sampling = 2, 1 SCIndices: 33447 (5), -tower 7128: eta = -4.5174, phi = -2.95812, deta = 0.284035, dphi = 0.362417, et = 0 - sampling = 2, 1 SCIndices: 33448 (5), -tower 7129: eta = -4.5125, phi = -2.56557, deta = 0.306658, dphi = 0.340498, et = 0 - sampling = 2, 1 SCIndices: 33449 (5), -tower 7130: eta = -4.5479, phi = -2.18862, deta = 0.349468, dphi = 0.321275, et = 0 - sampling = 2, 1 SCIndices: 33450 (5), -tower 7131: eta = -4.52175, phi = -1.78405, deta = 0.254979, dphi = 0.416829, et = 0 - sampling = 2, 1 SCIndices: 33451 (5), -tower 7132: eta = -4.52175, phi = -1.35754, deta = 0.254979, dphi = 0.416829, et = 0 - sampling = 2, 1 SCIndices: 33452 (5), -tower 7133: eta = -4.64523, phi = -0.977998, deta = 0.35226, dphi = 0.426105, et = 0 - sampling = 2, 1 SCIndices: 33453 (5), -tower 7134: eta = -4.5125, phi = -0.576018, deta = 0.306658, dphi = 0.340498, et = 0 - sampling = 2, 1 SCIndices: 33454 (5), -tower 7135: eta = -4.5174, phi = -0.183476, deta = 0.284035, dphi = 0.362417, et = 0 - sampling = 2, 1 SCIndices: 33455 (5), -tower 7136: eta = -4.7483, phi = 0.231918, deta = 0.202003, dphi = 0.449231, et = 0 - sampling = 2, 1 SCIndices: 33456 (5), -tower 7137: eta = -4.79074, phi = 0.630492, deta = 0.346258, dphi = 0.382338, et = 148.682 - sampling = 2, 1 SCIndices: 33457 (5), -tower 7138: eta = -4.69619, phi = 1.0608, deta = 0.310794, dphi = 0.350687, et = 0 - sampling = 2, 1 SCIndices: 33458 (5), -tower 7139: eta = -4.66473, phi = 1.40726, deta = 0.283084, dphi = 0.324424, et = 0 - sampling = 2, 1 SCIndices: 33459 (5), -tower 7140: eta = -4.66473, phi = 1.73433, deta = 0.283084, dphi = 0.324424, et = 0 - sampling = 2, 1 SCIndices: 33460 (5), -tower 7141: eta = -4.81555, phi = 2.12518, deta = 0.356702, dphi = 0.424276, et = 0 - sampling = 2, 1 SCIndices: 33461 (5), -tower 7142: eta = -4.67982, phi = 2.5431, deta = 0.32226, dphi = 0.31269, et = 733.372 - sampling = 2, 1 SCIndices: 33462 (5), -tower 7143: eta = -4.7483, phi = 2.90967, deta = 0.202003, dphi = 0.449231, et = 0 - sampling = 2, 1 SCIndices: 33463 (5), -tower 7144: eta = -4.7483, phi = -2.90967, deta = 0.202003, dphi = 0.449231, et = 0 - sampling = 2, 1 SCIndices: 33464 (5), -tower 7145: eta = -4.79074, phi = -2.5111, deta = 0.346258, dphi = 0.382338, et = 0 - sampling = 2, 1 SCIndices: 33465 (5), -tower 7146: eta = -4.69619, phi = -2.08079, deta = 0.310794, dphi = 0.350687, et = 0 - sampling = 2, 1 SCIndices: 33466 (5), -tower 7147: eta = -4.66473, phi = -1.73433, deta = 0.283084, dphi = 0.324424, et = 0 - sampling = 2, 1 SCIndices: 33467 (5), -tower 7148: eta = -4.66473, phi = -1.40726, deta = 0.283084, dphi = 0.324424, et = 0 - sampling = 2, 1 SCIndices: 33468 (5), -tower 7149: eta = -4.81555, phi = -1.01641, deta = 0.356702, dphi = 0.424276, et = 0 - sampling = 2, 1 SCIndices: 33469 (5), -tower 7150: eta = -4.67982, phi = -0.598489, deta = 0.32226, dphi = 0.31269, et = 0 - sampling = 2, 1 SCIndices: 33470 (5), -tower 7151: eta = -4.7483, phi = -0.231918, deta = 0.202003, dphi = 0.449231, et = 0 - sampling = 2, 1 SCIndices: 33471 (5), -tower 7152: eta = -3.22853, phi = 0.207269, deta = 0.1498, dphi = 0.403619, et = 0 - sampling = 2, 1 SCIndices: 33472 (5), -tower 7153: eta = -3.22574, phi = 0.664964, deta = 0.204063, dphi = 0.214869, et = 75.6678 - sampling = 2, 1 SCIndices: 33473 (5), -tower 7154: eta = -3.21374, phi = 0.964906, deta = 0.254326, dphi = 0.279687, et = 0 - sampling = 2, 1 SCIndices: 33474 (5), -tower 7155: eta = -3.21938, phi = 1.35515, deta = 0.184112, dphi = 0.336189, et = 0 - sampling = 2, 1 SCIndices: 33475 (5), -tower 7156: eta = -3.21997, phi = 1.78372, deta = 0.185455, dphi = 0.33966, et = 0 - sampling = 2, 1 SCIndices: 33476 (5), -tower 7157: eta = -3.20555, phi = 2.15966, deta = 0.237522, dphi = 0.267389, et = 164.242 - sampling = 2, 1 SCIndices: 33477 (5), -tower 7158: eta = -3.21217, phi = 2.48891, deta = 0.206974, dphi = 0.226982, et = 0 - sampling = 2, 1 SCIndices: 33478 (5), -tower 7159: eta = -3.22856, phi = 2.93645, deta = 0.148249, dphi = 0.399708, et = 0 - sampling = 2, 1 SCIndices: 33479 (5), -tower 7160: eta = -3.22853, phi = -2.93432, deta = 0.1498, dphi = 0.403619, et = 32.3441 - sampling = 2, 1 SCIndices: 33480 (5), -tower 7161: eta = -3.22574, phi = -2.47663, deta = 0.204063, dphi = 0.214869, et = 0 - sampling = 2, 1 SCIndices: 33481 (5), -tower 7162: eta = -3.21374, phi = -2.17669, deta = 0.254326, dphi = 0.279687, et = 19.4888 - sampling = 2, 1 SCIndices: 33482 (5), -tower 7163: eta = -3.21938, phi = -1.78644, deta = 0.184112, dphi = 0.336189, et = 0 - sampling = 2, 1 SCIndices: 33483 (5), -tower 7164: eta = -3.21997, phi = -1.35787, deta = 0.185455, dphi = 0.33966, et = 0 - sampling = 2, 1 SCIndices: 33484 (5), -tower 7165: eta = -3.20555, phi = -0.981932, deta = 0.237522, dphi = 0.267389, et = 3.69595 - sampling = 2, 1 SCIndices: 33485 (5), -tower 7166: eta = -3.21217, phi = -0.65268, deta = 0.206974, dphi = 0.226982, et = 0 - sampling = 2, 1 SCIndices: 33486 (5), -tower 7167: eta = -3.22856, phi = -0.205145, deta = 0.148249, dphi = 0.399708, et = 0 - sampling = 2, 1 SCIndices: 33487 (5), -tower 7168: eta = -3.28363, phi = 0.213214, deta = 0.182156, dphi = 0.415062, et = 0 - sampling = 2, 1 SCIndices: 33488 (5), -tower 7169: eta = -3.24656, phi = 0.589655, deta = 0.246206, dphi = 0.275489, et = 0 - sampling = 2, 1 SCIndices: 33489 (5), -tower 7170: eta = -3.24163, phi = 0.991525, deta = 0.271162, dphi = 0.294771, et = 0 - sampling = 2, 1 SCIndices: 33490 (5), -tower 7171: eta = -3.31016, phi = 1.36014, deta = 0.229197, dphi = 0.411498, et = 0 - sampling = 2, 1 SCIndices: 33491 (5), -tower 7172: eta = -3.31016, phi = 1.78146, deta = 0.229197, dphi = 0.411498, et = 0 - sampling = 2, 1 SCIndices: 33492 (5), -tower 7173: eta = -3.24517, phi = 2.15558, deta = 0.272468, dphi = 0.294832, et = 62.879 - sampling = 2, 1 SCIndices: 33493 (5), -tower 7174: eta = -3.24991, phi = 2.54411, deta = 0.259874, dphi = 0.286382, et = 0 - sampling = 2, 1 SCIndices: 33494 (5), -tower 7175: eta = -3.28363, phi = 2.92838, deta = 0.182156, dphi = 0.415062, et = 0 - sampling = 2, 1 SCIndices: 33495 (5), -tower 7176: eta = -3.28363, phi = -2.92838, deta = 0.182156, dphi = 0.415062, et = 0 - sampling = 2, 1 SCIndices: 33496 (5), -tower 7177: eta = -3.24656, phi = -2.55194, deta = 0.246206, dphi = 0.275489, et = 0 - sampling = 2, 1 SCIndices: 33497 (5), -tower 7178: eta = -3.24163, phi = -2.15007, deta = 0.271162, dphi = 0.294771, et = 231.42 - sampling = 2, 1 SCIndices: 33498 (5), -tower 7179: eta = -3.31016, phi = -1.78146, deta = 0.229196, dphi = 0.411498, et = 0 - sampling = 2, 1 SCIndices: 33499 (5), -tower 7180: eta = -3.31016, phi = -1.36014, deta = 0.229196, dphi = 0.411498, et = 0 - sampling = 2, 1 SCIndices: 33500 (5), -tower 7181: eta = -3.24517, phi = -0.986016, deta = 0.272468, dphi = 0.294832, et = 299.597 - sampling = 2, 1 SCIndices: 33501 (5), -tower 7182: eta = -3.24991, phi = -0.597481, deta = 0.259874, dphi = 0.286382, et = 0 - sampling = 2, 1 SCIndices: 33502 (5), -tower 7183: eta = -3.28363, phi = -0.213214, deta = 0.182156, dphi = 0.415062, et = 0 - sampling = 2, 1 SCIndices: 33503 (5), -tower 7184: eta = -3.37786, phi = 0.175322, deta = 0.186077, dphi = 0.344926, et = 0 - sampling = 2, 1 SCIndices: 33504 (5), -tower 7185: eta = -3.34822, phi = 0.599708, deta = 0.332732, dphi = 0.400716, et = 0 - sampling = 2, 1 SCIndices: 33505 (5), -tower 7186: eta = -3.3307, phi = 0.982455, deta = 0.310391, dphi = 0.281972, et = 0 - sampling = 2, 1 SCIndices: 33506 (5), -tower 7187: eta = -3.43183, phi = 1.38068, deta = 0.250916, dphi = 0.374048, et = 0 - sampling = 2, 1 SCIndices: 33507 (5), -tower 7188: eta = -3.43183, phi = 1.76092, deta = 0.250916, dphi = 0.374048, et = 18.5425 - sampling = 2, 1 SCIndices: 33508 (5), -tower 7189: eta = -3.3307, phi = 2.15914, deta = 0.310391, dphi = 0.281972, et = 0 - sampling = 2, 1 SCIndices: 33509 (5), -tower 7190: eta = -3.34822, phi = 2.54188, deta = 0.332732, dphi = 0.400716, et = 0 - sampling = 2, 1 SCIndices: 33510 (5), -tower 7191: eta = -3.37786, phi = 2.96627, deta = 0.186077, dphi = 0.344926, et = 0 - sampling = 2, 1 SCIndices: 33511 (5), -tower 7192: eta = -3.37786, phi = -2.96627, deta = 0.186077, dphi = 0.344926, et = -53.978 - sampling = 2, 1 SCIndices: 33512 (5), -tower 7193: eta = -3.34822, phi = -2.54188, deta = 0.332732, dphi = 0.400716, et = 0 - sampling = 2, 1 SCIndices: 33513 (5), -tower 7194: eta = -3.3307, phi = -2.15914, deta = 0.310391, dphi = 0.281972, et = 181.934 - sampling = 2, 1 SCIndices: 33514 (5), -tower 7195: eta = -3.43183, phi = -1.76092, deta = 0.250916, dphi = 0.374048, et = 290.554 - sampling = 2, 1 SCIndices: 33515 (5), -tower 7196: eta = -3.43183, phi = -1.38068, deta = 0.250916, dphi = 0.374048, et = 0 - sampling = 2, 1 SCIndices: 33516 (5), -tower 7197: eta = -3.3307, phi = -0.982455, deta = 0.310391, dphi = 0.281972, et = 0 - sampling = 2, 1 SCIndices: 33517 (5), -tower 7198: eta = -3.34822, phi = -0.599708, deta = 0.332732, dphi = 0.400716, et = 266.64 - sampling = 2, 1 SCIndices: 33518 (5), -tower 7199: eta = -3.37786, phi = -0.175322, deta = 0.186077, dphi = 0.344926, et = 0 - sampling = 2, 1 SCIndices: 33519 (5), -tower 7200: eta = -3.46978, phi = 0.192442, deta = 0.205697, dphi = 0.377332, et = 0 - sampling = 2, 1 SCIndices: 33520 (5), -tower 7201: eta = -3.45732, phi = 0.602438, deta = 0.320682, dphi = 0.352192, et = 0 - sampling = 2, 1 SCIndices: 33521 (5), -tower 7202: eta = -3.42767, phi = 1.02682, deta = 0.254625, dphi = 0.272674, et = 0 - sampling = 2, 1 SCIndices: 33522 (5), -tower 7203: eta = -3.55969, phi = 1.35431, deta = 0.287277, dphi = 0.423856, et = 0 - sampling = 2, 1 SCIndices: 33523 (5), -tower 7204: eta = -3.55969, phi = 1.78729, deta = 0.287277, dphi = 0.423856, et = 0 - sampling = 2, 1 SCIndices: 33524 (5), -tower 7205: eta = -3.42767, phi = 2.11477, deta = 0.254625, dphi = 0.272675, et = 0 - sampling = 2, 1 SCIndices: 33525 (5), -tower 7206: eta = -3.45732, phi = 2.53916, deta = 0.320682, dphi = 0.352192, et = 0 - sampling = 2, 1 SCIndices: 33526 (5), -tower 7207: eta = -3.46978, phi = 2.94915, deta = 0.205697, dphi = 0.377332, et = 0 - sampling = 2, 1 SCIndices: 33527 (5), -tower 7208: eta = -3.46978, phi = -2.94915, deta = 0.205697, dphi = 0.377332, et = 0 - sampling = 2, 1 SCIndices: 33528 (5), -tower 7209: eta = -3.45732, phi = -2.53916, deta = 0.320682, dphi = 0.352192, et = 558.209 - sampling = 2, 1 SCIndices: 33529 (5), -tower 7210: eta = -3.42767, phi = -2.11477, deta = 0.254625, dphi = 0.272675, et = 103.409 - sampling = 2, 1 SCIndices: 33530 (5), -tower 7211: eta = -3.55969, phi = -1.78729, deta = 0.287277, dphi = 0.423856, et = 0 - sampling = 2, 1 SCIndices: 33531 (5), -tower 7212: eta = -3.55969, phi = -1.35431, deta = 0.287277, dphi = 0.423856, et = 0 - sampling = 2, 1 SCIndices: 33532 (5), -tower 7213: eta = -3.42767, phi = -1.02682, deta = 0.254625, dphi = 0.272675, et = 0 - sampling = 2, 1 SCIndices: 33533 (5), -tower 7214: eta = -3.45732, phi = -0.602438, deta = 0.320682, dphi = 0.352192, et = 479.496 - sampling = 2, 1 SCIndices: 33534 (5), -tower 7215: eta = -3.46978, phi = -0.192442, deta = 0.205697, dphi = 0.377332, et = 354.946 - sampling = 2, 1 SCIndices: 33535 (5), -tower 7216: eta = -3.57069, phi = 0.213213, deta = 0.230042, dphi = 0.416173, et = 0 - sampling = 2, 1 SCIndices: 33536 (5), -tower 7217: eta = -3.57988, phi = 0.605894, deta = 0.3147, dphi = 0.299743, et = 0 - sampling = 2, 1 SCIndices: 33537 (5), -tower 7218: eta = -3.53545, phi = 0.956281, deta = 0.286565, dphi = 0.30113, et = 412.718 - sampling = 2, 1 SCIndices: 33538 (5), -tower 7219: eta = -3.71906, phi = 1.38068, deta = 0.328893, dphi = 0.376286, et = 0 - sampling = 2, 1 SCIndices: 33539 (5), -tower 7220: eta = -3.71906, phi = 1.76092, deta = 0.328893, dphi = 0.376286, et = 0 - sampling = 2, 1 SCIndices: 33540 (5), -tower 7221: eta = -3.53545, phi = 2.18531, deta = 0.286565, dphi = 0.30113, et = 0 - sampling = 2, 1 SCIndices: 33541 (5), -tower 7222: eta = -3.57988, phi = 2.5357, deta = 0.3147, dphi = 0.299743, et = 0 - sampling = 2, 1 SCIndices: 33542 (5), -tower 7223: eta = -3.57069, phi = 2.92838, deta = 0.230042, dphi = 0.416173, et = 0 - sampling = 2, 1 SCIndices: 33543 (5), -tower 7224: eta = -3.57069, phi = -2.92838, deta = 0.230042, dphi = 0.416173, et = 0 - sampling = 2, 1 SCIndices: 33544 (5), -tower 7225: eta = -3.57988, phi = -2.5357, deta = 0.3147, dphi = 0.299743, et = 0 - sampling = 2, 1 SCIndices: 33545 (5), -tower 7226: eta = -3.53545, phi = -2.18531, deta = 0.286565, dphi = 0.30113, et = 412.14 - sampling = 2, 1 SCIndices: 33546 (5), -tower 7227: eta = -3.71906, phi = -1.76092, deta = 0.328893, dphi = 0.376286, et = 0 - sampling = 2, 1 SCIndices: 33547 (5), -tower 7228: eta = -3.71906, phi = -1.38068, deta = 0.328893, dphi = 0.376286, et = 0 - sampling = 2, 1 SCIndices: 33548 (5), -tower 7229: eta = -3.53545, phi = -0.956281, deta = 0.286565, dphi = 0.30113, et = -0.692727 - sampling = 2, 1 SCIndices: 33549 (5), -tower 7230: eta = -3.57988, phi = -0.605894, deta = 0.3147, dphi = 0.299743, et = 0 - sampling = 2, 1 SCIndices: 33550 (5), -tower 7231: eta = -3.57069, phi = -0.213213, deta = 0.230042, dphi = 0.416173, et = 0 - sampling = 2, 1 SCIndices: 33551 (5), -tower 7232: eta = -3.82766, phi = 0.183485, deta = 0.283846, dphi = 0.362442, et = 524.43 - sampling = 2, 1 SCIndices: 33552 (5), -tower 7233: eta = -3.76522, phi = 0.540097, deta = 0.382144, dphi = 0.357606, et = 228.96 - sampling = 2, 1 SCIndices: 33553 (5), -tower 7234: eta = -3.72354, phi = 0.964912, deta = 0.34571, dphi = 0.36394, et = 0 - sampling = 2, 1 SCIndices: 33554 (5), -tower 7235: eta = -3.89341, phi = 1.34384, deta = 0.392686, dphi = 0.447191, et = 320.056 - sampling = 2, 1 SCIndices: 33555 (5), -tower 7236: eta = -3.89341, phi = 1.79775, deta = 0.392686, dphi = 0.447191, et = 0 - sampling = 2, 1 SCIndices: 33556 (5), -tower 7237: eta = -3.72354, phi = 2.17668, deta = 0.34571, dphi = 0.36394, et = 0 - sampling = 2, 1 SCIndices: 33557 (5), -tower 7238: eta = -3.76522, phi = 2.6015, deta = 0.382144, dphi = 0.357606, et = 709.651 - sampling = 2, 1 SCIndices: 33558 (5), -tower 7239: eta = -3.82766, phi = 2.95811, deta = 0.283846, dphi = 0.362442, et = 0 - sampling = 2, 1 SCIndices: 33559 (5), -tower 7240: eta = -3.82766, phi = -2.95811, deta = 0.283846, dphi = 0.362442, et = 0 - sampling = 2, 1 SCIndices: 33560 (5), -tower 7241: eta = -3.76522, phi = -2.6015, deta = 0.382144, dphi = 0.357606, et = 0 - sampling = 2, 1 SCIndices: 33561 (5), -tower 7242: eta = -3.72354, phi = -2.17668, deta = 0.34571, dphi = 0.36394, et = 248.245 - sampling = 2, 1 SCIndices: 33562 (5), -tower 7243: eta = -3.89341, phi = -1.79775, deta = 0.392686, dphi = 0.447191, et = 0 - sampling = 2, 1 SCIndices: 33563 (5), -tower 7244: eta = -3.89341, phi = -1.34384, deta = 0.392686, dphi = 0.447191, et = 0 - sampling = 2, 1 SCIndices: 33564 (5), -tower 7245: eta = -3.72354, phi = -0.964912, deta = 0.34571, dphi = 0.36394, et = 0 - sampling = 2, 1 SCIndices: 33565 (5), -tower 7246: eta = -3.76522, phi = -0.540097, deta = 0.382144, dphi = 0.357606, et = 0 - sampling = 2, 1 SCIndices: 33566 (5), -tower 7247: eta = -3.82766, phi = -0.183485, deta = 0.283846, dphi = 0.362442, et = 0 - sampling = 2, 1 SCIndices: 33567 (5), -tower 7248: eta = -4.24615, phi = 0.281032, deta = 0.634066, dphi = 0.561777, et = 0 - sampling = 2, 1 SCIndices: 33568 (5), -tower 7249: eta = -4.14238, phi = 0.523603, deta = 0.558737, dphi = 0.520422, et = 0 - sampling = 2, 1 SCIndices: 33569 (5), -tower 7250: eta = -4.13433, phi = 0.839027, deta = 0.531365, dphi = 0.539828, et = 0 - sampling = 2, 1 SCIndices: 33570 (5), -tower 7251: eta = -4.18624, phi = 1.36834, deta = 0.644514, dphi = 0.41529, et = 1345.14 - sampling = 2, 1 SCIndices: 33571 (5), -tower 7252: eta = -4.18624, phi = 1.77326, deta = 0.644514, dphi = 0.41529, et = 381.748 - sampling = 2, 1 SCIndices: 33572 (5), -tower 7253: eta = -4.13433, phi = 2.30257, deta = 0.531365, dphi = 0.539828, et = 0 - sampling = 2, 1 SCIndices: 33573 (5), -tower 7254: eta = -4.14238, phi = 2.61799, deta = 0.558737, dphi = 0.520422, et = 1619.11 - sampling = 2, 1 SCIndices: 33574 (5), -tower 7255: eta = -4.24615, phi = 2.86056, deta = 0.634066, dphi = 0.561777, et = 0 - sampling = 2, 1 SCIndices: 33575 (5), -tower 7256: eta = -4.24615, phi = -2.86056, deta = 0.634066, dphi = 0.561777, et = 0 - sampling = 2, 1 SCIndices: 33576 (6), -tower 7257: eta = -4.14238, phi = -2.61799, deta = 0.558737, dphi = 0.520422, et = 0 - sampling = 2, 1 SCIndices: 33577 (6), -tower 7258: eta = -4.13433, phi = -2.30257, deta = 0.531365, dphi = 0.539828, et = 0 - sampling = 2, 1 SCIndices: 33578 (6), -tower 7259: eta = -4.18624, phi = -1.77326, deta = 0.644514, dphi = 0.41529, et = 0 - sampling = 2, 1 SCIndices: 33579 (6), -tower 7260: eta = -4.18624, phi = -1.36834, deta = 0.644514, dphi = 0.41529, et = 0 - sampling = 2, 1 SCIndices: 33580 (6), -tower 7261: eta = -4.13433, phi = -0.839027, deta = 0.531365, dphi = 0.539828, et = 0 - sampling = 2, 1 SCIndices: 33581 (6), -tower 7262: eta = -4.14238, phi = -0.523603, deta = 0.558737, dphi = 0.520422, et = 1129.59 - sampling = 2, 1 SCIndices: 33582 (6), -tower 7263: eta = -4.24615, phi = -0.281032, deta = 0.634066, dphi = 0.561777, et = 193.383 - sampling = 2, 1 SCIndices: 33583 (6), -tower 7264: eta = -4.75141, phi = 0.231934, deta = 0.214392, dphi = 0.449607, et = 0 - sampling = 2, 1 SCIndices: 33584 (6), -tower 7265: eta = -4.5387, phi = 0.572773, deta = 0.555408, dphi = 0.47227, et = 0 - sampling = 2, 1 SCIndices: 33585 (6), -tower 7266: eta = -4.53282, phi = 0.990724, deta = 0.542397, dphi = 0.540624, et = 0 - sampling = 2, 1 SCIndices: 33586 (6), -tower 7267: eta = -4.60051, phi = 1.41806, deta = 0.393632, dphi = 0.319066, et = 188.495 - sampling = 2, 1 SCIndices: 33587 (6), -tower 7268: eta = -4.60145, phi = 1.71726, deta = 0.393922, dphi = 0.306864, et = 0 - sampling = 2, 1 SCIndices: 33588 (6), -tower 7269: eta = -4.57669, phi = 2.11049, deta = 0.568957, dphi = 0.508113, et = -338.092 - sampling = 2, 1 SCIndices: 33589 (6), -tower 7270: eta = -4.51338, phi = 2.57295, deta = 0.501925, dphi = 0.430098, et = 0 - sampling = 2, 1 SCIndices: 33590 (6), -tower 7271: eta = -4.75141, phi = 2.90966, deta = 0.214392, dphi = 0.449607, et = 0 - sampling = 2, 1 SCIndices: 33591 (6), -tower 7272: eta = -4.75141, phi = -2.90966, deta = 0.214392, dphi = 0.449607, et = 0 - sampling = 2, 1 SCIndices: 33592 (6), -tower 7273: eta = -4.5387, phi = -2.56882, deta = 0.555408, dphi = 0.47227, et = 0 - sampling = 2, 1 SCIndices: 33593 (6), -tower 7274: eta = -4.53282, phi = -2.15087, deta = 0.542397, dphi = 0.540624, et = 0 - sampling = 2, 1 SCIndices: 33594 (6), -tower 7275: eta = -4.60051, phi = -1.72353, deta = 0.393632, dphi = 0.319066, et = 969.083 - sampling = 2, 1 SCIndices: 33595 (6), -tower 7276: eta = -4.60145, phi = -1.42434, deta = 0.393922, dphi = 0.306864, et = 0 - sampling = 2, 1 SCIndices: 33596 (6), -tower 7277: eta = -4.57669, phi = -1.0311, deta = 0.568957, dphi = 0.508113, et = 0 - sampling = 2, 1 SCIndices: 33597 (6), -tower 7278: eta = -4.51338, phi = -0.568641, deta = 0.501925, dphi = 0.430098, et = 0 - sampling = 2, 1 SCIndices: 33598 (6), -tower 7279: eta = -4.75141, phi = -0.231934, deta = 0.214392, dphi = 0.449607, et = 0 - sampling = 2, 1 SCIndices: 33599 (6), -tower 7280: eta = -3.3273, phi = 0.173891, deta = 0.190979, dphi = 0.342304, et = 0 - sampling = 2, 1 SCIndices: 33600 (6), -tower 7281: eta = -3.37225, phi = 0.574621, deta = 0.327303, dphi = 0.326395, et = 0 - sampling = 2, 1 SCIndices: 33601 (6), -tower 7282: eta = -3.34196, phi = 0.96351, deta = 0.309189, dphi = 0.337446, et = 244.69 - sampling = 2, 1 SCIndices: 33602 (6), -tower 7283: eta = -3.33155, phi = 1.38362, deta = 0.177164, dphi = 0.363469, et = 0 - sampling = 2, 1 SCIndices: 33603 (6), -tower 7284: eta = -3.33307, phi = 1.75689, deta = 0.17999, dphi = 0.368536, et = 0 - sampling = 2, 1 SCIndices: 33604 (6), -tower 7285: eta = -3.35898, phi = 2.18971, deta = 0.303808, dphi = 0.35281, et = 0 - sampling = 2, 1 SCIndices: 33605 (6), -tower 7286: eta = -3.39175, phi = 2.57553, deta = 0.324937, dphi = 0.345025, et = 0 - sampling = 2, 1 SCIndices: 33606 (6), -tower 7287: eta = -3.32934, phi = 2.96023, deta = 0.204905, dphi = 0.356611, et = 0 - sampling = 2, 1 SCIndices: 33607 (6), -tower 7288: eta = -3.3273, phi = -2.9677, deta = 0.190979, dphi = 0.342305, et = 0 - sampling = 2, 1 SCIndices: 33608 (6), -tower 7289: eta = -3.37225, phi = -2.56697, deta = 0.327303, dphi = 0.326395, et = 0 - sampling = 2, 1 SCIndices: 33609 (6), -tower 7290: eta = -3.34196, phi = -2.17808, deta = 0.309189, dphi = 0.337446, et = 42.5714 - sampling = 2, 1 SCIndices: 33610 (6), -tower 7291: eta = -3.33155, phi = -1.75798, deta = 0.177165, dphi = 0.363469, et = 0 - sampling = 2, 1 SCIndices: 33611 (6), -tower 7292: eta = -3.33307, phi = -1.3847, deta = 0.17999, dphi = 0.368536, et = 91.9658 - sampling = 2, 1 SCIndices: 33612 (6), -tower 7293: eta = -3.35898, phi = -0.95188, deta = 0.303808, dphi = 0.35281, et = 57.808 - sampling = 2, 1 SCIndices: 33613 (6), -tower 7294: eta = -3.39175, phi = -0.566059, deta = 0.324937, dphi = 0.345025, et = 0 - sampling = 2, 1 SCIndices: 33614 (6), -tower 7295: eta = -3.32934, phi = -0.18136, deta = 0.204905, dphi = 0.356611, et = 103.702 - sampling = 2, 1 SCIndices: 33615 (6), -tower 7296: eta = -3.56004, phi = 0.213216, deta = 0.330235, dphi = 0.419327, et = 174.29 - sampling = 2, 1 SCIndices: 33616 (6), -tower 7297: eta = -3.503, phi = 0.56207, deta = 0.414811, dphi = 0.33368, et = 0 - sampling = 2, 1 SCIndices: 33617 (6), -tower 7298: eta = -3.53976, phi = 0.978027, deta = 0.351754, dphi = 0.426133, et = 0 - sampling = 2, 1 SCIndices: 33618 (6), -tower 7299: eta = -3.41647, phi = 1.35758, deta = 0.254504, dphi = 0.416843, et = 0 - sampling = 2, 1 SCIndices: 33619 (6), -tower 7300: eta = -3.41647, phi = 1.78401, deta = 0.254504, dphi = 0.416843, et = 0 - sampling = 2, 1 SCIndices: 33620 (6), -tower 7301: eta = -3.53976, phi = 2.16357, deta = 0.351754, dphi = 0.426133, et = 0 - sampling = 2, 1 SCIndices: 33621 (6), -tower 7302: eta = -3.56923, phi = 2.5357, deta = 0.314695, dphi = 0.299747, et = 0 - sampling = 2, 1 SCIndices: 33622 (6), -tower 7303: eta = -3.56004, phi = 2.92838, deta = 0.330235, dphi = 0.419327, et = 0 - sampling = 2, 1 SCIndices: 33623 (6), -tower 7304: eta = -3.56004, phi = -2.92838, deta = 0.330235, dphi = 0.419327, et = 0 - sampling = 2, 1 SCIndices: 33624 (6), -tower 7305: eta = -3.503, phi = -2.57952, deta = 0.414811, dphi = 0.333679, et = 0 - sampling = 2, 1 SCIndices: 33625 (6), -tower 7306: eta = -3.53976, phi = -2.16357, deta = 0.351755, dphi = 0.426133, et = 224.215 - sampling = 2, 1 SCIndices: 33626 (6), -tower 7307: eta = -3.41647, phi = -1.78401, deta = 0.254503, dphi = 0.416844, et = 303.498 - sampling = 2, 1 SCIndices: 33627 (6), -tower 7308: eta = -3.41647, phi = -1.35758, deta = 0.254503, dphi = 0.416844, et = 0 - sampling = 2, 1 SCIndices: 33628 (6), -tower 7309: eta = -3.53976, phi = -0.978027, deta = 0.351755, dphi = 0.426133, et = 0 - sampling = 2, 1 SCIndices: 33629 (6), -tower 7310: eta = -3.56923, phi = -0.605892, deta = 0.314695, dphi = 0.299747, et = 0 - sampling = 2, 1 SCIndices: 33630 (6), -tower 7311: eta = -3.56004, phi = -0.213216, deta = 0.330235, dphi = 0.419327, et = 0 - sampling = 2, 1 SCIndices: 33631 (6), -tower 7312: eta = -3.75023, phi = 0.171505, deta = 0.392267, dphi = 0.34298, et = 0 - sampling = 2, 1 SCIndices: 33632 (6), -tower 7313: eta = -3.8121, phi = 0.576036, deta = 0.403075, dphi = 0.38067, et = 0 - sampling = 2, 1 SCIndices: 33633 (6), -tower 7314: eta = -3.7815, phi = 0.914743, deta = 0.486089, dphi = 0.45572, et = 0 - sampling = 2, 1 SCIndices: 33634 (6), -tower 7315: eta = -3.7084, phi = 1.38067, deta = 0.328878, dphi = 0.376273, et = 132.911 - sampling = 2, 1 SCIndices: 33635 (6), -tower 7316: eta = -3.7084, phi = 1.76092, deta = 0.328878, dphi = 0.376273, et = 0 - sampling = 2, 1 SCIndices: 33636 (6), -tower 7317: eta = -3.7815, phi = 2.22685, deta = 0.486089, dphi = 0.45572, et = 0 - sampling = 2, 1 SCIndices: 33637 (6), -tower 7318: eta = -3.90209, phi = 2.50303, deta = 0.600762, dphi = 0.519695, et = 0 - sampling = 2, 1 SCIndices: 33638 (6), -tower 7319: eta = -3.75023, phi = 2.97009, deta = 0.392267, dphi = 0.34298, et = 0 - sampling = 2, 1 SCIndices: 33639 (6), -tower 7320: eta = -3.75023, phi = -2.97009, deta = 0.392267, dphi = 0.34298, et = 271.678 - sampling = 2, 1 SCIndices: 33640 (6), -tower 7321: eta = -3.8121, phi = -2.56556, deta = 0.403075, dphi = 0.38067, et = 0 - sampling = 2, 1 SCIndices: 33641 (6), -tower 7322: eta = -3.7815, phi = -2.22685, deta = 0.486089, dphi = 0.45572, et = 0 - sampling = 2, 1 SCIndices: 33642 (6), -tower 7323: eta = -3.7084, phi = -1.76092, deta = 0.328879, dphi = 0.376273, et = 0 - sampling = 2, 1 SCIndices: 33643 (6), -tower 7324: eta = -3.7084, phi = -1.38067, deta = 0.328879, dphi = 0.376273, et = 0 - sampling = 2, 1 SCIndices: 33644 (6), -tower 7325: eta = -3.7815, phi = -0.914743, deta = 0.486089, dphi = 0.45572, et = 0 - sampling = 2, 1 SCIndices: 33645 (6), -tower 7326: eta = -3.90209, phi = -0.638559, deta = 0.600763, dphi = 0.519695, et = 8.78916 - sampling = 2, 1 SCIndices: 33646 (6), -tower 7327: eta = -3.75023, phi = -0.171505, deta = 0.392267, dphi = 0.34298, et = 0 - sampling = 2, 1 SCIndices: 33647 (6), -tower 7328: eta = -4.29773, phi = 0.299639, deta = 0.798396, dphi = 0.61329, et = 0 - sampling = 2, 1 SCIndices: 33648 (6), -tower 7329: eta = -4.35548, phi = 0.646366, deta = 0.60874, dphi = 0.636768, et = 0 - sampling = 2, 1 SCIndices: 33649 (6), -tower 7330: eta = -4.37384, phi = 1.03761, deta = 0.747535, dphi = 0.573998, et = 0 - sampling = 2, 1 SCIndices: 33650 (6), -tower 7331: eta = -4.21353, phi = 1.25213, deta = 0.797206, dphi = 0.647406, et = 0 - sampling = 2, 1 SCIndices: 33651 (6), -tower 7332: eta = -4.21353, phi = 1.88947, deta = 0.797206, dphi = 0.647406, et = 0 - sampling = 2, 1 SCIndices: 33652 (6), -tower 7333: eta = -4.33869, phi = 2.1065, deta = 0.668256, dphi = 0.510698, et = 0 - sampling = 2, 1 SCIndices: 33653 (6), -tower 7334: eta = -4.48868, phi = 2.60701, deta = 0.681853, dphi = 0.521885, et = 0 - sampling = 2, 1 SCIndices: 33654 (6), -tower 7335: eta = -4.30074, phi = 2.84102, deta = 0.806607, dphi = 0.616022, et = 0 - sampling = 2, 1 SCIndices: 33655 (6), -tower 7336: eta = -4.29773, phi = -2.84195, deta = 0.798396, dphi = 0.61329, et = 0 - sampling = 2, 1 SCIndices: 33656 (6), -tower 7337: eta = -4.35548, phi = -2.49523, deta = 0.60874, dphi = 0.636768, et = 0 - sampling = 2, 1 SCIndices: 33657 (6), -tower 7338: eta = -4.37384, phi = -2.10398, deta = 0.747535, dphi = 0.573998, et = 0 - sampling = 2, 1 SCIndices: 33658 (6), -tower 7339: eta = -4.21353, phi = -1.88947, deta = 0.797206, dphi = 0.647406, et = 0 - sampling = 2, 1 SCIndices: 33659 (6), -tower 7340: eta = -4.21353, phi = -1.25213, deta = 0.797206, dphi = 0.647406, et = 0 - sampling = 2, 1 SCIndices: 33660 (6), -tower 7341: eta = -4.33869, phi = -1.03509, deta = 0.668256, dphi = 0.510698, et = 0 - sampling = 2, 1 SCIndices: 33661 (6), -tower 7342: eta = -4.48868, phi = -0.534585, deta = 0.681853, dphi = 0.521885, et = 157.098 - sampling = 2, 1 SCIndices: 33662 (6), -tower 7343: eta = -4.30074, phi = -0.300573, deta = 0.806607, dphi = 0.616022, et = 0 - sampling = 2, 1 SCIndices: 33663 (6), -tower 7344: eta = 3.24166, phi = 0.204926, deta = 0.243779, dphi = 0.401335, et = 0 - sampling = 2, 1 SCIndices: 33680 (6), -tower 7345: eta = 3.2564, phi = 0.58325, deta = 0.301396, dphi = 0.368937, et = 0 - sampling = 2, 1 SCIndices: 33681 (6), -tower 7346: eta = 3.26036, phi = 0.978016, deta = 0.289645, dphi = 0.306523, et = 0 - sampling = 2, 1 SCIndices: 33682 (6), -tower 7347: eta = 3.27242, phi = 1.36744, deta = 0.159021, dphi = 0.396581, et = 0 - sampling = 2, 1 SCIndices: 33683 (6), -tower 7348: eta = 3.27242, phi = 1.77416, deta = 0.159021, dphi = 0.396581, et = 0 - sampling = 2, 1 SCIndices: 33684 (6), -tower 7349: eta = 3.26036, phi = 2.16358, deta = 0.289645, dphi = 0.306523, et = 0 - sampling = 2, 1 SCIndices: 33685 (6), -tower 7350: eta = 3.2564, phi = 2.55834, deta = 0.301396, dphi = 0.368937, et = 0 - sampling = 2, 1 SCIndices: 33686 (6), -tower 7351: eta = 3.20413, phi = 2.94434, deta = 0.16615, dphi = 0.385486, et = 0 - sampling = 2, 1 SCIndices: 33687 (6), -tower 7352: eta = 3.24166, phi = -2.93667, deta = 0.243779, dphi = 0.401335, et = 424.197 - sampling = 2, 1 SCIndices: 33688 (6), -tower 7353: eta = 3.2564, phi = -2.55834, deta = 0.301396, dphi = 0.368937, et = 0 - sampling = 2, 1 SCIndices: 33689 (6), -tower 7354: eta = 3.26036, phi = -2.16358, deta = 0.289645, dphi = 0.306523, et = 0 - sampling = 2, 1 SCIndices: 33690 (6), -tower 7355: eta = 3.27242, phi = -1.77416, deta = 0.159021, dphi = 0.396581, et = 0 - sampling = 2, 1 SCIndices: 33691 (6), -tower 7356: eta = 3.27242, phi = -1.36744, deta = 0.159021, dphi = 0.396581, et = 0 - sampling = 2, 1 SCIndices: 33692 (6), -tower 7357: eta = 3.26036, phi = -0.978016, deta = 0.289645, dphi = 0.306523, et = 0 - sampling = 2, 1 SCIndices: 33693 (6), -tower 7358: eta = 3.2564, phi = -0.58325, deta = 0.301396, dphi = 0.368937, et = 0 - sampling = 2, 1 SCIndices: 33694 (6), -tower 7359: eta = 3.20413, phi = -0.197251, deta = 0.16615, dphi = 0.385486, et = 0 - sampling = 2, 1 SCIndices: 33695 (6), -tower 7360: eta = 3.33471, phi = 0.14949, deta = 0.0956653, dphi = 0.294826, et = 0 - sampling = 2, 1 SCIndices: 33696 (6), -tower 7361: eta = 3.3452, phi = 0.599699, deta = 0.301595, dphi = 0.343688, et = 0 - sampling = 2, 1 SCIndices: 33697 (6), -tower 7362: eta = 3.33495, phi = 1.02857, deta = 0.260405, dphi = 0.316433, et = 0 - sampling = 2, 1 SCIndices: 33698 (6), -tower 7363: eta = 3.3516, phi = 1.39497, deta = 0.160814, dphi = 0.345439, et = 0 - sampling = 2, 1 SCIndices: 33699 (6), -tower 7364: eta = 3.3516, phi = 1.74662, deta = 0.160814, dphi = 0.345439, et = 0 - sampling = 2, 1 SCIndices: 33700 (6), -tower 7365: eta = 3.36709, phi = 2.13288, deta = 0.321175, dphi = 0.342443, et = 0 - sampling = 2, 1 SCIndices: 33701 (6), -tower 7366: eta = 3.3452, phi = 2.54189, deta = 0.301595, dphi = 0.343688, et = 0 - sampling = 2, 1 SCIndices: 33702 (6), -tower 7367: eta = 3.32107, phi = 2.91941, deta = 0.104789, dphi = 0.287211, et = 0 - sampling = 2, 1 SCIndices: 33703 (6), -tower 7368: eta = 3.33471, phi = -2.9921, deta = 0.0956653, dphi = 0.294826, et = 0 - sampling = 2, 1 SCIndices: 33704 (7), -tower 7369: eta = 3.3452, phi = -2.54189, deta = 0.301595, dphi = 0.343688, et = 0 - sampling = 2, 1 SCIndices: 33705 (7), -tower 7370: eta = 3.33495, phi = -2.11303, deta = 0.260405, dphi = 0.316433, et = 0 - sampling = 2, 1 SCIndices: 33706 (7), -tower 7371: eta = 3.3516, phi = -1.74662, deta = 0.160814, dphi = 0.345439, et = 242.426 - sampling = 2, 1 SCIndices: 33707 (7), -tower 7372: eta = 3.3516, phi = -1.39497, deta = 0.160814, dphi = 0.345439, et = 0 - sampling = 2, 1 SCIndices: 33708 (7), -tower 7373: eta = 3.36709, phi = -1.00871, deta = 0.321175, dphi = 0.342443, et = 0 - sampling = 2, 1 SCIndices: 33709 (7), -tower 7374: eta = 3.3452, phi = -0.599699, deta = 0.301595, dphi = 0.343688, et = 0 - sampling = 2, 1 SCIndices: 33710 (7), -tower 7375: eta = 3.32107, phi = -0.222187, deta = 0.104789, dphi = 0.287211, et = 77.9686 - sampling = 2, 1 SCIndices: 33711 (7), -tower 7376: eta = 3.40702, phi = 0.242561, deta = 0.117944, dphi = 0.311677, et = 0 - sampling = 2, 1 SCIndices: 33712 (7), -tower 7377: eta = 3.40383, phi = 0.592761, deta = 0.234377, dphi = 0.284081, et = 0 - sampling = 2, 1 SCIndices: 33713 (7), -tower 7378: eta = 3.39988, phi = 0.987531, deta = 0.283125, dphi = 0.333415, et = 0 - sampling = 2, 1 SCIndices: 33714 (7), -tower 7379: eta = 3.42882, phi = 1.38066, deta = 0.175508, dphi = 0.372437, et = 0 - sampling = 2, 1 SCIndices: 33715 (7), -tower 7380: eta = 3.42882, phi = 1.76094, deta = 0.175508, dphi = 0.372437, et = 222.46 - sampling = 2, 1 SCIndices: 33716 (7), -tower 7381: eta = 3.42465, phi = 2.11478, deta = 0.254624, dphi = 0.272677, et = -76.7679 - sampling = 2, 1 SCIndices: 33717 (7), -tower 7382: eta = 3.40383, phi = 2.54883, deta = 0.234377, dphi = 0.284081, et = 0 - sampling = 2, 1 SCIndices: 33718 (7), -tower 7383: eta = 3.37129, phi = 2.94725, deta = 0.189825, dphi = 0.38053, et = 0 - sampling = 2, 1 SCIndices: 33719 (7), -tower 7384: eta = 3.40702, phi = -2.89903, deta = 0.117944, dphi = 0.311677, et = 0 - sampling = 2, 1 SCIndices: 33720 (7), -tower 7385: eta = 3.40383, phi = -2.54883, deta = 0.234377, dphi = 0.284081, et = 0 - sampling = 2, 1 SCIndices: 33721 (7), -tower 7386: eta = 3.39988, phi = -2.15406, deta = 0.283125, dphi = 0.333415, et = 141.916 - sampling = 2, 1 SCIndices: 33722 (7), -tower 7387: eta = 3.42882, phi = -1.76094, deta = 0.175508, dphi = 0.372437, et = 205.836 - sampling = 2, 1 SCIndices: 33723 (7), -tower 7388: eta = 3.42882, phi = -1.38066, deta = 0.175508, dphi = 0.372437, et = 266.762 - sampling = 2, 1 SCIndices: 33724 (7), -tower 7389: eta = 3.42465, phi = -1.02681, deta = 0.254624, dphi = 0.272677, et = 0 - sampling = 2, 1 SCIndices: 33725 (7), -tower 7390: eta = 3.40383, phi = -0.592761, deta = 0.234377, dphi = 0.284081, et = 223.231 - sampling = 2, 1 SCIndices: 33726 (7), -tower 7391: eta = 3.37129, phi = -0.194339, deta = 0.189825, dphi = 0.38053, et = 0 - sampling = 2, 1 SCIndices: 33727 (7), -tower 7392: eta = 3.47061, phi = 0.171504, deta = 0.202337, dphi = 0.338001, et = 0 - sampling = 2, 1 SCIndices: 33728 (7), -tower 7393: eta = 3.46609, phi = 0.584933, deta = 0.338736, dphi = 0.389601, et = 0 - sampling = 2, 1 SCIndices: 33729 (7), -tower 7394: eta = 3.49577, phi = 0.981505, deta = 0.27522, dphi = 0.291203, et = 0 - sampling = 2, 1 SCIndices: 33730 (7), -tower 7395: eta = 3.51228, phi = 1.36384, deta = 0.193192, dphi = 0.403819, et = 0 - sampling = 2, 1 SCIndices: 33731 (7), -tower 7396: eta = 3.51228, phi = 1.77775, deta = 0.193192, dphi = 0.403818, et = 1218.69 - sampling = 2, 1 SCIndices: 33732 (7), -tower 7397: eta = 3.5698, phi = 2.21249, deta = 0.298678, dphi = 0.311512, et = 0 - sampling = 2, 1 SCIndices: 33733 (7), -tower 7398: eta = 3.46609, phi = 2.55666, deta = 0.338736, dphi = 0.389601, et = 0 - sampling = 2, 1 SCIndices: 33734 (7), -tower 7399: eta = 3.47061, phi = 2.97009, deta = 0.202337, dphi = 0.338001, et = 0 - sampling = 2, 1 SCIndices: 33735 (7), -tower 7400: eta = 3.47061, phi = -2.97009, deta = 0.202337, dphi = 0.338001, et = 0 - sampling = 2, 1 SCIndices: 33736 (4), -tower 7401: eta = 3.46609, phi = -2.55666, deta = 0.338736, dphi = 0.389601, et = 0 - sampling = 2, 1 SCIndices: 33737 (4), -tower 7402: eta = 3.49577, phi = -2.16009, deta = 0.27522, dphi = 0.291203, et = 0 - sampling = 2, 1 SCIndices: 33738 (4), -tower 7403: eta = 3.51228, phi = -1.77775, deta = 0.193192, dphi = 0.403818, et = 0 - sampling = 2, 1 SCIndices: 33739 (4), -tower 7404: eta = 3.51228, phi = -1.36384, deta = 0.193192, dphi = 0.403819, et = -3.77417 - sampling = 2, 1 SCIndices: 33740 (4), -tower 7405: eta = 3.5698, phi = -0.929101, deta = 0.298678, dphi = 0.311512, et = 0 - sampling = 2, 1 SCIndices: 33741 (4), -tower 7406: eta = 3.46609, phi = -0.584933, deta = 0.338736, dphi = 0.389601, et = 0 - sampling = 2, 1 SCIndices: 33742 (4), -tower 7407: eta = 3.47061, phi = -0.171504, deta = 0.202337, dphi = 0.338001, et = 0 - sampling = 2, 1 SCIndices: 33743 (4), -tower 7408: eta = 3.57238, phi = 0.190126, deta = 0.225524, dphi = 0.373441, et = 0 - sampling = 2, 1 SCIndices: 33744 (5), -tower 7409: eta = 3.55666, phi = 0.537018, deta = 0.232956, dphi = 0.263741, et = 0 - sampling = 2, 1 SCIndices: 33745 (5), -tower 7410: eta = 3.60185, phi = 0.974127, deta = 0.348946, dphi = 0.406411, et = 0 - sampling = 2, 1 SCIndices: 33746 (5), -tower 7411: eta = 3.61421, phi = 1.39927, deta = 0.202441, dphi = 0.337995, et = 0 - sampling = 2, 1 SCIndices: 33747 (5), -tower 7412: eta = 3.61421, phi = 1.74232, deta = 0.202441, dphi = 0.337995, et = 246.363 - sampling = 2, 1 SCIndices: 33748 (5), -tower 7413: eta = 3.63273, phi = 2.11951, deta = 0.314057, dphi = 0.335681, et = 0 - sampling = 2, 1 SCIndices: 33749 (5), -tower 7414: eta = 3.55666, phi = 2.60457, deta = 0.232956, dphi = 0.263741, et = 0 - sampling = 2, 1 SCIndices: 33750 (5), -tower 7415: eta = 3.57238, phi = 2.95147, deta = 0.225524, dphi = 0.373441, et = 2124.85 - sampling = 2, 1 SCIndices: 33751 (5), -tower 7416: eta = 3.57238, phi = -2.95147, deta = 0.225524, dphi = 0.373441, et = 0 - sampling = 2, 1 SCIndices: 33752 (5), -tower 7417: eta = 3.55666, phi = -2.60457, deta = 0.232956, dphi = 0.26374, et = 0 - sampling = 2, 1 SCIndices: 33753 (5), -tower 7418: eta = 3.60185, phi = -2.16747, deta = 0.348946, dphi = 0.406411, et = 0 - sampling = 2, 1 SCIndices: 33754 (5), -tower 7419: eta = 3.61421, phi = -1.74232, deta = 0.202441, dphi = 0.337995, et = 326.872 - sampling = 2, 1 SCIndices: 33755 (5), -tower 7420: eta = 3.61421, phi = -1.39927, deta = 0.202441, dphi = 0.337995, et = 1037.05 - sampling = 2, 1 SCIndices: 33756 (5), -tower 7421: eta = 3.63273, phi = -1.02208, deta = 0.314057, dphi = 0.335681, et = 0 - sampling = 2, 1 SCIndices: 33757 (5), -tower 7422: eta = 3.55666, phi = -0.537018, deta = 0.232956, dphi = 0.26374, et = 291.665 - sampling = 2, 1 SCIndices: 33758 (5), -tower 7423: eta = 3.57238, phi = -0.190126, deta = 0.225524, dphi = 0.37344, et = 0 - sampling = 2, 1 SCIndices: 33759 (5), -tower 7424: eta = 3.68528, phi = 0.213215, deta = 0.254725, dphi = 0.416845, et = 0 - sampling = 2, 1 SCIndices: 33760 (5), -tower 7425: eta = 3.65152, phi = 0.597475, deta = 0.260297, dphi = 0.286379, et = 0 - sampling = 2, 1 SCIndices: 33761 (5), -tower 7426: eta = 3.72051, phi = 0.964886, deta = 0.34571, dphi = 0.36394, et = 0 - sampling = 2, 1 SCIndices: 33762 (5), -tower 7427: eta = 3.82899, phi = 1.35756, deta = 0.254807, dphi = 0.416841, et = 0 - sampling = 2, 1 SCIndices: 33763 (5), -tower 7428: eta = 3.82899, phi = 1.78404, deta = 0.254808, dphi = 0.416841, et = 0 - sampling = 2, 1 SCIndices: 33764 (5), -tower 7429: eta = 3.72051, phi = 2.17671, deta = 0.34571, dphi = 0.36394, et = 0 - sampling = 2, 1 SCIndices: 33765 (5), -tower 7430: eta = 3.65152, phi = 2.54412, deta = 0.260297, dphi = 0.286379, et = 0 - sampling = 2, 1 SCIndices: 33766 (5), -tower 7431: eta = 3.68528, phi = 2.92838, deta = 0.254725, dphi = 0.416845, et = 0 - sampling = 2, 1 SCIndices: 33767 (5), -tower 7432: eta = 3.68528, phi = -2.92838, deta = 0.254725, dphi = 0.416845, et = 0 - sampling = 2, 1 SCIndices: 33768 (5), -tower 7433: eta = 3.65152, phi = -2.54412, deta = 0.260297, dphi = 0.286379, et = 0 - sampling = 2, 1 SCIndices: 33769 (5), -tower 7434: eta = 3.72051, phi = -2.17671, deta = 0.34571, dphi = 0.36394, et = 0 - sampling = 2, 1 SCIndices: 33770 (5), -tower 7435: eta = 3.82899, phi = -1.78404, deta = 0.254808, dphi = 0.416841, et = 0 - sampling = 2, 1 SCIndices: 33771 (5), -tower 7436: eta = 3.82899, phi = -1.35756, deta = 0.254807, dphi = 0.416841, et = 0 - sampling = 2, 1 SCIndices: 33772 (5), -tower 7437: eta = 3.72051, phi = -0.964886, deta = 0.34571, dphi = 0.36394, et = 0 - sampling = 2, 1 SCIndices: 33773 (5), -tower 7438: eta = 3.65152, phi = -0.597475, deta = 0.260297, dphi = 0.286379, et = 0 - sampling = 2, 1 SCIndices: 33774 (5), -tower 7439: eta = 3.68528, phi = -0.213215, deta = 0.254725, dphi = 0.416845, et = 1930.41 - sampling = 2, 1 SCIndices: 33775 (5), -tower 7440: eta = 3.82463, phi = 0.183486, deta = 0.283843, dphi = 0.362436, et = 0 - sampling = 2, 1 SCIndices: 33776 (5), -tower 7441: eta = 3.81973, phi = 0.576031, deta = 0.306432, dphi = 0.340469, et = 0 - sampling = 2, 1 SCIndices: 33777 (5), -tower 7442: eta = 3.85512, phi = 0.952982, deta = 0.349249, dphi = 0.321285, et = 207.811 - sampling = 2, 1 SCIndices: 33778 (5), -tower 7443: eta = 3.97188, phi = 1.40728, deta = 0.282945, dphi = 0.324434, et = 0 - sampling = 2, 1 SCIndices: 33779 (5), -tower 7444: eta = 3.97188, phi = 1.73431, deta = 0.282945, dphi = 0.324434, et = 0 - sampling = 2, 1 SCIndices: 33780 (5), -tower 7445: eta = 3.9524, phi = 2.16359, deta = 0.35208, dphi = 0.426122, et = 0 - sampling = 2, 1 SCIndices: 33781 (5), -tower 7446: eta = 3.81973, phi = 2.56556, deta = 0.306432, dphi = 0.340469, et = 0 - sampling = 2, 1 SCIndices: 33782 (5), -tower 7447: eta = 3.82463, phi = 2.95811, deta = 0.283843, dphi = 0.362436, et = 0 - sampling = 2, 1 SCIndices: 33783 (5), -tower 7448: eta = 3.82463, phi = -2.95811, deta = 0.283843, dphi = 0.362436, et = 0 - sampling = 2, 1 SCIndices: 33784 (5), -tower 7449: eta = 3.81973, phi = -2.56556, deta = 0.306432, dphi = 0.340469, et = 0 - sampling = 2, 1 SCIndices: 33785 (5), -tower 7450: eta = 3.85512, phi = -2.18861, deta = 0.349249, dphi = 0.321285, et = 0 - sampling = 2, 1 SCIndices: 33786 (5), -tower 7451: eta = 3.97188, phi = -1.73431, deta = 0.282945, dphi = 0.324434, et = 513.082 - sampling = 2, 1 SCIndices: 33787 (5), -tower 7452: eta = 3.97188, phi = -1.40728, deta = 0.282945, dphi = 0.324434, et = 0 - sampling = 2, 1 SCIndices: 33788 (5), -tower 7453: eta = 3.9524, phi = -0.978005, deta = 0.35208, dphi = 0.426122, et = 0 - sampling = 2, 1 SCIndices: 33789 (5), -tower 7454: eta = 3.81973, phi = -0.576031, deta = 0.306432, dphi = 0.340469, et = 0 - sampling = 2, 1 SCIndices: 33790 (5), -tower 7455: eta = 3.82463, phi = -0.183486, deta = 0.283843, dphi = 0.362436, et = 757.341 - sampling = 2, 1 SCIndices: 33791 (5), -tower 7456: eta = 4.14514, phi = 0.25418, deta = 0.395265, dphi = 0.49639, et = 515.123 - sampling = 2, 1 SCIndices: 33792 (5), -tower 7457: eta = 4.17405, phi = 0.648443, deta = 0.445464, dphi = 0.477657, et = 1259.67 - sampling = 2, 1 SCIndices: 33793 (5), -tower 7458: eta = 4.05934, phi = 1.0087, deta = 0.433743, dphi = 0.388427, et = 0 - sampling = 2, 1 SCIndices: 33794 (5), -tower 7459: eta = 4.2492, phi = 1.35427, deta = 0.287611, dphi = 0.42384, et = 0 - sampling = 2, 1 SCIndices: 33795 (5), -tower 7460: eta = 4.2492, phi = 1.78733, deta = 0.287611, dphi = 0.42384, et = 0 - sampling = 2, 1 SCIndices: 33796 (5), -tower 7461: eta = 4.12564, phi = 2.17671, deta = 0.345927, dphi = 0.363935, et = 0 - sampling = 2, 1 SCIndices: 33797 (5), -tower 7462: eta = 4.17405, phi = 2.49315, deta = 0.445464, dphi = 0.477657, et = 0 - sampling = 2, 1 SCIndices: 33798 (5), -tower 7463: eta = 3.97268, phi = 2.92838, deta = 0.330523, dphi = 0.419324, et = 0 - sampling = 2, 1 SCIndices: 33799 (5), -tower 7464: eta = 4.14514, phi = -2.88741, deta = 0.395265, dphi = 0.49639, et = 0 - sampling = 2, 1 SCIndices: 33800 (5), -tower 7465: eta = 4.17405, phi = -2.49315, deta = 0.445464, dphi = 0.477657, et = 0 - sampling = 2, 1 SCIndices: 33801 (5), -tower 7466: eta = 4.05934, phi = -2.13289, deta = 0.433743, dphi = 0.388426, et = 0 - sampling = 2, 1 SCIndices: 33802 (5), -tower 7467: eta = 4.2492, phi = -1.78733, deta = 0.287611, dphi = 0.42384, et = 0 - sampling = 2, 1 SCIndices: 33803 (5), -tower 7468: eta = 4.2492, phi = -1.35427, deta = 0.287611, dphi = 0.42384, et = 0 - sampling = 2, 1 SCIndices: 33804 (5), -tower 7469: eta = 4.12564, phi = -0.964884, deta = 0.345927, dphi = 0.363935, et = 0 - sampling = 2, 1 SCIndices: 33805 (5), -tower 7470: eta = 4.17405, phi = -0.648443, deta = 0.445464, dphi = 0.477657, et = 0 - sampling = 2, 1 SCIndices: 33806 (5), -tower 7471: eta = 3.97268, phi = -0.21321, deta = 0.330523, dphi = 0.419324, et = 0 - sampling = 2, 1 SCIndices: 33807 (5), -tower 7472: eta = 4.3199, phi = 0.201004, deta = 0.34799, dphi = 0.397319, et = 0 - sampling = 2, 1 SCIndices: 33808 (5), -tower 7473: eta = 4.37238, phi = 0.553959, deta = 0.234354, dphi = 0.219938, et = 1178.14 - sampling = 2, 1 SCIndices: 33809 (5), -tower 7474: eta = 4.33507, phi = 0.94564, deta = 0.356023, dphi = 0.30384, et = 0 - sampling = 2, 1 SCIndices: 33810 (5), -tower 7475: eta = 4.39503, phi = 1.31958, deta = 0.24228, dphi = 0.484445, et = 0 - sampling = 2, 1 SCIndices: 33811 (5), -tower 7476: eta = 4.39503, phi = 1.82201, deta = 0.24228, dphi = 0.484445, et = -155.165 - sampling = 2, 1 SCIndices: 33812 (5), -tower 7477: eta = 4.45873, phi = 2.20938, deta = 0.299957, dphi = 0.34711, et = 0 - sampling = 2, 1 SCIndices: 33813 (5), -tower 7478: eta = 4.39937, phi = 2.63361, deta = 0.269093, dphi = 0.308276, et = 0 - sampling = 2, 1 SCIndices: 33814 (5), -tower 7479: eta = 4.3199, phi = 2.94059, deta = 0.34799, dphi = 0.39732, et = 0 - sampling = 2, 1 SCIndices: 33815 (5), -tower 7480: eta = 4.3199, phi = -2.94059, deta = 0.34799, dphi = 0.397319, et = 0 - sampling = 2, 1 SCIndices: 33816 (5), -tower 7481: eta = 4.37238, phi = -2.58763, deta = 0.234354, dphi = 0.219938, et = 0 - sampling = 2, 1 SCIndices: 33817 (5), -tower 7482: eta = 4.33507, phi = -2.19595, deta = 0.356023, dphi = 0.30384, et = 0 - sampling = 2, 1 SCIndices: 33818 (5), -tower 7483: eta = 4.39503, phi = -1.82201, deta = 0.24228, dphi = 0.484445, et = 0 - sampling = 2, 1 SCIndices: 33819 (5), -tower 7484: eta = 4.39503, phi = -1.31958, deta = 0.24228, dphi = 0.484445, et = 0 - sampling = 2, 1 SCIndices: 33820 (5), -tower 7485: eta = 4.45873, phi = -0.932213, deta = 0.299957, dphi = 0.34711, et = 0 - sampling = 2, 1 SCIndices: 33821 (5), -tower 7486: eta = 4.39937, phi = -0.507981, deta = 0.269093, dphi = 0.308276, et = 0 - sampling = 2, 1 SCIndices: 33822 (5), -tower 7487: eta = 4.3199, phi = -0.201005, deta = 0.34799, dphi = 0.39732, et = 0 - sampling = 2, 1 SCIndices: 33823 (5), -tower 7488: eta = 4.5174, phi = 0.183476, deta = 0.284035, dphi = 0.362417, et = 0 - sampling = 2, 1 SCIndices: 33824 (5), -tower 7489: eta = 4.5125, phi = 0.576018, deta = 0.306658, dphi = 0.340498, et = 0 - sampling = 2, 1 SCIndices: 33825 (5), -tower 7490: eta = 4.5479, phi = 0.952976, deta = 0.349468, dphi = 0.321275, et = 0 - sampling = 2, 1 SCIndices: 33826 (5), -tower 7491: eta = 4.52175, phi = 1.35754, deta = 0.254979, dphi = 0.416829, et = 0 - sampling = 2, 1 SCIndices: 33827 (5), -tower 7492: eta = 4.52175, phi = 1.78405, deta = 0.254979, dphi = 0.416829, et = 396.836 - sampling = 2, 1 SCIndices: 33828 (5), -tower 7493: eta = 4.64523, phi = 2.16359, deta = 0.35226, dphi = 0.426105, et = 0 - sampling = 2, 1 SCIndices: 33829 (5), -tower 7494: eta = 4.5125, phi = 2.56557, deta = 0.306658, dphi = 0.340498, et = 0 - sampling = 2, 1 SCIndices: 33830 (5), -tower 7495: eta = 4.5174, phi = 2.95812, deta = 0.284035, dphi = 0.362417, et = 0 - sampling = 2, 1 SCIndices: 33831 (5), -tower 7496: eta = 4.5174, phi = -2.95812, deta = 0.284035, dphi = 0.362417, et = 0 - sampling = 2, 1 SCIndices: 33832 (5), -tower 7497: eta = 4.5125, phi = -2.56557, deta = 0.306658, dphi = 0.340498, et = 0 - sampling = 2, 1 SCIndices: 33833 (5), -tower 7498: eta = 4.5479, phi = -2.18862, deta = 0.349468, dphi = 0.321275, et = 0 - sampling = 2, 1 SCIndices: 33834 (5), -tower 7499: eta = 4.52175, phi = -1.78405, deta = 0.254979, dphi = 0.416829, et = 0 - sampling = 2, 1 SCIndices: 33835 (5), -tower 7500: eta = 4.52175, phi = -1.35754, deta = 0.254979, dphi = 0.416829, et = 0 - sampling = 2, 1 SCIndices: 33836 (5), -tower 7501: eta = 4.64523, phi = -0.977998, deta = 0.35226, dphi = 0.426105, et = 0 - sampling = 2, 1 SCIndices: 33837 (5), -tower 7502: eta = 4.5125, phi = -0.576018, deta = 0.306658, dphi = 0.340498, et = 0 - sampling = 2, 1 SCIndices: 33838 (5), -tower 7503: eta = 4.5174, phi = -0.183476, deta = 0.284035, dphi = 0.362417, et = 0 - sampling = 2, 1 SCIndices: 33839 (5), -tower 7504: eta = 4.7483, phi = 0.231918, deta = 0.202003, dphi = 0.449231, et = 0 - sampling = 2, 1 SCIndices: 33840 (5), -tower 7505: eta = 4.79074, phi = 0.630492, deta = 0.346258, dphi = 0.382338, et = 0 - sampling = 2, 1 SCIndices: 33841 (5), -tower 7506: eta = 4.69619, phi = 1.0608, deta = 0.310794, dphi = 0.350687, et = 0 - sampling = 2, 1 SCIndices: 33842 (5), -tower 7507: eta = 4.66473, phi = 1.40726, deta = 0.283084, dphi = 0.324424, et = 132.293 - sampling = 2, 1 SCIndices: 33843 (5), -tower 7508: eta = 4.66473, phi = 1.73433, deta = 0.283084, dphi = 0.324424, et = 0 - sampling = 2, 1 SCIndices: 33844 (5), -tower 7509: eta = 4.81555, phi = 2.12518, deta = 0.356702, dphi = 0.424276, et = 318.759 - sampling = 2, 1 SCIndices: 33845 (5), -tower 7510: eta = 4.67982, phi = 2.5431, deta = 0.32226, dphi = 0.31269, et = 0 - sampling = 2, 1 SCIndices: 33846 (5), -tower 7511: eta = 4.7483, phi = 2.90967, deta = 0.202003, dphi = 0.449231, et = 0 - sampling = 2, 1 SCIndices: 33847 (5), -tower 7512: eta = 4.7483, phi = -2.90967, deta = 0.202003, dphi = 0.449231, et = 0 - sampling = 2, 1 SCIndices: 33848 (5), -tower 7513: eta = 4.79074, phi = -2.5111, deta = 0.346258, dphi = 0.382338, et = 0 - sampling = 2, 1 SCIndices: 33849 (5), -tower 7514: eta = 4.69619, phi = -2.08079, deta = 0.310794, dphi = 0.350687, et = 0 - sampling = 2, 1 SCIndices: 33850 (5), -tower 7515: eta = 4.66473, phi = -1.73433, deta = 0.283084, dphi = 0.324424, et = 676.163 - sampling = 2, 1 SCIndices: 33851 (5), -tower 7516: eta = 4.66473, phi = -1.40726, deta = 0.283084, dphi = 0.324424, et = 0 - sampling = 2, 1 SCIndices: 33852 (5), -tower 7517: eta = 4.81555, phi = -1.01641, deta = 0.356702, dphi = 0.424276, et = 0 - sampling = 2, 1 SCIndices: 33853 (5), -tower 7518: eta = 4.67982, phi = -0.598489, deta = 0.32226, dphi = 0.31269, et = 0 - sampling = 2, 1 SCIndices: 33854 (5), -tower 7519: eta = 4.7483, phi = -0.231918, deta = 0.202003, dphi = 0.449231, et = 0 - sampling = 2, 1 SCIndices: 33855 (5), -tower 7520: eta = 3.22853, phi = 0.207269, deta = 0.1498, dphi = 0.403619, et = 0 - sampling = 2, 1 SCIndices: 33856 (5), -tower 7521: eta = 3.22574, phi = 0.664964, deta = 0.204063, dphi = 0.214869, et = 0 - sampling = 2, 1 SCIndices: 33857 (5), -tower 7522: eta = 3.21374, phi = 0.964906, deta = 0.254326, dphi = 0.279687, et = 0 - sampling = 2, 1 SCIndices: 33858 (5), -tower 7523: eta = 3.21938, phi = 1.35515, deta = 0.184112, dphi = 0.336189, et = 0 - sampling = 2, 1 SCIndices: 33859 (5), -tower 7524: eta = 3.21997, phi = 1.78372, deta = 0.185455, dphi = 0.33966, et = 0 - sampling = 2, 1 SCIndices: 33860 (5), -tower 7525: eta = 3.20555, phi = 2.15966, deta = 0.237522, dphi = 0.267389, et = -88.2469 - sampling = 2, 1 SCIndices: 33861 (5), -tower 7526: eta = 3.21217, phi = 2.48891, deta = 0.206974, dphi = 0.226982, et = 18.3643 - sampling = 2, 1 SCIndices: 33862 (5), -tower 7527: eta = 3.22856, phi = 2.93645, deta = 0.148249, dphi = 0.399708, et = 0 - sampling = 2, 1 SCIndices: 33863 (5), -tower 7528: eta = 3.22853, phi = -2.93432, deta = 0.1498, dphi = 0.403619, et = 0 - sampling = 2, 1 SCIndices: 33864 (5), -tower 7529: eta = 3.22574, phi = -2.47663, deta = 0.204063, dphi = 0.214869, et = 0 - sampling = 2, 1 SCIndices: 33865 (5), -tower 7530: eta = 3.21374, phi = -2.17669, deta = 0.254326, dphi = 0.279687, et = 0 - sampling = 2, 1 SCIndices: 33866 (5), -tower 7531: eta = 3.21938, phi = -1.78644, deta = 0.184112, dphi = 0.336189, et = 0 - sampling = 2, 1 SCIndices: 33867 (5), -tower 7532: eta = 3.21997, phi = -1.35787, deta = 0.185455, dphi = 0.33966, et = 0 - sampling = 2, 1 SCIndices: 33868 (5), -tower 7533: eta = 3.20555, phi = -0.981932, deta = 0.237522, dphi = 0.267389, et = 90.5742 - sampling = 2, 1 SCIndices: 33869 (5), -tower 7534: eta = 3.21217, phi = -0.65268, deta = 0.206974, dphi = 0.226982, et = 0 - sampling = 2, 1 SCIndices: 33870 (5), -tower 7535: eta = 3.22856, phi = -0.205145, deta = 0.148249, dphi = 0.399708, et = 0 - sampling = 2, 1 SCIndices: 33871 (5), -tower 7536: eta = 3.28363, phi = 0.213214, deta = 0.182156, dphi = 0.415062, et = 0 - sampling = 2, 1 SCIndices: 33872 (5), -tower 7537: eta = 3.24656, phi = 0.589655, deta = 0.246206, dphi = 0.275489, et = -60.4632 - sampling = 2, 1 SCIndices: 33873 (5), -tower 7538: eta = 3.24163, phi = 0.991525, deta = 0.271162, dphi = 0.294771, et = 0 - sampling = 2, 1 SCIndices: 33874 (5), -tower 7539: eta = 3.31016, phi = 1.36014, deta = 0.229197, dphi = 0.411498, et = 0 - sampling = 2, 1 SCIndices: 33875 (5), -tower 7540: eta = 3.31016, phi = 1.78146, deta = 0.229197, dphi = 0.411498, et = 0 - sampling = 2, 1 SCIndices: 33876 (5), -tower 7541: eta = 3.24517, phi = 2.15558, deta = 0.272468, dphi = 0.294832, et = 0 - sampling = 2, 1 SCIndices: 33877 (5), -tower 7542: eta = 3.24991, phi = 2.54411, deta = 0.259874, dphi = 0.286382, et = 295.124 - sampling = 2, 1 SCIndices: 33878 (5), -tower 7543: eta = 3.28363, phi = 2.92838, deta = 0.182156, dphi = 0.415062, et = 0 - sampling = 2, 1 SCIndices: 33879 (5), -tower 7544: eta = 3.28363, phi = -2.92838, deta = 0.182156, dphi = 0.415062, et = 0 - sampling = 2, 1 SCIndices: 33880 (5), -tower 7545: eta = 3.24656, phi = -2.55194, deta = 0.246206, dphi = 0.275489, et = 36.4745 - sampling = 2, 1 SCIndices: 33881 (5), -tower 7546: eta = 3.24163, phi = -2.15007, deta = 0.271162, dphi = 0.294771, et = 186.559 - sampling = 2, 1 SCIndices: 33882 (5), -tower 7547: eta = 3.31016, phi = -1.78146, deta = 0.229196, dphi = 0.411498, et = 0 - sampling = 2, 1 SCIndices: 33883 (5), -tower 7548: eta = 3.31016, phi = -1.36014, deta = 0.229196, dphi = 0.411498, et = 463.003 - sampling = 2, 1 SCIndices: 33884 (5), -tower 7549: eta = 3.24517, phi = -0.986016, deta = 0.272468, dphi = 0.294832, et = 0 - sampling = 2, 1 SCIndices: 33885 (5), -tower 7550: eta = 3.24991, phi = -0.597481, deta = 0.259874, dphi = 0.286382, et = 0 - sampling = 2, 1 SCIndices: 33886 (5), -tower 7551: eta = 3.28363, phi = -0.213214, deta = 0.182156, dphi = 0.415062, et = 217.797 - sampling = 2, 1 SCIndices: 33887 (5), -tower 7552: eta = 3.37786, phi = 0.175322, deta = 0.186077, dphi = 0.344926, et = 0 - sampling = 2, 1 SCIndices: 33888 (6), -tower 7553: eta = 3.34822, phi = 0.599708, deta = 0.332732, dphi = 0.400716, et = 106.612 - sampling = 2, 1 SCIndices: 33889 (6), -tower 7554: eta = 3.3307, phi = 0.982455, deta = 0.310391, dphi = 0.281972, et = 0 - sampling = 2, 1 SCIndices: 33890 (6), -tower 7555: eta = 3.43183, phi = 1.38068, deta = 0.250916, dphi = 0.374048, et = 0 - sampling = 2, 1 SCIndices: 33891 (6), -tower 7556: eta = 3.43183, phi = 1.76092, deta = 0.250916, dphi = 0.374048, et = 239.422 - sampling = 2, 1 SCIndices: 33892 (6), -tower 7557: eta = 3.3307, phi = 2.15914, deta = 0.310391, dphi = 0.281972, et = 0 - sampling = 2, 1 SCIndices: 33893 (6), -tower 7558: eta = 3.34822, phi = 2.54188, deta = 0.332732, dphi = 0.400716, et = 0 - sampling = 2, 1 SCIndices: 33894 (6), -tower 7559: eta = 3.37786, phi = 2.96627, deta = 0.186077, dphi = 0.344926, et = 0 - sampling = 2, 1 SCIndices: 33895 (6), -tower 7560: eta = 3.37786, phi = -2.96627, deta = 0.186077, dphi = 0.344926, et = 0 - sampling = 2, 1 SCIndices: 33896 (6), -tower 7561: eta = 3.34822, phi = -2.54188, deta = 0.332732, dphi = 0.400716, et = 371.882 - sampling = 2, 1 SCIndices: 33897 (6), -tower 7562: eta = 3.3307, phi = -2.15914, deta = 0.310391, dphi = 0.281972, et = 0 - sampling = 2, 1 SCIndices: 33898 (6), -tower 7563: eta = 3.43183, phi = -1.76092, deta = 0.250916, dphi = 0.374048, et = 0 - sampling = 2, 1 SCIndices: 33899 (6), -tower 7564: eta = 3.43183, phi = -1.38068, deta = 0.250916, dphi = 0.374048, et = 72.8375 - sampling = 2, 1 SCIndices: 33900 (6), -tower 7565: eta = 3.3307, phi = -0.982455, deta = 0.310391, dphi = 0.281972, et = 0 - sampling = 2, 1 SCIndices: 33901 (6), -tower 7566: eta = 3.34822, phi = -0.599708, deta = 0.332732, dphi = 0.400716, et = 0 - sampling = 2, 1 SCIndices: 33902 (6), -tower 7567: eta = 3.37786, phi = -0.175322, deta = 0.186077, dphi = 0.344926, et = 0 - sampling = 2, 1 SCIndices: 33903 (6), -tower 7568: eta = 3.46978, phi = 0.192442, deta = 0.205697, dphi = 0.377332, et = 582.705 - sampling = 2, 1 SCIndices: 33904 (6), -tower 7569: eta = 3.45732, phi = 0.602438, deta = 0.320682, dphi = 0.352192, et = 0 - sampling = 2, 1 SCIndices: 33905 (6), -tower 7570: eta = 3.42767, phi = 1.02682, deta = 0.254625, dphi = 0.272674, et = 0 - sampling = 2, 1 SCIndices: 33906 (6), -tower 7571: eta = 3.55969, phi = 1.35431, deta = 0.287277, dphi = 0.423856, et = 0 - sampling = 2, 1 SCIndices: 33907 (6), -tower 7572: eta = 3.55969, phi = 1.78729, deta = 0.287277, dphi = 0.423856, et = 0 - sampling = 2, 1 SCIndices: 33908 (6), -tower 7573: eta = 3.42767, phi = 2.11477, deta = 0.254625, dphi = 0.272675, et = 0 - sampling = 2, 1 SCIndices: 33909 (6), -tower 7574: eta = 3.45732, phi = 2.53916, deta = 0.320682, dphi = 0.352192, et = 0 - sampling = 2, 1 SCIndices: 33910 (6), -tower 7575: eta = 3.46978, phi = 2.94915, deta = 0.205697, dphi = 0.377332, et = 0 - sampling = 2, 1 SCIndices: 33911 (6), -tower 7576: eta = 3.46978, phi = -2.94915, deta = 0.205697, dphi = 0.377332, et = 0 - sampling = 2, 1 SCIndices: 33912 (6), -tower 7577: eta = 3.45732, phi = -2.53916, deta = 0.320682, dphi = 0.352192, et = 376.427 - sampling = 2, 1 SCIndices: 33913 (6), -tower 7578: eta = 3.42767, phi = -2.11477, deta = 0.254625, dphi = 0.272675, et = 0 - sampling = 2, 1 SCIndices: 33914 (6), -tower 7579: eta = 3.55969, phi = -1.78729, deta = 0.287277, dphi = 0.423856, et = 0 - sampling = 2, 1 SCIndices: 33915 (6), -tower 7580: eta = 3.55969, phi = -1.35431, deta = 0.287277, dphi = 0.423856, et = 0 - sampling = 2, 1 SCIndices: 33916 (6), -tower 7581: eta = 3.42767, phi = -1.02682, deta = 0.254625, dphi = 0.272675, et = 0 - sampling = 2, 1 SCIndices: 33917 (6), -tower 7582: eta = 3.45732, phi = -0.602438, deta = 0.320682, dphi = 0.352192, et = 0 - sampling = 2, 1 SCIndices: 33918 (6), -tower 7583: eta = 3.46978, phi = -0.192442, deta = 0.205697, dphi = 0.377332, et = 0 - sampling = 2, 1 SCIndices: 33919 (6), -tower 7584: eta = 3.57069, phi = 0.213213, deta = 0.230042, dphi = 0.416173, et = 385.748 - sampling = 2, 1 SCIndices: 33920 (6), -tower 7585: eta = 3.57988, phi = 0.605894, deta = 0.3147, dphi = 0.299743, et = 238.972 - sampling = 2, 1 SCIndices: 33921 (6), -tower 7586: eta = 3.53545, phi = 0.956281, deta = 0.286565, dphi = 0.30113, et = 0 - sampling = 2, 1 SCIndices: 33922 (6), -tower 7587: eta = 3.71906, phi = 1.38068, deta = 0.328893, dphi = 0.376286, et = 0 - sampling = 2, 1 SCIndices: 33923 (6), -tower 7588: eta = 3.71906, phi = 1.76092, deta = 0.328893, dphi = 0.376286, et = 0 - sampling = 2, 1 SCIndices: 33924 (6), -tower 7589: eta = 3.53545, phi = 2.18531, deta = 0.286565, dphi = 0.30113, et = 0 - sampling = 2, 1 SCIndices: 33925 (6), -tower 7590: eta = 3.57988, phi = 2.5357, deta = 0.3147, dphi = 0.299743, et = 0 - sampling = 2, 1 SCIndices: 33926 (6), -tower 7591: eta = 3.57069, phi = 2.92838, deta = 0.230042, dphi = 0.416173, et = 0 - sampling = 2, 1 SCIndices: 33927 (6), -tower 7592: eta = 3.57069, phi = -2.92838, deta = 0.230042, dphi = 0.416173, et = 0 - sampling = 2, 1 SCIndices: 33928 (6), -tower 7593: eta = 3.57988, phi = -2.5357, deta = 0.3147, dphi = 0.299743, et = 0 - sampling = 2, 1 SCIndices: 33929 (6), -tower 7594: eta = 3.53545, phi = -2.18531, deta = 0.286565, dphi = 0.30113, et = 226.577 - sampling = 2, 1 SCIndices: 33930 (6), -tower 7595: eta = 3.71906, phi = -1.76092, deta = 0.328893, dphi = 0.376286, et = 212.122 - sampling = 2, 1 SCIndices: 33931 (6), -tower 7596: eta = 3.71906, phi = -1.38068, deta = 0.328893, dphi = 0.376286, et = 0 - sampling = 2, 1 SCIndices: 33932 (6), -tower 7597: eta = 3.53545, phi = -0.956281, deta = 0.286565, dphi = 0.30113, et = 0 - sampling = 2, 1 SCIndices: 33933 (6), -tower 7598: eta = 3.57988, phi = -0.605894, deta = 0.3147, dphi = 0.299743, et = 0 - sampling = 2, 1 SCIndices: 33934 (6), -tower 7599: eta = 3.57069, phi = -0.213213, deta = 0.230042, dphi = 0.416173, et = 0 - sampling = 2, 1 SCIndices: 33935 (6), -tower 7600: eta = 3.82766, phi = 0.183485, deta = 0.283846, dphi = 0.362442, et = -212.07 - sampling = 2, 1 SCIndices: 33936 (6), -tower 7601: eta = 3.76522, phi = 0.540097, deta = 0.382144, dphi = 0.357606, et = 0 - sampling = 2, 1 SCIndices: 33937 (6), -tower 7602: eta = 3.72354, phi = 0.964912, deta = 0.34571, dphi = 0.36394, et = 0 - sampling = 2, 1 SCIndices: 33938 (6), -tower 7603: eta = 3.89341, phi = 1.34384, deta = 0.392686, dphi = 0.447191, et = 0 - sampling = 2, 1 SCIndices: 33939 (6), -tower 7604: eta = 3.89341, phi = 1.79775, deta = 0.392686, dphi = 0.447191, et = 0 - sampling = 2, 1 SCIndices: 33940 (6), -tower 7605: eta = 3.72354, phi = 2.17668, deta = 0.34571, dphi = 0.36394, et = 0 - sampling = 2, 1 SCIndices: 33941 (6), -tower 7606: eta = 3.76522, phi = 2.6015, deta = 0.382144, dphi = 0.357606, et = 0 - sampling = 2, 1 SCIndices: 33942 (6), -tower 7607: eta = 3.82766, phi = 2.95811, deta = 0.283846, dphi = 0.362442, et = 0 - sampling = 2, 1 SCIndices: 33943 (6), -tower 7608: eta = 3.82766, phi = -2.95811, deta = 0.283846, dphi = 0.362442, et = 0 - sampling = 2, 1 SCIndices: 33944 (6), -tower 7609: eta = 3.76522, phi = -2.6015, deta = 0.382144, dphi = 0.357606, et = 0 - sampling = 2, 1 SCIndices: 33945 (6), -tower 7610: eta = 3.72354, phi = -2.17668, deta = 0.34571, dphi = 0.36394, et = 0 - sampling = 2, 1 SCIndices: 33946 (6), -tower 7611: eta = 3.89341, phi = -1.79775, deta = 0.392686, dphi = 0.447191, et = 0 - sampling = 2, 1 SCIndices: 33947 (6), -tower 7612: eta = 3.89341, phi = -1.34384, deta = 0.392686, dphi = 0.447191, et = 0 - sampling = 2, 1 SCIndices: 33948 (6), -tower 7613: eta = 3.72354, phi = -0.964912, deta = 0.34571, dphi = 0.36394, et = 0 - sampling = 2, 1 SCIndices: 33949 (6), -tower 7614: eta = 3.76522, phi = -0.540097, deta = 0.382144, dphi = 0.357606, et = 0 - sampling = 2, 1 SCIndices: 33950 (6), -tower 7615: eta = 3.82766, phi = -0.183485, deta = 0.283846, dphi = 0.362442, et = 1437.11 - sampling = 2, 1 SCIndices: 33951 (6), -tower 7616: eta = 4.24615, phi = 0.281032, deta = 0.634066, dphi = 0.561777, et = 0 - sampling = 2, 1 SCIndices: 33952 (6), -tower 7617: eta = 4.14238, phi = 0.523603, deta = 0.558737, dphi = 0.520422, et = 0 - sampling = 2, 1 SCIndices: 33953 (6), -tower 7618: eta = 4.13433, phi = 0.839027, deta = 0.531365, dphi = 0.539828, et = 0 - sampling = 2, 1 SCIndices: 33954 (6), -tower 7619: eta = 4.18624, phi = 1.36834, deta = 0.644514, dphi = 0.41529, et = 0 - sampling = 2, 1 SCIndices: 33955 (6), -tower 7620: eta = 4.18624, phi = 1.77326, deta = 0.644514, dphi = 0.41529, et = 0 - sampling = 2, 1 SCIndices: 33956 (6), -tower 7621: eta = 4.13433, phi = 2.30257, deta = 0.531365, dphi = 0.539828, et = 0 - sampling = 2, 1 SCIndices: 33957 (6), -tower 7622: eta = 4.14238, phi = 2.61799, deta = 0.558737, dphi = 0.520422, et = 0 - sampling = 2, 1 SCIndices: 33958 (6), -tower 7623: eta = 4.24615, phi = 2.86056, deta = 0.634066, dphi = 0.561777, et = 0 - sampling = 2, 1 SCIndices: 33959 (6), -tower 7624: eta = 4.24615, phi = -2.86056, deta = 0.634066, dphi = 0.561777, et = 0 - sampling = 2, 1 SCIndices: 33960 (6), -tower 7625: eta = 4.14238, phi = -2.61799, deta = 0.558737, dphi = 0.520422, et = 0 - sampling = 2, 1 SCIndices: 33961 (6), -tower 7626: eta = 4.13433, phi = -2.30257, deta = 0.531365, dphi = 0.539828, et = 0 - sampling = 2, 1 SCIndices: 33962 (6), -tower 7627: eta = 4.18624, phi = -1.77326, deta = 0.644514, dphi = 0.41529, et = 0 - sampling = 2, 1 SCIndices: 33963 (6), -tower 7628: eta = 4.18624, phi = -1.36834, deta = 0.644514, dphi = 0.41529, et = 0 - sampling = 2, 1 SCIndices: 33964 (6), -tower 7629: eta = 4.13433, phi = -0.839027, deta = 0.531365, dphi = 0.539828, et = 0 - sampling = 2, 1 SCIndices: 33965 (6), -tower 7630: eta = 4.14238, phi = -0.523603, deta = 0.558737, dphi = 0.520422, et = 0 - sampling = 2, 1 SCIndices: 33966 (6), -tower 7631: eta = 4.24615, phi = -0.281032, deta = 0.634066, dphi = 0.561777, et = 0 - sampling = 2, 1 SCIndices: 33967 (6), -tower 7632: eta = 4.75141, phi = 0.231934, deta = 0.214392, dphi = 0.449607, et = 0 - sampling = 2, 1 SCIndices: 33968 (6), -tower 7633: eta = 4.5387, phi = 0.572773, deta = 0.555408, dphi = 0.47227, et = 0 - sampling = 2, 1 SCIndices: 33969 (6), -tower 7634: eta = 4.53282, phi = 0.990724, deta = 0.542397, dphi = 0.540624, et = 0 - sampling = 2, 1 SCIndices: 33970 (6), -tower 7635: eta = 4.60051, phi = 1.41806, deta = 0.393632, dphi = 0.319066, et = 0 - sampling = 2, 1 SCIndices: 33971 (6), -tower 7636: eta = 4.60145, phi = 1.71726, deta = 0.393922, dphi = 0.306864, et = 0 - sampling = 2, 1 SCIndices: 33972 (6), -tower 7637: eta = 4.57669, phi = 2.11049, deta = 0.568957, dphi = 0.508113, et = 284.328 - sampling = 2, 1 SCIndices: 33973 (6), -tower 7638: eta = 4.51338, phi = 2.57295, deta = 0.501925, dphi = 0.430098, et = -245.497 - sampling = 2, 1 SCIndices: 33974 (6), -tower 7639: eta = 4.75141, phi = 2.90966, deta = 0.214392, dphi = 0.449607, et = 0 - sampling = 2, 1 SCIndices: 33975 (6), -tower 7640: eta = 4.75141, phi = -2.90966, deta = 0.214392, dphi = 0.449607, et = 0 - sampling = 2, 1 SCIndices: 33976 (6), -tower 7641: eta = 4.5387, phi = -2.56882, deta = 0.555408, dphi = 0.47227, et = 332.923 - sampling = 2, 1 SCIndices: 33977 (6), -tower 7642: eta = 4.53282, phi = -2.15087, deta = 0.542397, dphi = 0.540624, et = 501.402 - sampling = 2, 1 SCIndices: 33978 (6), -tower 7643: eta = 4.60051, phi = -1.72353, deta = 0.393632, dphi = 0.319066, et = 0 - sampling = 2, 1 SCIndices: 33979 (6), -tower 7644: eta = 4.60145, phi = -1.42434, deta = 0.393922, dphi = 0.306864, et = 216.263 - sampling = 2, 1 SCIndices: 33980 (6), -tower 7645: eta = 4.57669, phi = -1.0311, deta = 0.568957, dphi = 0.508113, et = 0 - sampling = 2, 1 SCIndices: 33981 (6), -tower 7646: eta = 4.51338, phi = -0.568641, deta = 0.501925, dphi = 0.430098, et = 0 - sampling = 2, 1 SCIndices: 33982 (6), -tower 7647: eta = 4.75141, phi = -0.231934, deta = 0.214392, dphi = 0.449607, et = 0 - sampling = 2, 1 SCIndices: 33983 (6), -tower 7648: eta = 3.3273, phi = 0.173891, deta = 0.190979, dphi = 0.342304, et = 0 - sampling = 2, 1 SCIndices: 33984 (6), -tower 7649: eta = 3.37225, phi = 0.574621, deta = 0.327303, dphi = 0.326395, et = 0 - sampling = 2, 1 SCIndices: 33985 (6), -tower 7650: eta = 3.34196, phi = 0.96351, deta = 0.309189, dphi = 0.337446, et = 0 - sampling = 2, 1 SCIndices: 33986 (6), -tower 7651: eta = 3.33155, phi = 1.38362, deta = 0.177164, dphi = 0.363469, et = 0 - sampling = 2, 1 SCIndices: 33987 (6), -tower 7652: eta = 3.33307, phi = 1.75689, deta = 0.17999, dphi = 0.368536, et = 0 - sampling = 2, 1 SCIndices: 33988 (6), -tower 7653: eta = 3.35898, phi = 2.18971, deta = 0.303808, dphi = 0.35281, et = 0 - sampling = 2, 1 SCIndices: 33989 (6), -tower 7654: eta = 3.39175, phi = 2.57553, deta = 0.324937, dphi = 0.345025, et = 173.332 - sampling = 2, 1 SCIndices: 33990 (6), -tower 7655: eta = 3.32934, phi = 2.96023, deta = 0.204905, dphi = 0.356611, et = 0 - sampling = 2, 1 SCIndices: 33991 (6), -tower 7656: eta = 3.3273, phi = -2.9677, deta = 0.190979, dphi = 0.342305, et = 0 - sampling = 2, 1 SCIndices: 33992 (6), -tower 7657: eta = 3.37225, phi = -2.56697, deta = 0.327303, dphi = 0.326395, et = 117.886 - sampling = 2, 1 SCIndices: 33993 (6), -tower 7658: eta = 3.34196, phi = -2.17808, deta = 0.309189, dphi = 0.337446, et = 0 - sampling = 2, 1 SCIndices: 33994 (6), -tower 7659: eta = 3.33155, phi = -1.75798, deta = 0.177165, dphi = 0.363469, et = 0 - sampling = 2, 1 SCIndices: 33995 (6), -tower 7660: eta = 3.33307, phi = -1.3847, deta = 0.17999, dphi = 0.368536, et = 0 - sampling = 2, 1 SCIndices: 33996 (6), -tower 7661: eta = 3.35898, phi = -0.95188, deta = 0.303808, dphi = 0.35281, et = 0 - sampling = 2, 1 SCIndices: 33997 (6), -tower 7662: eta = 3.39175, phi = -0.566059, deta = 0.324937, dphi = 0.345025, et = 12.8736 - sampling = 2, 1 SCIndices: 33998 (6), -tower 7663: eta = 3.32934, phi = -0.18136, deta = 0.204905, dphi = 0.356611, et = 96.4778 - sampling = 2, 1 SCIndices: 33999 (6), -tower 7664: eta = 3.56004, phi = 0.213216, deta = 0.330235, dphi = 0.419327, et = 0 - sampling = 2, 1 SCIndices: 34000 (6), -tower 7665: eta = 3.503, phi = 0.56207, deta = 0.414811, dphi = 0.33368, et = 0 - sampling = 2, 1 SCIndices: 34001 (6), -tower 7666: eta = 3.53976, phi = 0.978027, deta = 0.351754, dphi = 0.426133, et = 0 - sampling = 2, 1 SCIndices: 34002 (6), -tower 7667: eta = 3.41647, phi = 1.35758, deta = 0.254504, dphi = 0.416843, et = 162.234 - sampling = 2, 1 SCIndices: 34003 (6), -tower 7668: eta = 3.41647, phi = 1.78401, deta = 0.254504, dphi = 0.416843, et = 0 - sampling = 2, 1 SCIndices: 34004 (6), -tower 7669: eta = 3.53976, phi = 2.16357, deta = 0.351754, dphi = 0.426133, et = 0 - sampling = 2, 1 SCIndices: 34005 (6), -tower 7670: eta = 3.56923, phi = 2.5357, deta = 0.314695, dphi = 0.299747, et = 0 - sampling = 2, 1 SCIndices: 34006 (6), -tower 7671: eta = 3.56004, phi = 2.92838, deta = 0.330235, dphi = 0.419327, et = 0 - sampling = 2, 1 SCIndices: 34007 (6), -tower 7672: eta = 3.56004, phi = -2.92838, deta = 0.330235, dphi = 0.419327, et = 0 - sampling = 2, 1 SCIndices: 34008 (6), -tower 7673: eta = 3.503, phi = -2.57952, deta = 0.414811, dphi = 0.333679, et = 0 - sampling = 2, 1 SCIndices: 34009 (6), -tower 7674: eta = 3.53976, phi = -2.16357, deta = 0.351755, dphi = 0.426133, et = -15.9235 - sampling = 2, 1 SCIndices: 34010 (6), -tower 7675: eta = 3.41647, phi = -1.78401, deta = 0.254503, dphi = 0.416844, et = 0 - sampling = 2, 1 SCIndices: 34011 (6), -tower 7676: eta = 3.41647, phi = -1.35758, deta = 0.254503, dphi = 0.416844, et = 0 - sampling = 2, 1 SCIndices: 34012 (6), -tower 7677: eta = 3.53976, phi = -0.978027, deta = 0.351755, dphi = 0.426133, et = 0 - sampling = 2, 1 SCIndices: 34013 (6), -tower 7678: eta = 3.56923, phi = -0.605892, deta = 0.314695, dphi = 0.299747, et = 0 - sampling = 2, 1 SCIndices: 34014 (6), -tower 7679: eta = 3.56004, phi = -0.213216, deta = 0.330235, dphi = 0.419327, et = 101.969 - sampling = 2, 1 SCIndices: 34015 (6), -tower 7680: eta = 3.75023, phi = 0.171505, deta = 0.392267, dphi = 0.34298, et = 0 - sampling = 2, 1 SCIndices: 34016 (7), -tower 7681: eta = 3.8121, phi = 0.576036, deta = 0.403075, dphi = 0.38067, et = 0 - sampling = 2, 1 SCIndices: 34017 (7), -tower 7682: eta = 3.7815, phi = 0.914743, deta = 0.486089, dphi = 0.45572, et = 0 - sampling = 2, 1 SCIndices: 34018 (7), -tower 7683: eta = 3.7084, phi = 1.38067, deta = 0.328878, dphi = 0.376273, et = 0 - sampling = 2, 1 SCIndices: 34019 (7), -tower 7684: eta = 3.7084, phi = 1.76092, deta = 0.328878, dphi = 0.376273, et = 0 - sampling = 2, 1 SCIndices: 34020 (7), -tower 7685: eta = 3.7815, phi = 2.22685, deta = 0.486089, dphi = 0.45572, et = 0 - sampling = 2, 1 SCIndices: 34021 (7), -tower 7686: eta = 3.90209, phi = 2.50303, deta = 0.600762, dphi = 0.519695, et = 0 - sampling = 2, 1 SCIndices: 34022 (7), -tower 7687: eta = 3.75023, phi = 2.97009, deta = 0.392267, dphi = 0.34298, et = 0 - sampling = 2, 1 SCIndices: 34023 (7), -tower 7688: eta = 3.75023, phi = -2.97009, deta = 0.392267, dphi = 0.34298, et = 0 - sampling = 2, 1 SCIndices: 34024 (7), -tower 7689: eta = 3.8121, phi = -2.56556, deta = 0.403075, dphi = 0.38067, et = 0 - sampling = 2, 1 SCIndices: 34025 (7), -tower 7690: eta = 3.7815, phi = -2.22685, deta = 0.486089, dphi = 0.45572, et = 0 - sampling = 2, 1 SCIndices: 34026 (7), -tower 7691: eta = 3.7084, phi = -1.76092, deta = 0.328879, dphi = 0.376273, et = 24.734 - sampling = 2, 1 SCIndices: 34027 (7), -tower 7692: eta = 3.7084, phi = -1.38067, deta = 0.328879, dphi = 0.376273, et = 0 - sampling = 2, 1 SCIndices: 34028 (7), -tower 7693: eta = 3.7815, phi = -0.914743, deta = 0.486089, dphi = 0.45572, et = 0 - sampling = 2, 1 SCIndices: 34029 (7), -tower 7694: eta = 3.90209, phi = -0.638559, deta = 0.600763, dphi = 0.519695, et = 0 - sampling = 2, 1 SCIndices: 34030 (7), -tower 7695: eta = 3.75023, phi = -0.171505, deta = 0.392267, dphi = 0.34298, et = 0 - sampling = 2, 1 SCIndices: 34031 (7), -tower 7696: eta = 4.29773, phi = 0.299639, deta = 0.798396, dphi = 0.61329, et = 0 - sampling = 2, 1 SCIndices: 34032 (7), -tower 7697: eta = 4.35548, phi = 0.646366, deta = 0.60874, dphi = 0.636768, et = 0 - sampling = 2, 1 SCIndices: 34033 (7), -tower 7698: eta = 4.37384, phi = 1.03761, deta = 0.747535, dphi = 0.573998, et = 0 - sampling = 2, 1 SCIndices: 34034 (7), -tower 7699: eta = 4.21353, phi = 1.25213, deta = 0.797206, dphi = 0.647406, et = 153.667 - sampling = 2, 1 SCIndices: 34035 (7), -tower 7700: eta = 4.21353, phi = 1.88947, deta = 0.797206, dphi = 0.647406, et = 0 - sampling = 2, 1 SCIndices: 34036 (7), -tower 7701: eta = 4.33869, phi = 2.1065, deta = 0.668256, dphi = 0.510698, et = 0 - sampling = 2, 1 SCIndices: 34037 (7), -tower 7702: eta = 4.48868, phi = 2.60701, deta = 0.681853, dphi = 0.521885, et = 0 - sampling = 2, 1 SCIndices: 34038 (7), -tower 7703: eta = 4.30074, phi = 2.84102, deta = 0.806607, dphi = 0.616022, et = 0 - sampling = 2, 1 SCIndices: 34039 (7), -tower 7704: eta = 4.29773, phi = -2.84195, deta = 0.798396, dphi = 0.61329, et = 0 - sampling = 2, 1 SCIndices: 34040 (7), -tower 7705: eta = 4.35548, phi = -2.49523, deta = 0.60874, dphi = 0.636768, et = 0 - sampling = 2, 1 SCIndices: 34041 (7), -tower 7706: eta = 4.37384, phi = -2.10398, deta = 0.747535, dphi = 0.573998, et = 0 - sampling = 2, 1 SCIndices: 34042 (7), -tower 7707: eta = 4.21353, phi = -1.88947, deta = 0.797206, dphi = 0.647406, et = 0 - sampling = 2, 1 SCIndices: 34043 (7), -tower 7708: eta = 4.21353, phi = -1.25213, deta = 0.797206, dphi = 0.647406, et = 0 - sampling = 2, 1 SCIndices: 34044 (7), -tower 7709: eta = 4.33869, phi = -1.03509, deta = 0.668256, dphi = 0.510698, et = 0 - sampling = 2, 1 SCIndices: 34045 (7), -tower 7710: eta = 4.48868, phi = -0.534585, deta = 0.681853, dphi = 0.521885, et = 0 - sampling = 2, 1 SCIndices: 34046 (7), -tower 7711: eta = 4.30074, phi = -0.300573, deta = 0.806607, dphi = 0.616022, et = 0 - sampling = 2, 1 SCIndices: 34047 (7), diff --git a/Trigger/TrigT1/TrigT1NSW/TrigT1NSW/NSWL1Simulation.h b/Trigger/TrigT1/TrigT1NSW/TrigT1NSW/NSWL1Simulation.h index 7e3668783875b5779f31c158f65819a0442ff236..2c0f7276260521e691f6475594c94cc17abc5f05 100644 --- a/Trigger/TrigT1/TrigT1NSW/TrigT1NSW/NSWL1Simulation.h +++ b/Trigger/TrigT1/TrigT1NSW/TrigT1NSW/NSWL1Simulation.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef TRIGT1NSW_NSWL1SIMULATION_H @@ -15,6 +15,8 @@ // monitoring from HLT #include "TrigInterfaces/IMonitoredAlgo.h" + + // NSWL1SimTools includes #include "TrigT1NSWSimTools/IPadTdsTool.h" #include "TrigT1NSWSimTools/IStripTdsTool.h" @@ -24,12 +26,6 @@ #include "TrigT1NSWSimTools/IMMTriggerTool.h" #include "TrigT1NSWSimTools/IPadTriggerLogicTool.h" -//#include "TrigConfigSvc/ITrigConfigSvc.h" need the TriggerConfigSvc? maybe not - -// local includes - - - // Forward includes class StoreGateSvc; class IMonitorToolBase; @@ -103,6 +99,10 @@ namespace NSWL1 { bool m_doMM; //!< property, see @link NSWL1Simulation::NSWL1Simulation @endlink bool m_dosTGC; //!< property, see @link NSWL1Simulation::NSWL1Simulation @endlink bool m_doPadTrigger; //!< property, see @link NSWL1Simulation::NSWL1Simulation @endlink + + + protected: + }; // end of NSWL1Simulation class diff --git a/Trigger/TrigT1/TrigT1NSW/share/NSWL1.py b/Trigger/TrigT1/TrigT1NSW/share/NSWL1.py index 6548606cf4d6cf2a100a5f3bf373c2069ad1410a..dc83894c20cfb774f39299c6a10b713d6fa3baaa 100755 --- a/Trigger/TrigT1/TrigT1NSW/share/NSWL1.py +++ b/Trigger/TrigT1/TrigT1NSW/share/NSWL1.py @@ -9,12 +9,23 @@ # AthenaCommon configuration #-------------------------------------------------------------- -#from GeoModelSvc.GeoModelSvcConf import GeoModelSvc -#GeoModelSvc = GeoModelSvc() -#GeoModelSvc.MuonVersionOverride="MuonSpectrometer-R.08.01-NSW" +import glob +import os -MessageSvc.defaultLimit=500 +if 'customInput' not in locals() or 'customInput' not in globals(): + print("customInput not defined yet setting the default as input.rdo.pool.root") + customInput='input.rdo.pool.root' + +if(not os.path.isdir(customInput) and not os.path.isfile(customInput) ): + checklist=glob.glob(customInput) + if len(checklist)==0: + print("Invalid INPUT : "+customInput) + os.sys.exit() +if(os.path.isdir(customInput)): + customInput+="/*.root" + +MessageSvc.defaultLimit=100 MessageSvc.useColors = True MessageSvc.Format = "% F%30W%S%7W%R%T %0W%M" @@ -34,8 +45,15 @@ athenaCommonFlags.EvtMax = -1 athenaCommonFlags.SkipEvents = 0 + + import AthenaPoolCnvSvc.ReadAthenaPool -svcMgr.EventSelector.InputCollections = [ "input.rdo.pool.root" ] + + +svcMgr.EventSelector.InputCollections=glob.glob(customInput) + + +#svcMgr.EventSelector.InputCollections = [ "input.rdo.pool.root" ] from AthenaCommon.DetFlags import DetFlags @@ -81,6 +99,12 @@ ServiceMgr += Agdd2GeoSvc #----------------------------------------------------------------------------- # Algorithms: NSW L1 simulation #----------------------------------------------------------------------------- +from RegionSelector.RegSelSvcDefault import RegSelSvcDefault +from AthenaCommon.AppMgr import ServiceMgr +theRegSelSvc = RegSelSvcDefault() +ServiceMgr += theRegSelSvc + + include ('TrigT1NSW/TrigT1NSW_jobOptions.py') @@ -90,20 +114,27 @@ topSequence.NSWL1Simulation.DoPadTrigger=True topSequence.NSWL1Simulation.DoMM=False -#Select ntuples to be created + topSequence.NSWL1Simulation.DoNtuple=True topSequence.NSWL1Simulation.PadTdsTool.DoNtuple=True topSequence.NSWL1Simulation.PadTriggerTool.DoNtuple=True topSequence.NSWL1Simulation.StripTdsTool.DoNtuple=True +topSequence.NSWL1Simulation.StripSegmentTool.DoNtuple=True + +topSequence.NSWL1Simulation.StripSegmentTool.rIndexScheme=0 +topSequence.NSWL1Simulation.StripSegmentTool.NSWTrigRDOContainerName="NSWTRGRDO" + + + #Tools' Messaging Levels -topSequence.NSWL1Simulation.OutputLevel=WARNING -topSequence.NSWL1Simulation.PadTdsTool.OutputLevel=WARNING -topSequence.NSWL1Simulation.PadTriggerTool.OutputLevel=DEBUG -topSequence.NSWL1Simulation.StripTdsTool.OutputLevel=WARNING -topSequence.NSWL1Simulation.StripClusterTool.OutputLevel=WARNING -topSequence.NSWL1Simulation.StripSegmentTool.OutputLevel=WARNING +topSequence.NSWL1Simulation.OutputLevel=INFO +topSequence.NSWL1Simulation.PadTdsTool.OutputLevel=INFO +topSequence.NSWL1Simulation.PadTriggerTool.OutputLevel=INFO +topSequence.NSWL1Simulation.StripTdsTool.OutputLevel=INFO +topSequence.NSWL1Simulation.StripClusterTool.OutputLevel=INFO +topSequence.NSWL1Simulation.StripSegmentTool.OutputLevel=INFO # Simulation parameters #topSequence.NSWL1Simulation.PadTdsTool.VMM_DeadTime=3 diff --git a/Trigger/TrigT1/TrigT1NSW/src/NSWL1Simulation.cxx b/Trigger/TrigT1/TrigT1NSW/src/NSWL1Simulation.cxx index a635554a11a19ed61aa247952e07af5fe3885048..5072a5d927570a0fe6cf2aae829084137c07749e 100644 --- a/Trigger/TrigT1/TrigT1NSW/src/NSWL1Simulation.cxx +++ b/Trigger/TrigT1/TrigT1NSW/src/NSWL1Simulation.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Athena/Gaudi includes @@ -13,9 +13,10 @@ // root includes #include "TTree.h" - // Local includes #include "TrigT1NSW/NSWL1Simulation.h" +#include "MuonRDO/NSW_TrigRawDataContainer.h" + #include <vector> @@ -53,10 +54,11 @@ namespace NSWL1 { declareProperty( "PadTriggerTool", m_pad_trigger, "Tool that simulates the pad trigger logic"); declareProperty( "StripTdsTool", m_strip_tds, "Tool that simulates the functionalities of the Strip TDS"); declareProperty( "StripClusterTool",m_strip_cluster, "Tool that simulates the Strip Clustering"); - declareProperty( "StripSegmentTool",m_strip_cluster, "Tool that simulates the Segment finding"); + declareProperty( "StripSegmentTool",m_strip_segment, "Tool that simulates the Segment finding"); declareProperty( "MMStripTdsTool", m_mmstrip_tds, "Tool that simulates the functionalities of the MM STRIP TDS"); declareProperty( "MMTriggerTool", m_mmtrigger, "Tool that simulates the MM Trigger"); + // declare monitoring variables declareMonitoredStdContainer("COUNTERS", m_counters); // custom monitoring: number of processed events } @@ -68,8 +70,9 @@ namespace NSWL1 { StatusCode NSWL1Simulation::initialize() { ATH_MSG_INFO( "initialize " << name() ); - StatusCode sc; + + // Create an register the ntuple if requested, add branch for event and run number if ( m_doNtuple ) { ITHistSvc* tHistSvc; @@ -100,7 +103,6 @@ namespace NSWL1 { } } - // retrieving the private tools implementing the simulation if(m_dosTGC){ @@ -197,28 +199,19 @@ namespace NSWL1 { ATH_MSG_INFO( "execute" << name() ); m_counters.clear(); - // retrieve the current run number and event number const EventInfo* pevt = 0; ATH_CHECK( evtStore()->retrieve(pevt) ); m_current_run = pevt->event_ID()->run_number(); m_current_evt = pevt->event_ID()->event_number(); - m_counters.push_back(1.); // a new event is being processed - //S.I those could be members ... + m_counters.push_back(1.); std::vector<std::shared_ptr<PadData>> pads; std::vector<std::unique_ptr<PadTrigger>> padTriggers; std::vector<std::unique_ptr<StripData>> strips; std::vector< std::unique_ptr<StripClusterData> > clusters; - //S.I - // retrieve the PAD hit and compute pad trigger if(m_dosTGC){ - // DG-2015-10-02 - // Currently storing pads from all sectors in one vector<>. - // Perhaps we could do here for(sector) instead of inside - // PadTriggerLogicOfflineTool (since all the pad and - // pad-trigger info is per-sector...) ATH_CHECK( m_pad_tds->gather_pad_data(pads) ); if(m_doPadTrigger){ @@ -233,23 +226,16 @@ namespace NSWL1 { strips.clear(); ATH_CHECK( m_strip_segment->find_segments(clusters) ); clusters.clear(); + + } // if(dosTGC) //retrive the MM Strip hit data - if(m_doMM){ - // std::vector<MMStripData*> mmstrips; - // sc = m_mmstrip_tds->gather_mmstrip_data(mmstrips); - // if ( sc.isFailure() ) { - // ATH_MSG_ERROR( "Could not gather the MM Strip hit data" ); - // return sc; - // } ATH_CHECK( m_mmtrigger->runTrigger() ); } - // - // do monitoring - // + ToolHandleArray<IMonitorToolBase>::iterator it; for ( it = m_monitors.begin(); it != m_monitors.end(); ++it ) { (*it)->fillHists().ignore(); @@ -263,19 +249,13 @@ namespace NSWL1 { StatusCode NSWL1Simulation::finalize() { ATH_MSG_INFO( "finalize" << name() ); - - // - // monitoring - // ToolHandleArray<IMonitorToolBase>::iterator it; for ( it = m_monitors.begin(); it != m_monitors.end(); ++it ) { (*it)->finalHists().ignore(); } - return StatusCode::SUCCESS; } - int NSWL1Simulation::resultBuilder() const { return 0; } diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/CMakeLists.txt b/Trigger/TrigT1/TrigT1NSWSimTools/CMakeLists.txt index f42fd2cc8d74a72f00ff79453d6cce1ac7d3f5c2..e7ab5d7a2d9f323171851c5a16c8d308ae500975 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/CMakeLists.txt +++ b/Trigger/TrigT1/TrigT1NSWSimTools/CMakeLists.txt @@ -4,7 +4,7 @@ # Declare the package name: atlas_subdir( TrigT1NSWSimTools ) - +set(CMAKE_CXX_FLAGS "-std=c++14") # Declare the package's dependencies: atlas_depends_on_subdirs( PUBLIC GaudiKernel @@ -15,13 +15,17 @@ atlas_depends_on_subdirs( PUBLIC DetectorDescription/GeoPrimitives DetectorDescription/Identifier Event/EventInfo + DetectorDescription/RegSelLUT + MuonSpectrometer/MuonDetDescr/MuonRegionSelector MuonSpectrometer/MuonDetDescr/MuonAGDDDescription MuonSpectrometer/MuonDetDescr/MuonReadoutGeometry MuonSpectrometer/MuonDigitContainer MuonSpectrometer/MuonIdHelpers MuonSpectrometer/MuonSimEvent MuonSpectrometer/MuonSimData - Simulation/G4Sim/TrackRecord ) + MuonSpectrometer/MuonRDO + Simulation/G4Sim/TrackRecord + ) # External dependencies: find_package( Boost ) @@ -38,7 +42,7 @@ atlas_add_library( TrigT1NSWSimToolsLib INCLUDE_DIRS ${ROOT_INCLUDE_DIRS} ${CLHEP_INCLUDE_DIRS} ${EIGEN_INCLUDE_DIRS} ${BOOST_INCLUDE_DIRS} ${TBB_INCLUDE_DIRS} ${HEPMC_INCLUDE_DIRS} LINK_LIBRARIES ${ROOT_LIBRARIES} ${CLHEP_LIBRARIES} ${EIGEN_LIBRARIES} ${BOOST_LIBRARIES} ${TBB_LIBRARIES} ${HEPMC_LIBRARIES} SGTools GaudiKernel AthenaBaseComps AthenaKernel AGDDKernel GeoPrimitives Identifier EventInfo MuonAGDDDescription MuonReadoutGeometry - MuonDigitContainer MuonIdHelpersLib MuonSimEvent MuonSimData ) + MuonDigitContainer MuonIdHelpersLib MuonSimEvent MuonSimData MuonRDO RegSelLUT) # Component(s) in the package: @@ -48,18 +52,10 @@ atlas_add_component( TrigT1NSWSimTools INCLUDE_DIRS ${ROOT_INCLUDE_DIRS} ${CLHEP_INCLUDE_DIRS} ${EIGEN_INCLUDE_DIRS} ${BOOST_INCLUDE_DIRS} ${TBB_INCLUDE_DIRS} ${HEPMC_INCLUDE_DIRS} LINK_LIBRARIES ${ROOT_LIBRARIES} ${CLHEP_LIBRARIES} ${EIGEN_LIBRARIES} ${BOOST_LIBRARIES} ${TBB_LIBRARIES} ${HEPMC_LIBRARIES} SGTools GaudiKernel AthenaBaseComps AthenaKernel AGDDKernel GeoPrimitives Identifier EventInfo MuonAGDDDescription MuonReadoutGeometry - MuonDigitContainer MuonIdHelpersLib MuonSimEvent MuonSimData TrigT1NSWSimToolsLib) + MuonDigitContainer MuonIdHelpersLib MuonSimEvent MuonSimData MuonRDO RegSelLUT) + -#loop over each cxx file in the util directory of this package - file (GLOB util_sources RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}/util" "${CMAKE_CURRENT_SOURCE_DIR}/util/[a-zA-Z0-9]*.cxx") - foreach (SOURCE ${util_sources}) - #use the name of the file as the name of the executable (e.g. myApplication.cxx will be executed with: myApplication) - string (REGEX REPLACE ".cxx$" "" FILE ${SOURCE}) - atlas_add_executable (${FILE} SOURCES util/${FILE}.cxx LINK_LIBRARIES ${ROOT_LIBRARIES} ${CLHEP_LIBRARIES} ${EIGEN_LIBRARIES} ${BOOST_LIBRARIES} ${TBB_LIBRARIES} ${HEPMC_LIBRARIES} - SGTools GaudiKernel AthenaBaseComps AthenaKernel AGDDKernel GeoPrimitives Identifier EventInfo MuonAGDDDescription MuonReadoutGeometry - MuonDigitContainer MuonIdHelpersLib MuonSimEvent MuonSimData TrigT1NSWSimToolsLib) - endforeach (SOURCE ${util_sources}) diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/GeoUtils.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/GeoUtils.h index 1ed6a2e3aab22f27800cadd09dba999672a56708..c615fe7ccbe7da5e3f24f2cfef52523dff028606 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/GeoUtils.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/GeoUtils.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef GEOUTILS_H @@ -7,14 +7,10 @@ #include <boost/geometry.hpp> #include <boost/geometry/geometries/point_xy.hpp> #include <boost/geometry/geometries/polygon.hpp> +#include "TrkSurfaces/PlaneSurface.h" #include <vector> - - -/* - author : Serhat Istin / S.I - */ -namespace NSWL1{ +namespace NSWL1{ using Vertex=boost::geometry::model::d2::point_xy<double>; using Polygon=boost::geometry::model::polygon<Vertex>; using Vertices=std::vector<Vertex>; @@ -31,7 +27,7 @@ namespace NSWL1{ //Print something on the screen in a well defined format - Polygon buildPolygon(const Vertices); + Polygon buildPolygon(const Vertices&);//hm template <class T> void print(const T& t){std::cout<<boost::geometry::wkt(t)<<std::endl;} @@ -65,7 +61,6 @@ namespace NSWL1{ //given a polygon, return the number of vertices... (keep in mind that a polygon is a closed loop in our sense so first and the last vertices are the same) int nVertices(const Polygon&); - //write a function : given a polygon, return the nth vertex... Vertex getVertex(const Polygon&,unsigned int); //Given a polygon get minimum and maximum bounds of a vertical or horizontal coordinate @@ -80,7 +75,10 @@ namespace NSWL1{ return std::make_pair(values[0],values.back()); } - + + Polygon globalToLocal(const Polygon& ,float z,const Trk::PlaneSurface & );//use Z-depth of the given polygon in 3D + + //Absorbing Element : a closed loop made up of 4 points (0,0) Polygon NilPolygon(); diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IMMFPGATool.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IMMFPGATool.h index 5cc118ce2af5c9bf66104eead5145ac54d624cb6..fb4ea45c0b83e9923e242a69c6841489ad91b5ea 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IMMFPGATool.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IMMFPGATool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef IMMFPGATOOL_H diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IMMStripTdsTool.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IMMStripTdsTool.h index f3c471fbd1762342c024c0915bdf1af5913c74bc..723bccfc99d88ad8c7344953d344dc5ff9f49736 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IMMStripTdsTool.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IMMStripTdsTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef IMMSTRIPTDSTOOL_H diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IMMTriggerTool.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IMMTriggerTool.h index 357d742be42c91d8b75c3344fabed81ef518947a..e88ebb9618d7fbe9c57a91c71d01fe360781df10 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IMMTriggerTool.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IMMTriggerTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef IMMTRIGGERTOOL_H diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IPadTdsTool.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IPadTdsTool.h index 752a2f6d396d44adef6b3bee7eaa149779d2fe4b..f316bd780d47587d154f8dc8018a10de340949aa 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IPadTdsTool.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IPadTdsTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef IPADTDSTOOL_H diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IPadTriggerLogicTool.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IPadTriggerLogicTool.h index bd7b57013fcea6edaa33f8c9052507325de830b8..f128d34017087711e87abc59533e8ae29df34ee2 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IPadTriggerLogicTool.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IPadTriggerLogicTool.h @@ -1,7 +1,7 @@ // -*- c++ -*- /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef NSWL1_IPADTDSTOOL_H diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IStripClusterTool.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IStripClusterTool.h index 9ef4a7e6785f6bbe665384410fb4aedf48df3a5d..e3ebdbeb968ffa940ec437584c995c5e6c032685 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IStripClusterTool.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IStripClusterTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef ISTRIPCLUSTERTOOL_H diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IStripSegmentTool.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IStripSegmentTool.h index e070a1611fa04df459551f2f9e5c985662462262..55404a6748a5a4f80067409484b2bb7d7e0349b6 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IStripSegmentTool.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IStripSegmentTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef ISTRIPSEGMENTTOOL_H @@ -32,7 +32,7 @@ namespace NSWL1 { virtual ~IStripSegmentTool() {} virtual StatusCode find_segments(std::vector< std::unique_ptr<StripClusterData> >& clusters) = 0; - + static const InterfaceID& interfaceID() { static const InterfaceID IID_IStripSegmentTool("NSWL1::IStripSegmentTool", 1 ,0); return IID_IStripSegmentTool; diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IStripTdsTool.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IStripTdsTool.h index 905d0e7f6fed69851e8fe5e8985a50bf821f4b56..a0f44a16c84849bd5606b69ada9affc8747281e4 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IStripTdsTool.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/IStripTdsTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef ISTRIPTDSTOOL_H diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/L1TdrStgcTriggerLogic.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/L1TdrStgcTriggerLogic.h index 83f6a80f8221a79da4e761a7d8c7ae598dd5b293..cbf37abf0c110cfc905ca2e252c9f11a42be1d41 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/L1TdrStgcTriggerLogic.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/L1TdrStgcTriggerLogic.h @@ -1,7 +1,7 @@ // Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef NSW_L1TDRSTGCTRIGGERLOGIC_H @@ -12,12 +12,12 @@ #include "TrigT1NSWSimTools/SingleWedgePadTrigger.h" #include "AthenaBaseComps/AthMsgStreamMacros.h" #include "AthenaKernel/MsgStreamMember.h" + + #include <string> #include <vector> #include "TRandom.h" -//forward declarations -class MsgStream; namespace NSWL1 { @@ -29,7 +29,7 @@ namespace NSWL1 { In particular, the naming convention and the trigger logic are described in ATL-MUON-INT-2014-003 https://cds.cern.ch/record/1694727. - This class requires the input data to be formatted as a vector<PadWithHits>, + This class requires the input data to be formatted as a vector<PadOfflineData>, and it provides as output a vector<SectorTriggerCandidate>. Imported from @@ -42,6 +42,7 @@ namespace NSWL1 { Based on the original implementation by Shikma, sTGCTriggerLogic. + davide.gerbaudo@gmail.com April 2013 */ class L1TdrStgcTriggerLogic { @@ -61,7 +62,7 @@ class L1TdrStgcTriggerLogic { */ - bool buildSectorTriggers(const std::vector<PadWithHits> &pads); + bool buildSectorTriggers(const std::vector<std::shared_ptr<PadOfflineData>> &pads); /// access cached output of buildSectorTriggers() const std::vector< SectorTriggerCandidate >& candidates() const {return m_secTrigCand;} /// simulate efficiency by dropping random pads (their indices) @@ -73,52 +74,57 @@ class L1TdrStgcTriggerLogic { They are probably obsolete and they should be updated \todo update trigger patterns */ - static std::vector<std::string> sTGC_triggerPatterns(); - static std::vector<std::string> sTGC_triggerPatternsEtaUp(); - static std::vector<std::string> sTGC_triggerPatternsEtaDown(); - static std::vector<std::string> sTGC_triggerPatternsPhiUp(); - static std::vector<std::string> sTGC_triggerPatternsPhiDown(); - static std::vector<std::string> sTGC_triggerPatternsPhiDownUp(); - static std::vector<std::string> sTGC_triggerPatternsPhiUpDown(); - - static bool hitPattern(const Pad &firstPad, const Pad &otherPad, + std::vector<std::string> sTGC_triggerPatterns(); + std::vector<std::string> sTGC_triggerPatternsEtaUp(); + std::vector<std::string> sTGC_triggerPatternsEtaDown(); + std::vector<std::string> sTGC_triggerPatternsPhiUp(); + std::vector<std::string> sTGC_triggerPatternsPhiDown(); + std::vector<std::string> sTGC_triggerPatternsPhiDownUp(); + std::vector<std::string> sTGC_triggerPatternsPhiUpDown(); + + bool hitPattern(const std::shared_ptr<PadOfflineData> &firstPad, const std::shared_ptr<PadOfflineData> &otherPad, std::string &pattern); - static bool hitPattern(const int &iEta0, const int &iPhi0, + bool hitPattern(const int &iEta0, const int &iPhi0, const int &iEta1, const int &iPhi1, std::string &pattern); - static std::vector< SingleWedgePadTrigger > buildSingleWedgeTriggers(const std::vector<PadWithHits> &pads, + std::vector< SingleWedgePadTrigger > buildSingleWedgeTriggers(const std::vector<std::shared_ptr<PadOfflineData>> &pads, const std::vector< size_t > &padIndicesLayer0, const std::vector< size_t > &padIndicesLayer1, const std::vector< size_t > &padIndicesLayer2, const std::vector< size_t > &padIndicesLayer3, bool isLayer1, bool isLayer2, bool isLayer3, bool isLayer4); - static std::vector< SingleWedgePadTrigger > build34swt(const std::vector<PadWithHits> &pads, + std::vector< SingleWedgePadTrigger > build34swt(const std::vector<std::shared_ptr<PadOfflineData>> &pads, const std::vector< size_t > &padIndicesLayer0, const std::vector< size_t > &padIndicesLayer1, const std::vector< size_t > &padIndicesLayer2, const std::vector< size_t > &padIndicesLayer3); - static std::vector< SingleWedgePadTrigger > build44swt(const std::vector<PadWithHits> &pads, + std::vector< SingleWedgePadTrigger > build44swt(const std::vector<std::shared_ptr<PadOfflineData>> &pads, const std::vector< size_t > &padIndicesLayer0, const std::vector< size_t > &padIndicesLayer1, const std::vector< size_t > &padIndicesLayer2, const std::vector< size_t > &padIndicesLayer3); - protected: /// Log a message using the Athena controlled logging system MsgStream& msg(MSG::Level lvl) const { return m_msg.get() << lvl; } - /// Check whether the logging system is active at the provided verbosity level bool msgLvl(MSG::Level lvl) { return m_msg.get().level() <= lvl; } - /// Private message stream member mutable Athena::MsgStreamMember m_msg; + + + + + private: - TRandom m_rand; - std::vector< SectorTriggerCandidate > m_secTrigCand; - bool m_writePickle; /// after computing the triggers, write the canditates to 'pickle' files (for event display) - std::string m_picklePrefix; /// path where the pickle files will be written + std::vector<size_t> filterByLayer(const std::vector<std::shared_ptr<PadOfflineData>> &pads, + const std::vector<size_t> &padSelectedIndices, + int layer); + std::vector<size_t> filterByMultiplet(const std::vector<std::shared_ptr<PadOfflineData>> &pads, + const std::vector<size_t> &padSelectedIndices, + int multiplet); + std::vector< SectorTriggerCandidate > m_secTrigCand; }; diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMCandidateData.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMCandidateData.h index 24cb42dd655cd072a3bb23121ff9bc9b6bc50bf1..fc211011ad1f5dc85b9ccf51b4cf52d07d717319 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMCandidateData.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMCandidateData.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef MMCANDIDATEDATA_H diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMCandidateOfflineData.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMCandidateOfflineData.h index 06a802d147d9b757352d064e25f03e26b7bff761..d0022c0d18eb701b6e3f056101ba8b168359dd61 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMCandidateOfflineData.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMCandidateOfflineData.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef MMCANDIDATEOFFLINEDATA_H diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMFPGAOfflineTool.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMFPGAOfflineTool.h index e268a342612ed455911f8916fda00a40fc9b9eb3..64b67218dd162d5cb38f830ab17b54a1f9dbc8fa 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMFPGAOfflineTool.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMFPGAOfflineTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef MMFPGAOFFLINETOOL_H diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMLoadVariables.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMLoadVariables.h index 94676e8ab5d7fcbb33449b09feef781186e5b513..28483e42386e1124d6de610bd284b92417e8d7a5 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMLoadVariables.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMLoadVariables.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef MMLOADVARIABLES_H diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMStripData.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMStripData.h index 455192c8abf5ba7054066f41d00e8bf481a3dbda..277844c64049ef3763f4660688203b81c9e6917b 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMStripData.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMStripData.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef MMSTRIPDATA_H diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMStripOfflineData.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMStripOfflineData.h index 91e256a2077581b821811b93c337ae830454d273..cadf92d2375f3cd0a40cfb549a6e0be498df91ec 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMStripOfflineData.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMStripOfflineData.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef MMSTRIPOFFLINEDATA_H diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMStripTdsOfflineTool.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMStripTdsOfflineTool.h index c5b35855516323d41df3bcf28b4269b832abae43..67ae938ce4d6c9fb35eeba9efc8dc35e1ce973b6 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMStripTdsOfflineTool.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMStripTdsOfflineTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef MMSTRIPTDSOFFLINETOOL_H diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMT_Finder.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMT_Finder.h index 1e6efdaa073a15f5526642431d6b25f334baa605..e0ef589ce5a11ca69a1983eff9b59a470ac3c4cf 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMT_Finder.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMT_Finder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef MMT_FINDER_H diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMT_Fitter.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMT_Fitter.h index 4d6527857b350ec0dd35faee27814c0174da1dd4..f3cc334e97ecc4ddcc8c5ca076c39e00b754443a 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMT_Fitter.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMT_Fitter.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef MMT_FITTER_H diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMT_struct.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMT_struct.h index 60adabedd44e547333eb6b3125d91d1f322fdab8..8c07a1c322179d28cea6ec0e24d2e9a7c703e5c9 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMT_struct.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMT_struct.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef MM_STRUCT_H diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMTriggerTool.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMTriggerTool.h index 99b1c1e9d5579a72b0a4ee545a3491cb4ebd2fa0..7e05c47d25a299a79089989c7559986a364d4450 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMTriggerTool.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/MMTriggerTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef MMTRIGGERTOOL_H diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadData.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadData.h index 66a9815e22e88f494004e33b9b06b708639cf126..6812ef73ef1c012ee0d889cdd3b7e3e02169bbb5 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadData.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadData.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // -*-c++-*- @@ -8,6 +8,7 @@ // local includes +#include <stdint.h> #include <ostream> diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadOfflineData.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadOfflineData.h index 9f57bda5e367a62aaf761d4451b98bc062a5af0d..649d91fcc5fb083d475518b64e8d795febf56245 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadOfflineData.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadOfflineData.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef PADOFFLINEDATA_H @@ -11,6 +11,12 @@ // local includes #include "TrigT1NSWSimTools/PadData.h" +#include "MuonReadoutGeometry/MuonDetectorManager.h" + + +// forward declarations +class TVector3; + // namespace for the NSW LVL1 related classes namespace NSWL1 { @@ -36,15 +42,20 @@ namespace NSWL1 { float m_time; //!< signal arrival time after electronics delay is applied uint16_t m_bc_tag; //!< BC Tag - + public: PadOfflineData(Identifier id, float time, uint16_t bc_tag, const sTgcIdHelper* helper); + //PadOfflineData(Identifier id, float time, uint16_t bc_tag, bool isdead, bool ispileup, const sTgcIdHelper* helper); ~PadOfflineData(); //! methods for retrieving the bare data + //Identifier Id() const; + Identifier Identity() const; uint32_t id() const; //!< get the 32 bit word identifing the fragment uint16_t BC_Tag() const; //!< get the BCID float time() const; //!< get the arrival time after the delay is applied + //bool isDead() const; //!< get the isDead bool + //bool isPileup() const; //!< get the isPileup bool //! helper methods decoding the hit fragment position within the NSW detector int sideId() const; //!< get the side (0==sideC, 1==sideA) @@ -55,8 +66,8 @@ namespace NSWL1 { int gasGapId() const; //!< get the gas gap (ranging from 1 to 4, 1 is at lowest |z|) int channelId() const; //!< get the channel int padEtaId() const; //!< get the pad eta channel - int padPhiId() const; //!< get the pad phi channel - + int padPhiId() const; //!< get the pad phi channel + float m_cornerXyz[4][3]; }; // end of PadOfflineData class } // namespace NSWL1 diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTdsOfflineTool.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTdsOfflineTool.h index b162e1d75b763cf38a1eae69321fc8f82902dbc3..74685b6c03d870f7796b768ec8c48e8bad39c9cf 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTdsOfflineTool.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTdsOfflineTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // -*-c++-*- diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTdsValidationTree.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTdsValidationTree.h index 4d24d0dd8e3d13fea9cfb6ca1ac52130842208b3..6504ccffa597c2703f0e43620eff9d375f30c375 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTdsValidationTree.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTdsValidationTree.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // -*-c++-*- diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTrigger.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTrigger.h index 427a253479007c8b0449601c2b9e9855d5e1584d..ece6b825c6872eacce353fe61bc7937feb307f28 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTrigger.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTrigger.h @@ -1,7 +1,7 @@ // -*- c++ -*- /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration */ #ifndef NSWL1_PADDATA_H @@ -9,6 +9,7 @@ #include "TrigT1NSWSimTools/TriggerTypes.h" #include "TrigT1NSWSimTools/GeoUtils.h" +#include <ostream> #include <vector> @@ -33,11 +34,23 @@ namespace NSWL1 { int m_eta_id; int m_phi_id; int m_multiplet_id; - int m_gasGap_id; int m_isSmall; - std::vector<float> m_trglocalminY; - std::vector<float> m_trglocalmaxY; - std::vector<std::vector<float>> m_pad_strip_info; // hack to match pads to strips until we fix the band id issue + int m_moduleIdInner; + int m_moduleIdOuter; + std::vector<float> m_trglocalminYInner; + std::vector<float> m_trglocalmaxYInner; + std::vector<float> m_trglocalminYOuter; + std::vector<float> m_trglocalmaxYOuter; + std::vector<int> m_trgSelectedLayersInner; + std::vector<int> m_trgSelectedLayersOuter; + std::vector<int> m_trgSelectedBandsInner; + std::vector<int> m_trgSelectedBandsOuter; + std::vector<int> m_trgPadPhiIndicesInner; + std::vector<int> m_trgPadPhiIndicesOuter; + std::vector<int> m_trgPadEtaIndicesInner; + std::vector<int> m_trgPadEtaIndicesOuter; + + //std::vector<std::vector<float>> m_pad_strip_info; // hack to match pads to strips until we fix the band id issue // m_pad_strip_info.size gives the number of pads in each PadTrigger // m_pad_strip_info[i][0] gives the multilayer id of the ith pad in this trigger // m_pad_strip_info[i][1] gives the gasgap id of the ith pad in this trigger @@ -45,18 +58,22 @@ namespace NSWL1 { // m_pad_strip_info[i][3] gives the local max y of the ith pad in this trigger std::vector< std::shared_ptr<PadData>> m_pads; ///!< digits contributing to this trigger primitive - + std::vector< std::shared_ptr<PadData>> m_padsInner; ///!< digits contributing to this trigger primitive + std::vector< std::shared_ptr<PadData>> m_padsOuter; ///!< digits contributing to this trigger primitive + int m_triggerindex; /** for now computed as as SingleWedgePadTrigger::halfPadCoordinates().ieta \todo when we have an inner+outer candidate, will they get the same bandid? Also do we need to cache it as a datamember? */ - PadTrigger() : m_bandid(0), m_eta(0), m_phi(0), m_eta_id(0), m_phi_id(0), m_multiplet_id(0), m_gasGap_id(0), m_pad_strip_info{{0.}} { + PadTrigger() : m_bandid(0), m_eta(0), m_phi(0),m_etamin(0),m_etamax(0),m_phimin(0),m_phimax(0) + ,m_eta_id(0), m_phi_id(0), m_multiplet_id(0),m_isSmall(0),m_moduleIdInner(0),m_moduleIdOuter(0) { } uint16_t bctag() const; + int index() const { return m_triggerindex;} int sideId() const; ///! sideId of the first pad in the trigger int sectorId() const; ///! sectorId of the first pad in the trigger uint16_t bandId() const { return m_bandid; } @@ -65,18 +82,32 @@ namespace NSWL1 { float etaId() const { return m_eta_id; } ///! SectorTriggerCandidate pad eta index float phiId() const { return m_phi_id; } ///! SectorTriggerCandidate pad phi index float multipletId() const { return m_multiplet_id; } ///! SectorTriggerCandidate pad multiplet index - float gasGapId() const { return m_gasGap_id; } ///! SectorTriggerCandidate pad gasGap index float etaMin() const {return m_etamin;} float etaMax() const {return m_etamax;} float phiMin() const {return m_phimin;} float phiMax() const {return m_phimax;} int isSmall () const {return m_isSmall;} + int moduleIdInner() const { return m_moduleIdInner;} + int moduleIdOuter() const { return m_moduleIdOuter;} + std::vector<float> const trglocalminYInner() const { return m_trglocalminYInner; } + std::vector<float> const trglocalmaxYInner() const { return m_trglocalmaxYInner; } + std::vector<float> const trglocalminYOuter() const { return m_trglocalminYOuter; } + std::vector<float> const trglocalmaxYOuter() const { return m_trglocalmaxYOuter; } + std::vector<int> trgSelectedLayersInner()const{ return m_trgSelectedLayersInner;} + std::vector<int> trgSelectedLayersOuter() const { return m_trgSelectedLayersOuter; } + std::vector<int> trgSelectedBandsInner() const { return m_trgSelectedBandsInner;} + std::vector<int> trgSelectedBandsOuter() const { return m_trgSelectedBandsOuter;} + std::vector<int> trgPadPhiIndicesInner() const { return m_trgPadPhiIndicesInner;} + std::vector<int> trgPadPhiIndicesOuter() const { return m_trgPadPhiIndicesOuter;} + std::vector<int> trgPadEtaIndicesInner() const { return m_trgPadEtaIndicesInner;} + std::vector<int> trgPadEtaIndicesOuter() const { return m_trgPadEtaIndicesOuter;} + - std::vector<float> const trglocalminY() { return m_trglocalminY; } - std::vector<float> const trglocalmaxY() { return m_trglocalmaxY; } }; } // namespace NSWL1 +/// \todo +// std::ostream& operator<<(std::ostream& stream, NSWL1::PadTrigger& pt); #endif diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTriggerLogicOfflineTool.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTriggerLogicOfflineTool.h index c80e9300dba111752bbacd9aa88d74a7575e6a6b..dbad6c7500afb6091bbe9272e5988be2e7b1c36a 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTriggerLogicOfflineTool.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTriggerLogicOfflineTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // -*-c++-*- @@ -23,6 +23,7 @@ class IIncidentSvc; class TTree; + namespace MuonGM { class MuonDetectorManager; } @@ -65,18 +66,13 @@ namespace NSWL1 { StatusCode compute_pad_triggers(const std::vector<std::shared_ptr<PadData>>& pads, std::vector<std::unique_ptr<PadTrigger>> &triggers); - /** - @brief simplified trigger: require 4 aligned pads on 4 subsequent layers - This is meant mainly to test the machinery. - See test/test_4on4padTrigger.cxx - */ + static std::vector<std::unique_ptr<PadTrigger>> build4of4SingleWedgeTriggers(const std::vector<std::shared_ptr<PadData>> &pads); + /** - @brief transfer the geometric info from PadData to PadWithHits + @brief transfer the geometric info from PadData to std::shared_ptr<PadData> Note: it needs to access the MuonDetectorManager */ - bool fillGeometricInformation(const PadData &pd, PadWithHits &pwh); - int Pad2BandId(const PadWithHits &p, const float Yfrac); /// from TDR-style SectorTriggerCandidate to PadTrigger PadTrigger convert(const SectorTriggerCandidate &t); @@ -85,27 +81,26 @@ namespace NSWL1 { /// get the output tree from the athena histogram service TTree* get_tree_from_histsvc(); - // needed Servives, Tools and Helpers ServiceHandle< IIncidentSvc > m_incidentSvc; //!< Athena/Gaudi incident Service const MuonGM::MuonDetectorManager* m_detManager; //!< MuonDetectorManager - // hidden variables int m_pad_cache_runNumber; //!< run number associated to the current PAD cache int m_pad_cache_eventNumber; //!< event number associated to the current PAD cache - // properties: configuration + StringProperty m_rndmEngineName; //!< property, todo + StringProperty m_sTgcDigitContainer; //!< property, todo + StringProperty m_sTgcSdoContainer; //!< property, todo FloatProperty m_PadEfficiency; //!< property, todo - // properties: steering flags BooleanProperty m_useSimple4of4; //!< property, todo BooleanProperty m_doNtuple; //!< property, todo PadTriggerValidationTree m_validation_tree; - size_t m_missingDetectorManagerErrorCounter; ///< how many times we errored b/c of missing m_detManager - size_t m_missingReadoutElementErrorCounter; ///< how many times we errored b/c of missing sTgcReadoutElement + + void fillGeometricInformation(const std::shared_ptr<PadOfflineData>&); L1TdrStgcTriggerLogic m_tdrLogic; - }; // end of PadTriggerLogicOfflineTool class + }; } // namespace NSWL1 diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTriggerValidationTree.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTriggerValidationTree.h index f452faf83cd4008975931dcc65313ffe4182d4b8..3e5ae4eccd830d0f32e9519f71075eacb0fc2150 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTriggerValidationTree.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadTriggerValidationTree.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // -*-c++-*- @@ -9,6 +9,7 @@ #include "GeoPrimitives/GeoPrimitives.h" // Amg::Vector3D (cannot fw declare typedef) #include "TrigT1NSWSimTools/TriggerTypes.h" #include <string> +#include <utility> // pair #include <vector> class TTree; @@ -42,11 +43,33 @@ public: void clear_ntuple_variables(); ///< set to 0 all pointers of internal containers void fill_num_pad_triggers(size_t num); ///< store the number of pad triggers per event void fill_pad_trigger_basics(const std::vector<std::unique_ptr<PadTrigger>> &triggers); ///< store basic information about the pad triggers + /* + void fill_num_pad_hits(size_t num); ///< store the number of hits for one pad + void fill_hit_global_pos(const Amg::Vector3D& pos); ///< store global position of a hit + void fill_truth_hit_global_pos(const Amg::Vector3D& pos); ///< store global position of a truth-matched hit + */ private: std::string m_treename; TTree* m_tree; ///< ntuple for analysis int m_nPadTriggers; ///< number of triggers per event std::vector<unsigned int>* m_padTriggerBCID; ///< BCID of the pad trigger + //S.I + std::vector<int>* m_padTriggerModuleIDinner; + std::vector<int>* m_padTriggerModuleIDouter; + std::vector<std::vector<int>>* m_padTriggerSelectedLayersInner; + std::vector<std::vector<int>>* m_padTriggerSelectedLayersOuter; + std::vector<std::vector<int>>* m_padTriggerSelectedBandsInner; + std::vector<std::vector<int>>* m_padTriggerSelectedBandsOuter; + std::vector<std::vector<int>>* m_padTriggerPadEtaIndicesInner; + std::vector<std::vector<int>>* m_padTriggerPadPhiIndicesInner; + std::vector<std::vector<int>>* m_padTriggerPadEtaIndicesOuter; + std::vector<std::vector<int>>* m_padTriggerPadPhiIndicesOuter; + std::vector<std::vector<float>>* m_padTriggerRCenterMinInner; + std::vector<std::vector<float>>* m_padTriggerRCenterMaxInner; + std::vector<std::vector<float>>* m_padTriggerRCenterMinOuter; + std::vector<std::vector<float>>* m_padTriggerRCenterMaxOuter; + //S.I + std::vector<int>* m_padTriggerSectorID; ///< Sector ID of the pad trigger std::vector<int>* m_padTriggerSectorType; std::vector<int>* m_padTriggerSideID; ///< Side ID of the pad trigger @@ -56,15 +79,17 @@ private: std::vector<int>* m_padTriggerEtaID; ///< Trigger halfpad eta id std::vector<int>* m_padTriggerPhiID; ///< Trigger halfpad phi id std::vector<int>* m_padTriggerMultipletID; ///< Multiplet ID of the pad trigger - std::vector<int>* m_padTriggerGasGapID; ///< GasGap ID of the pad trigger std::vector<float>* m_padTriggerEtamin; std::vector<float>* m_padTriggerEtamax; std::vector<float>* m_padTriggerPhimin; std::vector<float>* m_padTriggerPhimax; - std::vector<std::vector<float>>* m_padTriggerlocalminY; - std::vector<std::vector<float>>* m_padTriggerlocalmaxY; + std::vector<std::vector<float>>* m_padTriggerlocalminYInner; + std::vector<std::vector<float>>* m_padTriggerlocalmaxYInner; + std::vector<std::vector<float>>* m_padTriggerlocalminYOuter; + std::vector<std::vector<float>>* m_padTriggerlocalmaxYOuter; + std::vector<int>* m_padTriggerIndex; }; // PadTriggerValidationTree } // NSWL1 diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadUtil.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadUtil.h deleted file mode 100644 index e837062dd0cc30d5ca6b388e746f39247ad37fe7..0000000000000000000000000000000000000000 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadUtil.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration -*/ - -// -*-c++-*- -#ifndef PADUTIL_H -#define PADUTIL_H - -#include "GeoPrimitives/GeoPrimitives.h" - -// forward declarations -class MsgStream; -class TVector3; -class PadOfflineData; - -namespace std { - template <class X,class Y> class pair; -} - -namespace NSWL1 { - /// determine the pad ieta, iphi indices using the old algorithm - /** - check if the PAD id can be converted into the type used by the - standalone PAD simulation developed for the TDR. Note that the - input TVector3 is the the global psosition of the PAD. The - resulting ieta,iphi values are stored in result. Return false - when the indices cannot be determined. - */ - bool determinePad(int layer, - int wedgeId, - int wedgeType, - int sector, - int detectorNumber, - TVector3 pos, - std::pair<int,int>& result, - MsgStream& msg); - /// wraps determinePad - bool determine_pad_indices_with_old_algo(const PadOfflineData& pod, const Amg::Vector3D &global_pos, - std::pair<int,int>& result, MsgStream& msg); -} // end of namespace - -#endif diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadWithHits.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadWithHits.h deleted file mode 100644 index f85960d73e9646cd96e89e79a04322553b851aaa..0000000000000000000000000000000000000000 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/PadWithHits.h +++ /dev/null @@ -1,133 +0,0 @@ -// Dear emacs, this is -*- c++ -*- - -/* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration -*/ - -//S.I 26-07-18 : This class and the structure is too problematic in terms of memory management while using raw pointers -#ifndef NSW_PADWITHITS_H -#define NSW_PADWITHITS_H - -#include <string> -#include <vector> - -#include "TrigT1NSWSimTools/PadData.h" -#include "TrigT1NSWSimTools/TriggerTypes.h" - -namespace NSWL1 { - - struct Pad { - int ieta; - int iphi; - int multiplet; - int layer; - int sector; - int sectortype; - int side; //!< A(==0) side is z>0, facing LHCb; C(==1) side is z<0, facing ALICE - int module; - - float m_cornerXyz[4][3]; //!< (x,y,z) coordinates of the 4 pad corners (in the order low to high phi, low to high R) - - - std::shared_ptr<PadData> m_padData; - - Pad(const int &eta, const int &phi, - const int &multi, const int &layerType, const int &sn, const int &si, const int &mod) : - ieta(eta), iphi(phi), multiplet(multi), layer(layerType), sector(sn), sectortype(sn), side(si), module(mod), - m_cornerXyz{},m_padData(nullptr) - { - - - } - - Pad(std::shared_ptr<PadData> pData ) : - ieta(pData->padEtaId()), iphi(pData->padPhiId()), multiplet(pData->multipletId()), layer(pData->gasGapId()), sector(pData->sectorId()), sectortype(pData->sectorType()), side(pData->sideId()), module(pData->moduleId()),m_cornerXyz{},m_padData(pData) - { - } - - std::string pickle() const; //!< simple dict-like representation (might differ from '<<') - - Pad& fillCornerCoords(float corners[4][3]); - static int sideFromZ(float z) {return (z>0.0 ? 0:1);} - - }; - float midSectorPhi(int sector); //!< angle phi at the center of the sector - float phi_mpi_pi(const double &val); //!< bring phi to [-pi,+pi) - float phi_zero_2pi(const double &val); //!< bring phi to [0, +2pi) - -/** - @brief Class that holds two pieces of information: pad geometry and hit indices. - - The detector information (ieta, iphi, layer, etc.) must be provided - trhough the constructor. The pad geometrical information - (i.e. surface limits) might require further calculation, and should be - set with the set(Low/High)* methods. - The hits on the pad must be added with PadWithHits::addHit. - - In the future we might implement some hash function to speed up the - pad lookup when adding the hits. - - Note: the 'pickle' representation is meant to be read in python to - debug single trigger/events by dumping them to a txt file. The idea is - to write to a string all the datamembers reducing them to basic - _python_ types (i.e. numbers, strings, lists etc.) contained within a - dictionary. The key names should be representative of the attribute, - but drop all the naming convention tattings (e.g. 'm_loPhi' will be - stored as 'loPhi'). The curly braces delimiting the dictionary - corresponding to an object are taken care of by the code that does the - actual dump, not by the object providing its representation; in this - way, the object does not need to worry about introspection. That is, - if I am an object of type A providing my 'pickle' representation, I - don't need to worry whether I am of type A or of type B : A; the code - that is actually dumping A should know the type, and take care of - the curly braces appropriately for example doing - "{A.pickle(), B.pickle()}" or "{'a' : {A.pickle()}, 'b': {B.pickle()}}". - - - @author davide.gerbaudo@gmail.com - @date April 2013 -*/ - class PadWithHits : public Pad - { - public: - PadWithHits(const int &ieta, const int &iphi, - const int &multiplet, - const int &layerType, const int §or, const int §ortype, const int &side, const int &module); - PadWithHits(const Pad &p); - - PadWithHits(std::shared_ptr<PadData> pData); - - const std::vector<size_t>& hitIndices() const { return m_hitIndices; } - float totEnergy() const { return m_totEnergy; } - float avgEta() const { return m_avgEta; } - float avgPhi() const { return m_avgPhi; } - std::string pickle() const; //!< simple dict-like representation - protected: - void updateWeightedCoord(const double &eta, const double &phi, const float &charge); - protected: - std::vector<size_t> m_hitIndices; - float m_totEnergy; //!< total energy from all hits - float m_avgEta; //!< energy-weighted eta position - float m_avgPhi; //!< energy-weighted phi position - float m_minEta; //!< minimum charge eta position - float m_minPhi; //!< minimum charge phi position - float m_maxEta; //!< maximum charge eta position - float m_maxPhi; //!< maximum charge phi position - - }; // class PadWithHits - - - - // helper functions - std::vector<size_t> filterBySector(const std::vector<Pad> &pads, int sector); - std::vector<size_t> filterBySector(const std::vector<PadWithHits> &pads, int sector); - std::vector<size_t> filterBySide(const std::vector<Pad> &pads,const std::vector<size_t> &padSelectedIndices,int side); - std::vector<size_t> filterBySide(const std::vector<PadWithHits> &pads,const std::vector<size_t> &padSelectedIndices,int side); - std::vector<size_t> filterByLayer(const std::vector<Pad> &pads, const std::vector<size_t> &padSelectedIndices,int layer); - std::vector<size_t> filterByLayer(const std::vector<PadWithHits> &pads,const std::vector<size_t> &padSelectedIndices,int layer); - std::vector<size_t> filterByMultiplet(const std::vector<Pad> &pads, const std::vector<size_t> &padSelectedIndices,int multiplet); - std::vector<size_t> filterByMultiplet(const std::vector<PadWithHits> &pads,const std::vector<size_t> &padSelectedIndices,int multiplet); - -} // end namespace nsw - -#endif diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/SectorTriggerCandidate.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/SectorTriggerCandidate.h index f6f55e6ab29b3b39c311f0140bcf11e29a1e2f4b..f3337fe5ee526864a8dbee58f11d8895cc6e480d 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/SectorTriggerCandidate.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/SectorTriggerCandidate.h @@ -1,7 +1,7 @@ // Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -15,7 +15,7 @@ /*! -A trigger candidate for a stgc sector +A trigger trigger candidate for a stgc sector davide.gerbaudo@gmail.com, April 2013 */ @@ -28,7 +28,6 @@ namespace NSWL1 { SectorTriggerCandidate(const SingleWedgePadTrigger &inner, const SingleWedgePadTrigger &outer); SectorTriggerCandidate(const SingleWedgePadTrigger &innerOrOuterInTransition); - std::string pickle() const; //!< simple dict-like representation const std::vector< SingleWedgePadTrigger >& wedgeTrigs() const { return m_wedgeTrigs;} Polygon triggerRegion3() const; diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/SingleWedgePadTrigger.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/SingleWedgePadTrigger.h index fb923cb870c5ec63e41c82b4ddb529c9245e601e..dfd7c15840ff095009ff6b24b0252cf537fcbc30 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/SingleWedgePadTrigger.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/SingleWedgePadTrigger.h @@ -1,27 +1,22 @@ // Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef NSW_SINGLEPADWEDGETRIGGER_H #define NSW_SINGLEPADWEDGETRIGGER_H -#include "TrigT1NSWSimTools/PadWithHits.h" #include "TrigT1NSWSimTools/GeoUtils.h" #include "TrigT1NSWSimTools/TriggerTypes.h" -#include "AthenaBaseComps/AthMsgStreamMacros.h" -#include "AthenaKernel/MsgStreamMember.h" + #include "TVector3.h" #include <string> #include <vector> -//forward declarations -class MsgStream; - /*! A trigger with coincident hits in at least 3 out of 4 layers within a wedge. @@ -37,7 +32,6 @@ namespace NSWL1 { int ieta, iphi; EtaPhi(int e, int p) : ieta(e), iphi(p) {} std::string str() const; - std::string pickle() const { return str(); } private : EtaPhi(); // avoid gratuitous default constructor }; struct EtaPhiHalf : EtaPhi { EtaPhiHalf(int e, int p) : EtaPhi(e,p){} }; // just to avoid mistakes @@ -54,11 +48,11 @@ namespace NSWL1 { bool verbose=false); static EtaPhiHalf bandIndices(const EtaPhiHalf &inner, const EtaPhiHalf &outer); //! area that is overlapping between the pads that cause the trigger (pads are staggered) - static Polygon padOverlap3(const std::vector<PadWithHits> & pads); + static Polygon padOverlap3(const std::vector<std::shared_ptr<PadOfflineData>> & pads); public: SingleWedgePadTrigger(const std::string &pattern, - const std::vector<PadWithHits> &pads, + const std::vector<std::shared_ptr<PadOfflineData>> &pads, const std::vector<size_t> &padIndices); const std::string& pattern() const {return m_pattern;} const std::vector<size_t> padIndices() const {return m_padIndices;} @@ -66,7 +60,6 @@ namespace NSWL1 { //! use the first pad to determine whether it's a small/large sector bool isSmallSector() const; bool isLargeSector() const { return !isSmallSector(); } - float avgEtaFromFirstPad() const; //! determine whether we are in the transition region /*! The current implementation relies on the information from the first pad DG In the future, we might want to use some geometric @@ -76,25 +69,13 @@ namespace NSWL1 { bool is4outOf4Layers() const { return (m_pads.size()==4); } SingleWedgePadTrigger& setCombined() { m_alreadyCombined=true; return *this;} bool alreadyCombined() const { return m_alreadyCombined; } - std::string pickle() const; //!< simple dict-like representation - const std::vector<PadWithHits>& pads() const {return m_pads;} + const std::vector<std::shared_ptr<PadOfflineData>>& pads() const {return m_pads;} TVector3 direction() const; - - protected: - /// Log a message using the Athena controlled logging system - MsgStream& msg(MSG::Level lvl) const { return m_msg.get() << lvl; } - - /// Check whether the logging system is active at the provided verbosity level - bool msgLvl(MSG::Level lvl) { return m_msg.get().level() <= lvl; } - - /// Private message stream member - mutable Athena::MsgStreamMember m_msg; - private: std::string m_pattern; EtaPhiHalf m_halfPadIndices; std::vector<size_t> m_padIndices; - std::vector<PadWithHits> m_pads; + std::vector<std::shared_ptr<PadOfflineData>> m_pads; bool m_alreadyCombined; //!< flag to keep track of whether this has already been combined w/ another wedge }; // end class SingleWedgePadTrigger diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripClusterData.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripClusterData.h index e14fa140ef910a4f4f6cdb4ec368f9221f6324b7..b3cdea5b2a059643f73970cf6b485408efa13234 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripClusterData.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripClusterData.h @@ -1,10 +1,17 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef STRIPCLUSTERDATA_H #define STRIPCLUSTERDATA_H + +// local includes +#include <stdint.h> +#include <ostream> + + +class Identifier; // namespace for the NSW LVL1 related classes namespace NSWL1 { @@ -28,6 +35,8 @@ namespace NSWL1 { //! methods for retrieving the bare data virtual int bandId() const = 0; //!< get the band id + virtual int phiId() const = 0; //!< get the phi id + virtual int BCID() const=0; //! helper methods decoding the hit fragment position within the NSW detector virtual int isSmall() const = 0; //!< get the side (0==sideC, 1==sideA) virtual int moduleId() const = 0; //!< get the physics module (ranging from 0 at lowest R to 3 at highest R) diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripClusterOfflineData.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripClusterOfflineData.h index 42a4c897978ecbb6098a36efa881db2b9963f023..9af6b441c642bb6628fb5d2a1408c7ab030e5f65 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripClusterOfflineData.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripClusterOfflineData.h @@ -1,12 +1,17 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef STRIPCLUSTEROFFLINEDATA_H #define STRIPCLUSTEROFFLINEDATA_H +// Identifier includes +#include "Identifier/Identifier.h" +#include "MuonIdHelpers/sTgcIdHelper.h" +#include "MuonDigitContainer/sTgcDigit.h" // local includes #include "TrigT1NSWSimTools/StripClusterData.h" +#include <string.h> // namespace for the NSW LVL1 related classes @@ -30,6 +35,8 @@ namespace NSWL1 { private: int m_bandId; + int m_bcid; + int m_phiId; int m_isSmall; int m_moduleId; int m_sectorId; @@ -44,6 +51,8 @@ namespace NSWL1 { public: StripClusterOfflineData(int bandId, + int bcid, + int phiId, int isSmall, int moduleId, int sectorId, @@ -55,9 +64,10 @@ namespace NSWL1 { float globY, float globZ); ~StripClusterOfflineData(); - - //! methods for retrieving the bare data + int set_bandId(int bandId); + int set_BCID(int); + int set_phiId(int phiId); bool set_isSmall(bool set_isSmall); int set_moduleId(int moduleId); int set_sectorId(int sectorId); @@ -71,8 +81,10 @@ namespace NSWL1 { - //! methods for retrieving the bare data - int bandId() const {return m_bandId;}; //!< get the band id + //! methods for retrieving the bare data //S.I yes see my comment above + int bandId() const {return m_bandId;} //!< get the band id // wow so explanatory + int BCID() const {return m_bcid;} + int phiId() const {return m_phiId;} //! helper methods decoding the hit fragment position within the NSW detector int isSmall() const {return m_isSmall;}; int moduleId() const {return m_moduleId;}; diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripClusterTool.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripClusterTool.h index 7aa5a93ba63254c1d26ff3cb125780dda6348ff7..62aaa80e23adf76696c7b1daa30a66a19685c00a 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripClusterTool.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripClusterTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef STRIPCLUSTERTOOL_H @@ -22,10 +22,15 @@ //forward declarations class IIncidentSvc; +class IAtRndmGenSvc; class sTgcIdHelper; class sTgcDigit; class TTree; +namespace CLHEP { + class HepRandomEngine; +} + namespace MuonGM { class MuonDetectorManager; } @@ -67,11 +72,12 @@ namespace NSWL1 { void reset_ntuple_variables(); //!< reset the variables used in the analysis ntuple void clear_ntuple_variables(); //!< clear the variables used in the analysis ntuple void fill_strip_validation_id(std::vector<std::unique_ptr<StripClusterData>>& clusters); //!< fill the ntuple branch for the StripTdsOffline - bool MatchModule(const std::unique_ptr<StripData>& one, const StripData* two); // needed Servives, Tools and Helpers ServiceHandle< IIncidentSvc > m_incidentSvc; //!< Athena/Gaudi incident Service + ServiceHandle< IAtRndmGenSvc > m_rndmSvc; //!< Athena random number service + CLHEP::HepRandomEngine* m_rndmEngine; //!< Random number engine const MuonGM::MuonDetectorManager* m_detManager; //!< MuonDetectorManager const sTgcIdHelper* m_sTgcIdHelper; //!< sTgc offline Id helper @@ -112,11 +118,13 @@ namespace NSWL1 { std::vector<int> *m_cl_module; std::vector<int> *m_cl_layer; std::vector<int> *m_cl_bandId; - + std::vector<int> *m_cl_phiId; //Cache that holds which strips to read based on bandid // 2d-vector for eta/phi station coordinates // map from BandID to a set of strips + std::vector< std::vector < std::map<uint16_t, std::set<int> > > > *bandID_cache ; + //std::vector< std::vector<std::unique_ptr<StripData> >* > m_clusters; std::vector< std::shared_ptr<std::vector<std::unique_ptr<StripData> >> > m_clusters; }; // end of StripClusterTool class diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripData.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripData.h index ddd4f588f69815c23c1e856acb8c48c494fdadd1..28d156663a6b7f67db6759a887e2f2a5921c7fe2 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripData.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripData.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef STRIPDATA_H @@ -7,6 +7,7 @@ // local includes +#include <stdint.h> #include <ostream> @@ -41,6 +42,7 @@ namespace NSWL1 { virtual int strip_charge_10bit() const = 0; //!< get the strip charge in 10 bit virtual int bandId() const = 0; //!< get the band id virtual void setBandId(int band_id)= 0; //!< get the band id + virtual void setPhiId(int band_id)= 0; //!< get the band id virtual int phiId() const = 0; //!< get the phi id virtual bool readStrip() const = 0; virtual void set_readStrip(bool readStrip) = 0; diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripOfflineData.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripOfflineData.h index 0edc96e829e1960b2455e0a0e93b402822b0e33b..8602e6ccb1833e97a47b521bbfcbb22ce6be7553 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripOfflineData.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripOfflineData.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef STRIPOFFLINEDATA_H @@ -11,7 +11,7 @@ #include "MuonDigitContainer/sTgcDigit.h" // local includes #include "TrigT1NSWSimTools/StripData.h" -#include <string> +#include <string.h> // namespace for the NSW LVL1 related classes @@ -37,6 +37,7 @@ namespace NSWL1 { const Identifier m_id; //!< offline identifier of the strip hit const sTgcIdHelper* m_helper; //!< helper for the identifier decoding int m_trig_bcid; //!< trig BCID + int m_padTrigIndex; float m_strip_charge; //!< strip charge float m_strip_time; //!< strip time int m_strip_charge_10bit; //!< strip 10 bit charge @@ -46,12 +47,14 @@ namespace NSWL1 { float m_x,m_y,m_z=0; float m_lx,m_ly,m_lz=0; bool m_read_strip; + public: StripOfflineData(Identifier id, const sTgcIdHelper* helper, const sTgcDigit* digit); ~StripOfflineData(); void setTrigBCID(int bcid); //!< set the trig BCID + void setTrigIndex(int ); void setStripCharge(float charge); //!< set the strip charge void setStripCharge_6bit(int charge); //!< set the 6bit strip charge void setStripCharge_10bit(int charge); //!< set the 10 bit strip charge @@ -64,6 +67,7 @@ namespace NSWL1 { float time() const; Identifier Identity() const; //!< return indentifier int BCID() const; //!< get the BCID + int trigIndex() const; float charge() const; //!< get the charge int trig_BCID() const; //!< get the BCID float strip_charge() const; //!< get the charge diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripSegmentTool.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripSegmentTool.h index 1fa2193a894e0bde5ef05c8e475ea36c14d2bccb..736fdb182320c3ae61498e5471ac852e7004ca70 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripSegmentTool.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripSegmentTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef STRIPSEGMENTTOOL_H @@ -12,12 +12,18 @@ #include "GaudiKernel/Property.h" +//Muon RDOs for trigger EDM +#include "MuonRDO/NSW_TrigRawDataContainer.h" + + +//To access detector envelope +#include "RegSelLUT/IRegionIDLUT_Creator.h" + //local includes #include "TrigT1NSWSimTools/IStripSegmentTool.h" #include "TrigT1NSWSimTools/PadTrigger.h" #include "TrigT1NSWSimTools/TriggerTypes.h" - //forward declarations class IIncidentSvc; class TTree; @@ -52,39 +58,65 @@ namespace NSWL1 { virtual void handle (const Incident& inc); StatusCode find_segments(std::vector< std::unique_ptr<StripClusterData> >& clusters); + private: - // methods implementing the internal data processing - - StatusCode book_branches(); //!< book the branches to analyze the StripTds behavior - void reset_ntuple_variables(); //!< reset the variables used in the analysis ntuple - void clear_ntuple_variables(); //!< clear the variables used in the analysis ntuple - // void fill_strip_validation_id(std::vector< std::vector<StripData*>* >& clusters); //!< fill the ntuple branch for the StripTdsOffline + // methods implementing the internal data processing + + StatusCode book_branches(); //!< book the branches to analyze the StripTds behavior + void reset_ntuple_variables(); //!< reset the variables used in the analysis ntuple + void clear_ntuple_variables(); //!< clear the variables used in the analysis ntuple + + // needed Services, Tools and Helpers + ServiceHandle< IIncidentSvc > m_incidentSvc; //!< Athena/Gaudi incident Service + + // analysis ntuple + TTree* m_tree; //!< ntuple for analysis + BooleanProperty m_doNtuple; //!< property, see @link StripTdsOfflineTool::StripTdsOfflineTool @endlink + StringProperty m_sTgcSdoContainer; //!< property, see @link PadTdsOfflineTool::PadTdsOfflineTool @endlink + // analysis variable to be put into the ntuple + int m_seg_n; //!< number of Segments found + std::vector<int> *m_seg_wedge1_size; //!< theta + std::vector<int> *m_seg_wedge2_size; //!< theta + std::vector<float> *m_seg_theta; //!< theta + std::vector<float> *m_seg_dtheta; //!< delta theta + std::vector<uint8_t> *m_seg_dtheta_int; + std::vector<float> *m_seg_eta; //!< m_seg_eta + std::vector<float> *m_seg_eta_inf; + std::vector<float> *m_seg_phi; + std::vector<int> *m_seg_bandId; + std::vector<int> *m_seg_secId; + std::vector<int> *m_seg_bcId; + std::vector<int> *m_seg_phiId; + std::vector<int> *m_seg_rIdx; + std::vector<float> *m_seg_global_r; + std::vector<float> *m_seg_global_x; + std::vector<float> *m_seg_global_y; + std::vector<float> *m_seg_global_z; + std::vector<float> *m_seg_dir_r; + std::vector<float> *m_seg_dir_y; + std::vector<float> *m_seg_dir_z; + + int m_rIndexBits; + int m_dThetaBits; + StatusCode FetchDetectorEnvelope(); + std::pair<float,float> m_zbounds; + std::pair<float,float> m_etabounds; + std::pair<float,float> m_rbounds; + uint8_t findRIdx(const float&); + uint8_t findDtheta(const float&); + int m_ridxScheme; + float m_dtheta_min; + float m_dtheta_max; + + protected: + SG::WriteHandleKey<Muon::NSW_TrigRawDataContainer> m_trigRdoContainer; + ToolHandle<IRegionIDLUT_Creator> m_lutCreatorToolsTGC; + + + - - // needed Servives, Tools and Helpers - ServiceHandle< IIncidentSvc > m_incidentSvc; //!< Athena/Gaudi incident Service - - // analysis ntuple - TTree* m_tree; //!< ntuple for analysis - BooleanProperty m_doNtuple; //!< property, see @link StripTdsOfflineTool::StripTdsOfflineTool @endlink - // analysis variable to be put into the ntuple - int m_seg_n; //!< number of Segments found - std::vector<int> *m_seg_wedge1_size; //!< theta - std::vector<int> *m_seg_wedge2_size; //!< theta - std::vector<float> *m_seg_theta; //!< theta - std::vector<float> *m_seg_dtheta; //!< delta theta - std::vector<float> *m_seg_eta; //!< m_seg_eta - std::vector<float> *m_seg_phi; - std::vector<int> *m_seg_bandId; - std::vector<float> *m_seg_global_r; - std::vector<float> *m_seg_global_x; - std::vector<float> *m_seg_global_y; - std::vector<float> *m_seg_global_z; - std::vector<float> *m_seg_dir_r; - std::vector<float> *m_seg_dir_y; - std::vector<float> *m_seg_dir_z; + }; // end of StripSegmentTool class - }; // end of StripSegmentTool class } // namespace NSWL1 #endif diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripTdsOfflineTool.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripTdsOfflineTool.h index 49bc39e134de2bda7d4e78a097673ac56c2addef..66e4d05f5ccfbc7e7e73e34ad05ba8c4b50ac239 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripTdsOfflineTool.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/StripTdsOfflineTool.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration */ #ifndef STRIPTDSOFFLINETOOL_H @@ -20,10 +20,15 @@ //forward declarations class IIncidentSvc; +class IAtRndmGenSvc; class sTgcIdHelper; class sTgcDigit; class TTree; +namespace CLHEP { + class HepRandomEngine; +} + namespace MuonGM { class MuonDetectorManager; } @@ -84,10 +89,12 @@ namespace NSWL1 { void reset_ntuple_variables(); //!< reset the variables used in the analysis ntuple void clear_ntuple_variables(); //!< clear the variables used in the analysis ntuple void fill_strip_validation_id(); //!< fill the ntuple branch for the StripTdsOffline - bool readStrip(unsigned int bandID, StripData* strip,const std::vector<std::vector<float>>& pad_strip_info); + bool readStrip( StripData* ,const std::vector<std::unique_ptr<PadTrigger>>&); // needed Servives, Tools and Helpers ServiceHandle< IIncidentSvc > m_incidentSvc; //!< Athena/Gaudi incident Service + ServiceHandle< IAtRndmGenSvc > m_rndmSvc; //!< Athena random number service + CLHEP::HepRandomEngine* m_rndmEngine; //!< Random number engine const MuonGM::MuonDetectorManager* m_detManager; //!< MuonDetectorManager const sTgcIdHelper* m_sTgcIdHelper; //!< sTgc offline Id helper @@ -99,6 +106,7 @@ namespace NSWL1 { BooleanProperty m_doNtuple; //!< property, see @link StripTdsOfflineTool::StripTdsOfflineTool @endlink // properties: container and service names + StringProperty m_rndmEngineName; //!< property, see @link PadTdsOfflineTool::PadTdsOfflineTool @endlink StringProperty m_sTgcDigitContainer; //!< property, see @link PadTdsOfflineTool::PadTdsOfflineTool @endlink StringProperty m_sTgcSdoContainer; //!< property, see @link PadTdsOfflineTool::PadTdsOfflineTool @endlink @@ -108,6 +116,7 @@ namespace NSWL1 { // analysis variable to be put into the ntuple int m_nStripHits; //!< number of STRIP hit delivered + int m_padTrigIndex; std::vector<float > *m_stripCharge=0; //!< charge of hit STRIPs std::vector<float > *m_stripCharge_6bit=0; //!< charge of hit STRIPs 6 bit format std::vector<float > *m_stripCharge_10bit=0; //!< charge of hit STRIPs 10 bit format diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/TriggerTypes.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/TriggerTypes.h index 5a358f50d652dcde62ca66c0b6d1b016e27a71cf..75d1eaa3cf61e441109e3a9c5bba163b24391fe9 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/TriggerTypes.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/TriggerTypes.h @@ -1,13 +1,14 @@ // -*- c++ -*- /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef NSWL1_TRIGGERTYPES_H #define NSWL1_TRIGGERTYPES_H #include <memory> - +#include <stdint.h> +#include<vector> //S.I 20.08.18 //Merged tdr_typedefs.h and This file(TriggerTypes.h) inside the common namespace NSWL1 //to avoid namespace inflation. @@ -17,10 +18,8 @@ namespace NSWL1 { * Define a few types to be used in the NSWL1 trigger simulation */ - class Pad; class PadData; class PadOfflineData; - class PadWithHits; class PadTrigger; class SingleWedgePadTrigger; class SectorTriggerCandidate; diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/sTGCenumeration.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/sTGCenumeration.h index 44ea6cc073ef49e7abf81348d4df3706fa419f31..7b7ef111abf9708984c6a29bb7b0a1ae6c987976 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/sTGCenumeration.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/sTGCenumeration.h @@ -1,95 +1,95 @@ -/* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration -*/ - -#ifndef sTGCenumeration_h -#define sTGCenumeration_h - -static const float VERY_LARGE = 999999. - , UNDEF = -VERY_LARGE - , DEFAULT_VALUE = UNDEF - ; - -enum selectorType { NONE = -1 - , ALL = -2 - , DEFAULT = -3 - , TOO_SMALL = -4 - , TOO_LARGE = -5 - , UNDEFINED = -999999 - } ; - -enum STGCModuleType { STGC_MODULE_1 = 1 - , STGC_MODULE_2 - , STGC_MODULE_3 - , STGC_MODULES = 3 - } ; - -enum STGCDetectorType { STGC_DETECTOR_0 - , STGC_DETECTOR_1 - , STGC_DETECTOR_2 - , STGC_DETECTOR_3 - , STGC_DETECTORS - } ; - -enum PivotConfirmType { PIVOT - , CONFIRM - , STGC_WEDGES - } ; - -enum SectorType { SMALL - , LARGE - , SECTORS_IN_OCTANT - , TOY = SECTORS_IN_OCTANT // 2 - , SECTOR_TYPES - } ; - -enum STGCType { SMALL_PIVOT - , SMALL_CONFIRM - , LARGE_PIVOT - , LARGE_CONFIRM - , TOY_PIVOT - , TOY_CONFIRM - , STGC_TYPES - } ; - -enum LayerType { NO_LAYER = -1 - , STGC_LAYER_1 = 1 - , STGC_LAYER_2 - , STGC_LAYER_3 - , STGC_LAYER_4 - , STGC_LAYERS = 5 - } ; - -enum MMType { REGULAR - , CORNERED - , EXTRUDED - , MM_TYPES - } ; - -enum MMModule { MM_MODULE_1 = 1 - , MM_MODULE_2 - , MM_MODULE_3 - , MM_MODULE_4 - , MM_MODULES = 4 - } ; - -enum MDTModule { MDT_MODULE_1 = 1 - , MDT_MODULE_2 - , MDT_MODULE_3 - , MDT_MODULE_4 - , MDT_MODULES = 4 - } ; - -// description of the trigger patterns - -enum triggerPattern { TRPAT_NBITS_LAYER = 8 - , TRPAT_PHI_BITS = 0 - , TRPAT_R_BITS = 4 - , TRPAT_MASK = 0x7 - , TRPAT_DRMIN = 0 - , TRPAT_DRMAX = 1 - , TRPAT_DPHIMIN = 0 - , TRPAT_DPHIMAX = 1 - } ; - -#endif +/* + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +*/ + +#ifndef sTGCenumeration_h +#define sTGCenumeration_h + +static const float VERY_LARGE = 999999. + , UNDEF = -VERY_LARGE + , DEFAULT_VALUE = UNDEF + ; + +enum selectorType { NONE = -1 + , ALL = -2 + , DEFAULT = -3 + , TOO_SMALL = -4 + , TOO_LARGE = -5 + , UNDEFINED = -999999 + } ; + +enum STGCModuleType { STGC_MODULE_1 = 1 + , STGC_MODULE_2 + , STGC_MODULE_3 + , STGC_MODULES = 3 + } ; + +enum STGCDetectorType { STGC_DETECTOR_0 + , STGC_DETECTOR_1 + , STGC_DETECTOR_2 + , STGC_DETECTOR_3 + , STGC_DETECTORS + } ; + +enum PivotConfirmType { PIVOT + , CONFIRM + , STGC_WEDGES + } ; + +enum SectorType { SMALL + , LARGE + , SECTORS_IN_OCTANT + , TOY = SECTORS_IN_OCTANT // 2 + , SECTOR_TYPES + } ; + +enum STGCType { SMALL_PIVOT + , SMALL_CONFIRM + , LARGE_PIVOT + , LARGE_CONFIRM + , TOY_PIVOT + , TOY_CONFIRM + , STGC_TYPES + } ; + +enum LayerType { NO_LAYER = -1 + , STGC_LAYER_1 = 1 + , STGC_LAYER_2 + , STGC_LAYER_3 + , STGC_LAYER_4 + , STGC_LAYERS = 5 + } ; + +enum MMType { REGULAR + , CORNERED + , EXTRUDED + , MM_TYPES + } ; + +enum MMModule { MM_MODULE_1 = 1 + , MM_MODULE_2 + , MM_MODULE_3 + , MM_MODULE_4 + , MM_MODULES = 4 + } ; + +enum MDTModule { MDT_MODULE_1 = 1 + , MDT_MODULE_2 + , MDT_MODULE_3 + , MDT_MODULE_4 + , MDT_MODULES = 4 + } ; + +// description of the trigger patterns + +enum triggerPattern { TRPAT_NBITS_LAYER = 8 + , TRPAT_PHI_BITS = 0 + , TRPAT_R_BITS = 4 + , TRPAT_MASK = 0x7 + , TRPAT_DRMIN = 0 + , TRPAT_DRMAX = 1 + , TRPAT_DPHIMIN = 0 + , TRPAT_DPHIMAX = 1 + } ; + +#endif diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/sTGCgeometry.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/sTGCgeometry.h index 8fd4acab46cb57f61c8a012b0760c2e824ed91da..b2c6e396d73e886b6044d6b9338f8863f033db52 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/sTGCgeometry.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/sTGCgeometry.h @@ -1,944 +1,947 @@ -/* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration -*/ - -#ifndef STGCgeometry_h -#define STGCgeometry_h - -// NSW STGC - -static const float H1[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ -{ // SMALL_PIVOT - { 1019.4, 1019.4, 1019.4, 1019.4} //D0 -, { 1681.4, 1651.4, 1621.4, 1591.4} //D1 -, { 2541.4, 2541.4, 2541.4, 2541.4} //D2 -, { 3510.9, 3510.9, 3510.9, 3510.9} //D3 -} -, -{ // SMALL_CONFIRM - { 1019.4, 1019.4, 1019.4, 1019.4} //D0 -, { 1681.4, 1651.4, 1621.4, 1591.4} //D1 -, { 2541.4, 2541.4, 2541.4, 2541.4} //D2 -, { 3510.9, 3510.9, 3510.9, 3510.9} //D3 -} -, -{ // LARGE_PIVOT - { 982.0, 982.0, 982.0, 982.0} //D0 -, { 1678.0, 1648.0, 1618.0, 1588.0} //D1 -, { 2538.0, 2538.0, 2538.0, 2538.0} //D2 -, { 3598.0, 3598.0, 3598.0, 3598.0} //D3 -} -, -{ // LARGE_CONFIRM - { 982.0, 982.0, 982.0, 982.0} //D0 -, { 1678.0, 1648.0, 1618.0, 1588.0} //D1 -, { 2538.0, 2538.0, 2538.0, 2538.0} //D2 -, { 3598.0, 3598.0, 3598.0, 3598.0} //D3 -} -, -{ //TOY_PIVOT - { -413.5, -413.5, -413.5, -413.5} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -, -{ // TOY_CONFIRM - { -413.5, -413.5, -413.5, -413.5} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} - -}; - -static const float H2[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ -{ // SMALL_PIVOT - { 1681.4, 1651.4, 1621.4, 1591.4} //D0 -, { 2531.4, 2531.4, 2531.4, 2531.4} //D1 -, { 3500.9, 3500.9, 3500.9, 3500.9} //D2 -, { 4470.4, 4470.4, 4470.4, 4470.4} //D3 -} -, -{ // SMALL_CONFIRM - { 1681.4, 1651.4, 1621.4, 1591.4} //D0 -, { 2531.4, 2531.4, 2531.4, 2531.4} //D1 -, { 3500.9, 3500.9, 3500.9, 3500.9} //D2 -, { 4470.4, 4470.4, 4470.4, 4470.4} //D3 -} -, -{ // LARGE_PIVOT - { 1678.0, 1648.0, 1618.0, 1588.0} //D0 -, { 2528.0, 2528.0, 2528.0, 2528.0} //D1 -, { 3588.0, 3588.0, 3588.0, 3588.0} //D2 -, { 4398.0, 4398.0, 4398.0, 4398.0} //D3 -} -, -{ // LARGE_CONFIRM - { 1678.0, 1648.0, 1618.0, 1588.0} //D0 -, { 2528.0, 2528.0, 2528.0, 2528.0} //D1 -, { 3588.0, 3588.0, 3588.0, 3588.0} //D2 -, { 4398.0, 4398.0, 4398.0, 4398.0} //D3 -} -, -{ //TOY_PIVOT - { 413.5, 413.5, 413.5, 413.5} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -, -{ // TOY_CONFIRM - { 413.5, 413.5, 413.5, 413.5} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -}; - - -static const float H3[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ -{ // SMALL_PIVOT - { UNDEF , UNDEF , UNDEF , UNDEF } //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D1 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D2 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D3 -} -, -{ // SMALL_CONFIRM - { UNDEF , UNDEF , UNDEF , UNDEF } //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D1 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D2 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D3 -} -, -{ // LARGE_PIVOT - { UNDEF , UNDEF , UNDEF , UNDEF } //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D1 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D2 -, { 4648.0, 4648.0, 4648.0, 4648.0} //D3 -} -, -{ // LARGE_CONFIRM - { UNDEF , UNDEF , UNDEF , UNDEF } //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D1 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D2 -, { 4648.0, 4648.0, 4648.0, 4648.0} //D3 -} -, -{ //TOY_PIVOT - { UNDEF , UNDEF , UNDEF , UNDEF } //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -, -{ // TOY_CONFIRM - { UNDEF , UNDEF , UNDEF , UNDEF } //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -}; - -static const float A[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ -{ // SMALL_PIVOT - { 384.0, 384.0, 384.0, 384.0} //D0 -, { 677.5, 664.2, 650.9, 637.6} //D1 -, { 1056.5, 1056.5, 1056.5, 1056.5} //D2 -, { 1260.3, 1260.3, 1260.3, 1260.3} //D3 -} -, -{ // SMALL_CONFIRM - { 420.0, 420.0, 420.0, 420.0} //D0 -, { 713.5, 700.2, 686.9, 673.6} //D1 -, { 1092.5, 1092.5, 1092.5, 1092.5} //D2 -, { 1296.3, 1296.3, 1296.3, 1296.3} //D3 -} -, -{ // LARGE_PIVOT - { 598.0, 598.0, 598.0, 598.0} //D0 -, { 843.4, 832.8, 822.2, 811.7} //D1 -, { 1149.1, 1149.1, 1149.1, 1149.1} //D2 -, { 1777.1, 1777.1, 1777.1, 1777.1} //D3 -} -, -{ // LARGE_CONFIRM - { 634.0, 634.0, 634.0, 634.0} //D0 -, { 879.4, 868.8, 858.2, 847.7} //D1 -, { 1185.1, 1185.1, 1185.1, 1185.1} //D2 -, { 1813.1, 1813.1, 1813.1, 1813.1} //D3 -} -, -{ //TOY_PIVOT - { 834.0, 834.0, 834.0, 834.0} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -, -{ // TOY_CONFIRM - { 834.0, 834.0, 834.0, 834.0} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -}; - - -static const float B[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ -{ // SMALL_PIVOT - { 677.5, 664.2, 650.9, 637.6} //D0 -, { 1054.4, 1054.4, 1054.4, 1054.4} //D1 -, { 1258.2, 1258.2, 1258.2, 1258.2} //D2 -, { 1462.0, 1462.0, 1462.0, 1462.0} //D3 -} -, -{ // SMALL_CONFIRM - { 713.5, 700.2, 686.9, 673.6} //D0 -, { 1090.4, 1090.4, 1090.4, 1090.4} //D1 -, { 1294.2, 1294.2, 1294.2, 1294.2} //D2 -, { 1498.0, 1498.0, 1498.0, 1498.0} //D3 -} -, -{ // LARGE_PIVOT - { 843.4, 832.8, 822.2, 811.7} //D0 -, { 1143.2, 1143.2, 1143.2, 1143.2} //D1 -, { 1771.1, 1771.1, 1771.1, 1771.1} //D2 -, { 2251.0, 2251.0, 2251.0, 2251.0} //D3 -} -, -{ // LARGE_CONFIRM - { 879.4, 868.8, 858.2, 847.7} //D0 -, { 1179.2, 1179.2, 1179.2, 1179.2} //D1 -, { 1807.1, 1807.1, 1807.1, 1807.1} //D2 -, { 2287.0, 2287.0, 2287.0, 2287.0} //D3 -} -, -{ //TOY_PIVOT - { 834.0, 834.0, 834.0, 834.0} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -, -{ // TOY_CONFIRM - { 834.0, 834.0, 834.0, 834.0} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -}; - -static const float H1_ACTIVE[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ -{ // SMALL_PIVOT - { 1032.9, 1032.9, 1032.9, 1032.9} //D0 -, { 1694.9, 1664.9, 1634.9, 1604.9} //D1 -, { 2554.9, 2554.9, 2554.9, 2554.9} //D2 -, { 3524.4, 3524.4, 3524.4, 3524.4} //D3 -} -, -{ // SMALL_CONFIRM - { 1032.9, 1032.9, 1032.9, 1032.9} //D0 -, { 1694.9, 1664.9, 1634.9, 1604.9} //D1 -, { 2554.9, 2554.9, 2554.9, 2554.9} //D2 -, { 3524.4, 3524.4, 3524.4, 3524.4} //D3 -} -, -{ // LARGE_PIVOT - { 995.5, 995.5, 995.5, 995.5} //D0 -, { 1691.5, 1661.5, 1631.5, 1601.5} //D1 -, { 2551.5, 2551.5, 2551.5, 2551.5} //D2 -, { 3611.5, 3611.5, 3611.5, 3611.5} //D3 -} -, -{ // LARGE_CONFIRM - { 995.5, 995.5, 995.5, 995.5} //D0 -, { 1691.5, 1661.5, 1631.5, 1601.5} //D1 -, { 2551.5, 2551.5, 2551.5, 2551.5} //D2 -, { 3611.5, 3611.5, 3611.5, 3611.5} //D3 -} -, -{ //TOY_PIVOT - { -400.0, -400.0, -400.0, -400.0} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -, -{ // TOY_CONFIRM - { -400.0, -400.0, -400.0, -400.0} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -}; - -static const float H2_ACTIVE[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ -{ // SMALL_PIVOT - { 1667.9, 1637.9, 1607.9, 1577.9} //D0 -, { 2517.9, 2517.9, 2517.9, 2517.9} //D1 -, { 3470.9, 3470.9, 3470.9, 3470.9} //D2 -, { 4440.4, 4440.4, 4440.4, 4440.4} //D3 -} -, -{ // SMALL_CONFIRM - { 1667.9, 1637.9, 1607.9, 1577.9} //D0 -, { 2517.9, 2517.9, 2517.9, 2517.9} //D1 -, { 3470.9, 3470.9, 3470.9, 3470.9} //D2 -, { 4440.4, 4440.4, 4440.4, 4440.4} //D3 -} -, -{ // LARGE_PIVOT - { 1664.5, 1634.5, 1604.5, 1574.5} //D0 -, { 2514.5, 2514.5, 2514.5, 2514.5} //D1 -, { 3558.0, 3558.0, 3558.0, 3558.0} //D2 -, { 4368.0, 4368.0, 4368.0, 4368.0} //D3 -} -, -{ // LARGE_CONFIRM - { 1664.5, 1634.5, 1604.5, 1574.5} //D0 -, { 2514.5, 2514.5, 2514.5, 2514.5} //D1 -, { 3558.0, 3558.0, 3558.0, 3558.0} //D2 -, { 4368.0, 4368.0, 4368.0, 4368.0} //D3 -} -, -{ //TOY_PIVOT - { 400.0, 400.0, 400.0, 400.0} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -, -{ // TOY_CONFIRM - { 400.0, 400.0, 400.0, 400.0} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -}; - -static const float H3_ACTIVE[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ -{ // SMALL_PIVOT - { UNDEF , UNDEF , UNDEF , UNDEF } //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D1 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D2 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D3 -} -, -{ // SMALL_CONFIRM - { UNDEF , UNDEF , UNDEF , UNDEF } //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D1 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D2 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D3 -} -, -{ // LARGE_PIVOT - { UNDEF , UNDEF , UNDEF , UNDEF } //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D1 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D2 -, { 4618.0, 4618.0, 4618.0, 4618.0} //D3 -} -, -{ // LARGE_CONFIRM - { UNDEF , UNDEF , UNDEF , UNDEF } //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D1 -, { UNDEF , UNDEF , UNDEF , UNDEF } //D2 -, { 4618.0, 4618.0, 4618.0, 4618.0} //D3 -} -, -{ //TOY_PIVOT - { UNDEF , UNDEF , UNDEF , UNDEF } //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -, -{ // TOY_CONFIRM - { UNDEF , UNDEF , UNDEF , UNDEF } //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -}; - -static const float A_ACTIVE[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ -{ // SMALL_PIVOT - { 356.8, 356.8, 356.8, 356.8} //D0 -, { 650.3, 637.0, 623.7, 610.4} //D1 -, { 1025.5, 1025.5, 1025.5, 1025.5} //D2 -, { 1229.3, 1229.3, 1229.3, 1229.3} //D3 -} -, -{ // SMALL_CONFIRM - { 392.8, 392.8, 392.8, 392.8} //D0 -, { 686.3, 673.0, 659.7, 646.4} //D1 -, { 1061.5, 1061.5, 1061.5, 1061.5} //D2 -, { 1265.3, 1265.3, 1265.3, 1265.3} //D3 -} -, -{ // LARGE_PIVOT - { 569.2, 569.2, 569.2, 569.2} //D0 -, { 814.7, 804.1, 793.5, 782.9} //D1 -, { 1124.5, 1124.5, 1124.5, 1124.5} //D2 -, { 1752.5, 1752.5, 1752.5, 1752.5} //D3 -} -, -{ // LARGE_CONFIRM - { 605.2, 605.2, 605.2, 605.2} //D0 -, { 850.7, 840.1, 829.5, 818.9} //D1 -, { 1160.5, 1160.5, 1160.5, 1160.5} //D2 -, { 1788.5, 1788.5, 1788.5, 1788.5} //D3 -} -, -{ //TOY_PIVOT - { 800.0, 800.0, 800.0, 800.0} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -, -{ // TOY_CONFIRM - { 800.0, 800.0, 800.0, 800.0} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -}; - - -static const float B_ACTIVE[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ -{ // SMALL_PIVOT - { 638.3, 625.0, 611.7, 598.4} //D0 -, { 1015.2, 1015.2, 1015.2, 1015.2} //D1 -, { 1218.1, 1218.1, 1218.1, 1218.1} //D2 -, { 1421.9, 1421.9, 1421.9, 1421.9} //D3 -} -, -{ // SMALL_CONFIRM -{ 674.3, 661.0, 647.7, 634.4} //D0 -, { 1051.2, 1051.2, 1051.2, 1051.2} //D1 -, { 1254.1, 1254.1, 1254.1, 1254.1} //D2 -, { 1457.9, 1457.9, 1457.9, 1457.9} //D3 -} -, -{ // LARGE_PIVOT - { 805.2, 794.6, 784.0, 773.4} //D0 -, { 1104.9, 1104.9, 1104.9, 1104.9} //D1 -, { 1720.8, 1720.8, 1720.8, 1720.8} //D2 -, { 2200.6, 2200.6, 2200.6, 2200.6} //D3 -} -, -{ // LARGE_CONFIRM -{ 841.2, 830.6, 820.0, 809.4} //D0 -, { 1140.9, 1140.9, 1140.9, 1140.9} //D1 -, { 1756.8, 1756.8, 1756.8, 1756.8} //D2 -, { 2236.6, 2236.6, 2236.6, 2236.6} //D3 -} -, -{ //TOY_PIVOT - { 800.0, 800.0, 800.0, 800.0} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -, -{ // TOY_CONFIRM - { 800.0, 800.0, 800.0, 800.0} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -}; - - - -static const float A_ADAPTERS[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ -{ // SMALL_PIVOT - { 428.0, 428.0, 428.0, 428.0} //D0 -, { 787.5, 774.2, 760.9, 747.6} //D1 -, { 1136.5, 1136.5, 1136.5, 1136.5} //D2 -, { 1340.3, 1340.3, 1340.3, 1340.3} //D3 -} -, -{ // SMALL_CONFIRM - { 464.0, 464.0, 464.0, 464.0} //D0 -, { 823.5, 810.2, 796.9, 783.6} //D1 -, { 1172.5, 1172.5, 1172.5, 1172.5} //D2 -, { 1376.3, 1376.3, 1376.3, 1376.3} //D3 -} -, -{ // LARGE_PIVOT - { 642.0, 642.0, 642.0, 642.0} //D0 -, { 953.4, 942.8, 932.2, 921.7} //D1 -, { 1229.1, 1229.1, 1229.1, 1229.1} //D2 -, { 1857.1, 1857.1, 1857.1, 1857.1} //D3 -} -, -{ // LARGE_CONFIRM - { 678.0, 678.0, 678.0, 678.0} //D0 -, { 989.4, 978.8, 968.2, 957.7} //D1 -, { 1265.1, 1265.1, 1265.1, 1265.1} //D2 -, { 1893.1, 1893.1, 1893.1, 1893.1} //D3 -} -, -{ //TOY_PIVOT - { 878.0, 878.0, 878.0, 878.0} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -, -{ // TOY_CONFIRM - { 878.0, 878.0, 878.0, 878.0} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -}; - - -static const float B_ADAPTERS[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ -{ // SMALL_PIVOT - { 721.5, 708.2, 694.9, 681.6} //D0 -, { 1098.4, 1098.4, 1098.4, 1098.4} //D1 -, { 1338.2, 1338.2, 1338.2, 1338.2} //D2 -, { 1542.0, 1542.0, 1542.0, 1542.0} //D3 -} -, -{ // SMALL_CONFIRM -{ 757.5, 744.2, 730.9, 717.6} //D0 -, { 1134.4, 1134.4, 1134.4, 1134.4} //D1 -, { 1374.2, 1374.2, 1374.2, 1374.2} //D2 -, { 1578.0, 1578.0, 1578.0, 1578.0} //D3 -} -, -{ // LARGE_PIVOT - { 887.4, 876.8, 866.2, 855.7} //D0 -, { 1187.2, 1187.2, 1187.2, 1187.2} //D1 -, { 1851.1, 1851.1, 1851.1, 1851.1} //D2 -, { 2331.0, 2331.0, 2331.0, 2331.0} //D3 -} -, -{ // LARGE_CONFIRM -{ 923.4, 912.8, 902.2, 891.7} //D0 -, { 1223.2, 1223.2, 1223.2, 1223.2} //D1 -, { 1887.1, 1887.1, 1887.1, 1887.1} //D2 -, { 2367.0, 2367.0, 2367.0, 2367.0} //D3 -} -, -{ //TOY_PIVOT - { 878.0, 878.0, 878.0, 878.0} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -, -{ // TOY_CONFIRM - { 878.0, 878.0, 878.0, 878.0} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -}; - - -static const float PAD_PHI_SUBDIVISION = 1.5; // Module 1 wrt Modules 2 and 3 -static const float PAD_PHI_DIVISION = 0.130900; // Modules 2 and 3 in radians - - -static const float H_PAD_ROW_0[STGC_TYPES][STGC_LAYERS]={ - { 922.5, 883.9, 920.3, 881.5} // SMALL_PIVOT - ,{ 867.0, 829.9, 865.0, 827.7} // SMALL_CONFIRM - ,{ 939.3, 899.9, 937.0, 897.5} // LARGE_PIVOT - ,{ 954.4, 913.4, 951.8, 910.7} // LARGE_CONFIRM - ,{ -397.5, -437.5, -402.5, -442.5} //TOY_PIVOT - ,{ -417.5, -457.5, -422.5, -462.5} // TOY_CONFIRM - }; - - -static const float PAD_HEIGHT[STGC_TYPES][STGC_LAYERS]={ - { 80.000, 80.123, 80.246, 80.368} // SMALL_PIVOT - ,{ 76.855, 76.978, 77.101, 77.224} // SMALL_CONFIRM - ,{ 81.453, 81.576, 81.699, 81.821} // LARGE_PIVOT - ,{ 84.598, 84.721, 84.843, 84.966} // LARGE_CONFIRM - ,{ 80.000, 80.000, 80.000, 80.000} //TOY_PIVOT - ,{ 80.000, 80.000, 80.000, 80.000} // TOY_CONFIRM - }; - -static const float Z_DANIEL[STGC_TYPES][STGC_LAYERS]={ - { 7377.5, 7388.8, 7400.2, 7411.5} // SMALL_PIVOT - ,{ 7087.5, 7098.8, 7110.2, 7121.5} // SMALL_CONFIRM - ,{ 7511.5, 7522.8, 7534.2, 7545.5} // LARGE_PIVOT - ,{ 7801.5, 7812.8, 7824.2, 7835.5} // LARGE_CONFIRM - ,{ -1, -1, -1, -1} //TOY_PIVOT - ,{ -1, -1, -1, -1} // TOY_CONFIRM - }; - -static const float Z_CURRENT_LAYOUT[STGC_TYPES][STGC_LAYERS]={ - { 7323.1, 7334.2, 7345.3, 7356.4} // SMALL_PIVOT - ,{ 7058.2, 7069.3, 7080.4, 7091.5} // SMALL_CONFIRM - ,{ 7420.2, 7431.3, 7442.4, 7453.5} // LARGE_PIVOT - ,{ 7685.1, 7696.2, 7707.3, 7718.4} // LARGE_CONFIRM - ,{ -397.5, -437.5, -402.5, -442.5} //TOY_PIVOT - ,{ -417.5, -457.5, -422.5, -462.5} // TOY_CONFIRM -}; - -static const int FIRST_PAD_ROW_DIVISION[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ -{ // SMALL_PIVOT - { 2, 3, 2, 3} //D0 -, { 10, 10, 10, 10} //D1 -, { 21, 22, 21, 22} //D2 -, { 33, 34, 33, 34} //D3 -} -, -{ // SMALL_CONFIRM -{ 3, 3, 3, 3} //D0 -, { 11, 12, 11, 11} //D1 -, { 23, 23, 23, 23} //D2 -, { 35, 36, 35, 36} //D3 -} -, -{ // LARGE_PIVOT - { 1, 2, 1, 2} //D0 -, { 10, 10, 9, 9} //D1 -, { 21, 21, 20, 21} //D2 -, { 34, 34, 33, 34} //D3 -} -, -{ // LARGE_CONFIRM -{ 1, 2, 1, 2} //D0 -, { 9, 10, 9, 9} //D1 -, { 20, 20, 20, 20} //D2 -, { 32, 33, 32, 32} //D3 -} -, -{ //TOY_PIVOT - { 1, 1, 1, 1} //D0 -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -} -, -{ // TOY_CONFIRM - { 1, 1, 1, 1} //D0 -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -} -}; - -static const int PAD_ROWS[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ -{ // SMALL_PIVOT - { 9, 8, 8, 7} //D0 -, { 11, 12, 11, 12} //D1 -, { 12, 12, 12, 12} //D2 -, { 12, 12, 12, 12} //D3 -} -, -{ // SMALL_CONFIRM -{ 9, 9, 8, 8} //D0 -, { 12, 11, 12, 12} //D1 -, { 12, 13, 12, 13} //D2 -, { 13, 12, 13, 12} //D3 -} -, -{ // LARGE_PIVOT - { 9, 8, 8, 8} //D0 -, { 11, 11, 12, 12} //D1 -, { 12, 13, 13, 13} //D2 -, { 12, 13, 13, 13} //D3 -} -, -{ // LARGE_CONFIRM -{ 9, 8, 8, 7} //D0 -, { 11, 10, 11, 11} //D1 -, { 12, 13, 12, 12} //D2 -, { 13, 12, 13, 13} //D3 -} -, -{ //TOY_PIVOT - { 10, 11, 10, 11} //D0 -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -} -, -{ // TOY_CONFIRM - { 11, 11, 11, 11} //D0 -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -} -}; - - - -static const float PAD_COL_PHI0[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ -{ // SMALL_PIVOT - { 0.002717, -0.040916, -0.002717, -0.046351} //D0 -, { 0.002717, -0.040916, -0.002717, -0.046351} //D1 -, { 0.002717, -0.062732, -0.002717, -0.068167} //D2 -, { 0.002717, -0.062732, -0.002717, -0.068167} //D3 -} -, -{ // SMALL_CONFIRM -{ -0.019099, -0.062732, -0.024534, -0.068167} //D0 -, { -0.019099, -0.062732, -0.024534, -0.068167} //D1 -, { -0.030008, -0.095457, -0.035442, -0.100892} //D2 -, { -0.030008, -0.095457, -0.035442, -0.100892} //D3 -} -, -{ // LARGE_PIVOT - { 0.002717, -0.040916, -0.002717, -0.046351} //D0 -, { 0.002717, -0.040916, -0.002717, -0.046351} //D1 -, { 0.002717, -0.062732, -0.002717, -0.068167} //D2 -, { 0.002717, -0.062732, -0.002717, -0.068167} //D3 -} -, -{ // LARGE_CONFIRM -{ -0.019099, -0.062732, -0.024534, -0.068167} //D0 -, { -0.019099, -0.062732, -0.024534, -0.068167} //D1 -, { -0.030008, -0.095457, -0.035442, -0.100892} //D2 -, { -0.030008, -0.095457, -0.035442, -0.100892} //D3 -} -, -{ //TOY_PIVOT - { -317.5, -357.5, -322.5, -362.5} //D0 actually X (mm) -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -, -{ // TOY_CONFIRM - { -337.5, -377.5, -342.5, -382.5} //D0 -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -} -}; - -static const int INDEX_LEFTMOST_COL[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ -{ // SMALL_PIVOT - { -1, -1, -1, -1} //D0 -, { -1, -1, -1, -1} //D1 -, { -1, 0, -1, 0} //D2 -, { -1, 0, -1, 0} //D3 -} -, -{ // SMALL_CONFIRM -{ -1, -1, -1, -1} //D0 -, { -1, -1, -1, -1} //D1 -, { -1, 0, -1, 0} //D2 -, { -1, 0, -1, 0} //D3 -} -, -{ // LARGE_PIVOT - { -2, -1, -2, -1} //D0 -, { -2, -1, -2, -1} //D1 -, { -1, 0, -1, 0} //D2 -, { -1, 0, -1, 0} //D3 -} -, -{ // LARGE_CONFIRM -{ -2, -1, -2, -1} //D0 -, { -2, -1, -2, -1} //D1 -, { -1, 0, -1, 0} //D2 -, { -1, 0, -1, 0} //D3 -} -, -{ //TOY_PIVOT - { 1, 1, 1, 1} //D0 actually 1st column -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -} -, -{ // TOY_CONFIRM - { 1, 1, 1, 1} //D0 actually 1st column -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -} -}; - - - -static const int INDEX_RIGHTMOST_COL[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ -{ // SMALL_PIVOT - { 1, 2, 1, 2} //D0 -, { 1, 2, 1, 2} //D1 -, { 1, 1, 1, 1} //D2 -, { 1, 1, 1, 1} //D3 -} -, -{ // SMALL_CONFIRM -{ 1, 2, 1, 2} //D0 -, { 1, 2, 1, 2} //D1 -, { 1, 1, 1, 1} //D2 -, { 1, 1, 1, 1} //D3 -} -, -{ // LARGE_PIVOT - { 2, 2, 2, 2} //D0 -, { 2, 2, 2, 2} //D1 -, { 1, 1, 1, 1} //D2 -, { 1, 1, 1, 1} //D3 -} -, -{ // LARGE_CONFIRM -{ 2, 2, 2, 2} //D0 -, { 2, 2, 2, 2} //D1 -, { 1, 1, 1, 1} //D2 -, { 1, 1, 1, 1} //D3 -} -, -{ //TOY_PIVOT - { 9, 10, 9, 10} //D0 -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -} -, -{ // TOY_CONFIRM - { 10, 10, 10, 10} //D0 -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } -} -}; - -static const float Z_CENTER_STGC_DETECTOR[STGC_TYPES][STGC_LAYERS]={ - { 7377.5, 7388.8, 7400.2, 7411.5} // SMALL_PIVOT -, { 7087.5, 7098.8, 7110.2, 7121.5} // SMALL_CONFIRM -, { 7511.5, 7522.8, 7534.2, 7545.5} // LARGE_PIVOT -, { 7801.5, 7812.8, 7824.2, 7835.5} // LARGE_CONFIRM -, { 18.0, 29.3, 40.7, 52.0} // TOY_PIVOT -, { 308.0, 319.3, 330.7, 342.0} // TOY_CONFIRM -}; - -static const std::string STGC_LAYER_NAMES[STGC_LAYERS]={ - "Layer 1" -, "Layer 2" -, "Layer 3" -, "Layer 4" -}; - -static const std::string STGC_DETECTOR_NAMES[STGC_DETECTORS]={ - "STGC Detector 0" -, "STGC Detector 1" -, "STGC Detector 2" -, "STGC Detector 3" -}; - -static const std::string STGC_MODULE_NAMES[STGC_MODULES]={ - "STGC Module 1" -, "STGC Module 2" -, "STGC Module 3" -}; - -static const std::string PIVOT_CONFIRM_NAMES[STGC_WEDGES]={ - "Pivot" -, "Confirm" -}; - -static const std::string SECTOR_NAMES[SECTOR_TYPES]={ - "Small" -, "Large" -, "Toy" -}; - -static const std::string WEDGE_NAMES[STGC_TYPES]={ - "SmallPivot" -, "SmallConfirm" -, "LargePivot" -, "LargeConfirm" -, "ToyPivot" -, "ToyConfirm" -}; - -static const std::string SHORT_WEDGE_NAMES[STGC_TYPES]={ "SP" , "SC" - , "LP" , "LC" - , "TP" , "TC" }; -static const int MM_TYPE[SECTORS_IN_OCTANT][MM_MODULES]={ - { REGULAR , CORNERED , REGULAR , REGULAR } -, { REGULAR , REGULAR , REGULAR , EXTRUDED } -}; - -static const float MM_H0[SECTORS_IN_OCTANT][MM_MODULES]={ - { UNDEF , 1966.0, UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -}; - -static const float MM_H1[SECTORS_IN_OCTANT][MM_MODULES]={ - { 1016.0, 2056.3, 2816.0, 3666.0} -, { 982.0, 1932.0, 2882.0, 3832.0} -}; - -static const float MM_H2[SECTORS_IN_OCTANT][MM_MODULES]={ - { 1946.0, 2796.0, 3646.0, 4471.0} -, { 1912.0, 2862.0, 3812.0, 4287.0} -}; - -static const float MM_H3[SECTORS_IN_OCTANT][MM_MODULES]={ - { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , 4742.0} -}; - -static const float MM_D[SECTORS_IN_OCTANT][MM_MODULES]={ - { UNDEF , 1158.4, UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , UNDEF } -}; - -static const float MM_A[SECTORS_IN_OCTANT][MM_MODULES]={ - { 371.4, 1233.2, 1392.9, 1571.6} -, { 582.3, 1145.1, 1707.9, 2270.7} -}; - -static const float MM_B[SECTORS_IN_OCTANT][MM_MODULES]={ - { 1141.8, 1388.7, 1567.4, 1740.8} -, { 1133.3, 1696.1, 2258.9, 2540.3} -}; - -static const float MM_C[SECTORS_IN_OCTANT][MM_MODULES]={ - { UNDEF , UNDEF , UNDEF , UNDEF } -, { UNDEF , UNDEF , UNDEF , 2220.0} -}; - -static const float MM_ZMIN[SECTORS_IN_OCTANT] ={ 7104.5, 7528.5}; -static const float MM_ZMAX[SECTORS_IN_OCTANT] ={ 7394.5, 7818.5}; - -static const std::string MM_MODULE_NAMES[MM_MODULES]={ - "MM Module 1" -, "MM Module 2" -, "MM Module 3" -, "MM Module 4" -}; - -static const std::string MM_TYPE_NAMES[MM_TYPES]={ - "Regular" -, "Cornered" -, "Extruded" -}; - -static const float MDT_LOST = 72.0; -static const float MDT_ZMIN[SECTORS_IN_OCTANT] ={ 14458.0, 14049.0}; -static const float MDT_ZMAX[SECTORS_IN_OCTANT] ={ 14124.0, 13715.0}; - -static const float MDT_HMIN[SECTORS_IN_OCTANT][MDT_MODULES] ={ -{ 1770.0, 3725.0, 5680.0, 7635.0} -,{ 1770.0, 3485.0, 5440.0, 7395.0} -}; - -static const float MDT_HMAX[SECTORS_IN_OCTANT][MDT_MODULES] ={ -{ 3690.0, 5645.0, 7600.0, 9555.0} -,{ 3450.0, 5405.0, 7360.0, 9315.0} -}; - -static const float MDT_HALF_B[SECTORS_IN_OCTANT] ={ 417.5, 593.3}; -static const float MDT_HALF_OPENING[SECTORS_IN_OCTANT] ={ 8.5, 14.0}; - - - - -#endif +/* + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +*/ + +//1234567890123901234 123456789023456 123456789023456123123456789023456123 1234567890123 1234567890123 1234565 4444412344326567890 +#ifndef STGCgeometry_h +#define STGCgeometry_h + +// NSW STGC (c) Daniel.Lellouch@cern.ch April 11, 2013 + +static const float H1[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ +{ // SMALL_PIVOT + { 1019.4, 1019.4, 1019.4, 1019.4} //D0 +, { 1681.4, 1651.4, 1621.4, 1591.4} //D1 +, { 2541.4, 2541.4, 2541.4, 2541.4} //D2 +, { 3510.9, 3510.9, 3510.9, 3510.9} //D3 +} +, +{ // SMALL_CONFIRM + { 1019.4, 1019.4, 1019.4, 1019.4} //D0 +, { 1681.4, 1651.4, 1621.4, 1591.4} //D1 +, { 2541.4, 2541.4, 2541.4, 2541.4} //D2 +, { 3510.9, 3510.9, 3510.9, 3510.9} //D3 +} +, +{ // LARGE_PIVOT + { 982.0, 982.0, 982.0, 982.0} //D0 +, { 1678.0, 1648.0, 1618.0, 1588.0} //D1 +, { 2538.0, 2538.0, 2538.0, 2538.0} //D2 +, { 3598.0, 3598.0, 3598.0, 3598.0} //D3 +} +, +{ // LARGE_CONFIRM + { 982.0, 982.0, 982.0, 982.0} //D0 +, { 1678.0, 1648.0, 1618.0, 1588.0} //D1 +, { 2538.0, 2538.0, 2538.0, 2538.0} //D2 +, { 3598.0, 3598.0, 3598.0, 3598.0} //D3 +} +, +{ //TOY_PIVOT + { -413.5, -413.5, -413.5, -413.5} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +, +{ // TOY_CONFIRM + { -413.5, -413.5, -413.5, -413.5} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} + +}; + +static const float H2[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ +{ // SMALL_PIVOT + { 1681.4, 1651.4, 1621.4, 1591.4} //D0 +, { 2531.4, 2531.4, 2531.4, 2531.4} //D1 +, { 3500.9, 3500.9, 3500.9, 3500.9} //D2 +, { 4470.4, 4470.4, 4470.4, 4470.4} //D3 +} +, +{ // SMALL_CONFIRM + { 1681.4, 1651.4, 1621.4, 1591.4} //D0 +, { 2531.4, 2531.4, 2531.4, 2531.4} //D1 +, { 3500.9, 3500.9, 3500.9, 3500.9} //D2 +, { 4470.4, 4470.4, 4470.4, 4470.4} //D3 +} +, +{ // LARGE_PIVOT + { 1678.0, 1648.0, 1618.0, 1588.0} //D0 +, { 2528.0, 2528.0, 2528.0, 2528.0} //D1 +, { 3588.0, 3588.0, 3588.0, 3588.0} //D2 +, { 4398.0, 4398.0, 4398.0, 4398.0} //D3 +} +, +{ // LARGE_CONFIRM + { 1678.0, 1648.0, 1618.0, 1588.0} //D0 +, { 2528.0, 2528.0, 2528.0, 2528.0} //D1 +, { 3588.0, 3588.0, 3588.0, 3588.0} //D2 +, { 4398.0, 4398.0, 4398.0, 4398.0} //D3 +} +, +{ //TOY_PIVOT + { 413.5, 413.5, 413.5, 413.5} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +, +{ // TOY_CONFIRM + { 413.5, 413.5, 413.5, 413.5} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +}; + + +static const float H3[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ +{ // SMALL_PIVOT + { UNDEF , UNDEF , UNDEF , UNDEF } //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D1 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D2 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D3 +} +, +{ // SMALL_CONFIRM + { UNDEF , UNDEF , UNDEF , UNDEF } //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D1 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D2 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D3 +} +, +{ // LARGE_PIVOT + { UNDEF , UNDEF , UNDEF , UNDEF } //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D1 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D2 +, { 4648.0, 4648.0, 4648.0, 4648.0} //D3 +} +, +{ // LARGE_CONFIRM + { UNDEF , UNDEF , UNDEF , UNDEF } //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D1 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D2 +, { 4648.0, 4648.0, 4648.0, 4648.0} //D3 +} +, +{ //TOY_PIVOT + { UNDEF , UNDEF , UNDEF , UNDEF } //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +, +{ // TOY_CONFIRM + { UNDEF , UNDEF , UNDEF , UNDEF } //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +}; + +static const float A[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ +{ // SMALL_PIVOT + { 384.0, 384.0, 384.0, 384.0} //D0 +, { 677.5, 664.2, 650.9, 637.6} //D1 +, { 1056.5, 1056.5, 1056.5, 1056.5} //D2 +, { 1260.3, 1260.3, 1260.3, 1260.3} //D3 +} +, +{ // SMALL_CONFIRM + { 420.0, 420.0, 420.0, 420.0} //D0 +, { 713.5, 700.2, 686.9, 673.6} //D1 +, { 1092.5, 1092.5, 1092.5, 1092.5} //D2 +, { 1296.3, 1296.3, 1296.3, 1296.3} //D3 +} +, +{ // LARGE_PIVOT + { 598.0, 598.0, 598.0, 598.0} //D0 +, { 843.4, 832.8, 822.2, 811.7} //D1 +, { 1149.1, 1149.1, 1149.1, 1149.1} //D2 +, { 1777.1, 1777.1, 1777.1, 1777.1} //D3 +} +, +{ // LARGE_CONFIRM + { 634.0, 634.0, 634.0, 634.0} //D0 +, { 879.4, 868.8, 858.2, 847.7} //D1 +, { 1185.1, 1185.1, 1185.1, 1185.1} //D2 +, { 1813.1, 1813.1, 1813.1, 1813.1} //D3 +} +, +{ //TOY_PIVOT + { 834.0, 834.0, 834.0, 834.0} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +, +{ // TOY_CONFIRM + { 834.0, 834.0, 834.0, 834.0} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +}; + + +static const float B[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ +{ // SMALL_PIVOT + { 677.5, 664.2, 650.9, 637.6} //D0 +, { 1054.4, 1054.4, 1054.4, 1054.4} //D1 +, { 1258.2, 1258.2, 1258.2, 1258.2} //D2 +, { 1462.0, 1462.0, 1462.0, 1462.0} //D3 +} +, +{ // SMALL_CONFIRM + { 713.5, 700.2, 686.9, 673.6} //D0 +, { 1090.4, 1090.4, 1090.4, 1090.4} //D1 +, { 1294.2, 1294.2, 1294.2, 1294.2} //D2 +, { 1498.0, 1498.0, 1498.0, 1498.0} //D3 +} +, +{ // LARGE_PIVOT + { 843.4, 832.8, 822.2, 811.7} //D0 +, { 1143.2, 1143.2, 1143.2, 1143.2} //D1 +, { 1771.1, 1771.1, 1771.1, 1771.1} //D2 +, { 2251.0, 2251.0, 2251.0, 2251.0} //D3 +} +, +{ // LARGE_CONFIRM + { 879.4, 868.8, 858.2, 847.7} //D0 +, { 1179.2, 1179.2, 1179.2, 1179.2} //D1 +, { 1807.1, 1807.1, 1807.1, 1807.1} //D2 +, { 2287.0, 2287.0, 2287.0, 2287.0} //D3 +} +, +{ //TOY_PIVOT + { 834.0, 834.0, 834.0, 834.0} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +, +{ // TOY_CONFIRM + { 834.0, 834.0, 834.0, 834.0} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +}; + + + +static const float H1_ACTIVE[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ +{ // SMALL_PIVOT + { 1032.9, 1032.9, 1032.9, 1032.9} //D0 +, { 1694.9, 1664.9, 1634.9, 1604.9} //D1 +, { 2554.9, 2554.9, 2554.9, 2554.9} //D2 +, { 3524.4, 3524.4, 3524.4, 3524.4} //D3 +} +, +{ // SMALL_CONFIRM + { 1032.9, 1032.9, 1032.9, 1032.9} //D0 +, { 1694.9, 1664.9, 1634.9, 1604.9} //D1 +, { 2554.9, 2554.9, 2554.9, 2554.9} //D2 +, { 3524.4, 3524.4, 3524.4, 3524.4} //D3 +} +, +{ // LARGE_PIVOT + { 995.5, 995.5, 995.5, 995.5} //D0 +, { 1691.5, 1661.5, 1631.5, 1601.5} //D1 +, { 2551.5, 2551.5, 2551.5, 2551.5} //D2 +, { 3611.5, 3611.5, 3611.5, 3611.5} //D3 +} +, +{ // LARGE_CONFIRM + { 995.5, 995.5, 995.5, 995.5} //D0 +, { 1691.5, 1661.5, 1631.5, 1601.5} //D1 +, { 2551.5, 2551.5, 2551.5, 2551.5} //D2 +, { 3611.5, 3611.5, 3611.5, 3611.5} //D3 +} +, +{ //TOY_PIVOT + { -400.0, -400.0, -400.0, -400.0} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +, +{ // TOY_CONFIRM + { -400.0, -400.0, -400.0, -400.0} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +}; + +static const float H2_ACTIVE[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ +{ // SMALL_PIVOT + { 1667.9, 1637.9, 1607.9, 1577.9} //D0 +, { 2517.9, 2517.9, 2517.9, 2517.9} //D1 +, { 3470.9, 3470.9, 3470.9, 3470.9} //D2 +, { 4440.4, 4440.4, 4440.4, 4440.4} //D3 +} +, +{ // SMALL_CONFIRM + { 1667.9, 1637.9, 1607.9, 1577.9} //D0 +, { 2517.9, 2517.9, 2517.9, 2517.9} //D1 +, { 3470.9, 3470.9, 3470.9, 3470.9} //D2 +, { 4440.4, 4440.4, 4440.4, 4440.4} //D3 +} +, +{ // LARGE_PIVOT + { 1664.5, 1634.5, 1604.5, 1574.5} //D0 +, { 2514.5, 2514.5, 2514.5, 2514.5} //D1 +, { 3558.0, 3558.0, 3558.0, 3558.0} //D2 +, { 4368.0, 4368.0, 4368.0, 4368.0} //D3 +} +, +{ // LARGE_CONFIRM + { 1664.5, 1634.5, 1604.5, 1574.5} //D0 +, { 2514.5, 2514.5, 2514.5, 2514.5} //D1 +, { 3558.0, 3558.0, 3558.0, 3558.0} //D2 +, { 4368.0, 4368.0, 4368.0, 4368.0} //D3 +} +, +{ //TOY_PIVOT + { 400.0, 400.0, 400.0, 400.0} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +, +{ // TOY_CONFIRM + { 400.0, 400.0, 400.0, 400.0} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +}; + +static const float H3_ACTIVE[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ +{ // SMALL_PIVOT + { UNDEF , UNDEF , UNDEF , UNDEF } //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D1 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D2 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D3 +} +, +{ // SMALL_CONFIRM + { UNDEF , UNDEF , UNDEF , UNDEF } //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D1 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D2 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D3 +} +, +{ // LARGE_PIVOT + { UNDEF , UNDEF , UNDEF , UNDEF } //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D1 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D2 +, { 4618.0, 4618.0, 4618.0, 4618.0} //D3 +} +, +{ // LARGE_CONFIRM + { UNDEF , UNDEF , UNDEF , UNDEF } //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D1 +, { UNDEF , UNDEF , UNDEF , UNDEF } //D2 +, { 4618.0, 4618.0, 4618.0, 4618.0} //D3 +} +, +{ //TOY_PIVOT + { UNDEF , UNDEF , UNDEF , UNDEF } //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +, +{ // TOY_CONFIRM + { UNDEF , UNDEF , UNDEF , UNDEF } //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +}; + +static const float A_ACTIVE[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ +{ // SMALL_PIVOT + { 356.8, 356.8, 356.8, 356.8} //D0 +, { 650.3, 637.0, 623.7, 610.4} //D1 +, { 1025.5, 1025.5, 1025.5, 1025.5} //D2 +, { 1229.3, 1229.3, 1229.3, 1229.3} //D3 +} +, +{ // SMALL_CONFIRM + { 392.8, 392.8, 392.8, 392.8} //D0 +, { 686.3, 673.0, 659.7, 646.4} //D1 +, { 1061.5, 1061.5, 1061.5, 1061.5} //D2 +, { 1265.3, 1265.3, 1265.3, 1265.3} //D3 +} +, +{ // LARGE_PIVOT + { 569.2, 569.2, 569.2, 569.2} //D0 +, { 814.7, 804.1, 793.5, 782.9} //D1 +, { 1124.5, 1124.5, 1124.5, 1124.5} //D2 +, { 1752.5, 1752.5, 1752.5, 1752.5} //D3 +} +, +{ // LARGE_CONFIRM + { 605.2, 605.2, 605.2, 605.2} //D0 +, { 850.7, 840.1, 829.5, 818.9} //D1 +, { 1160.5, 1160.5, 1160.5, 1160.5} //D2 +, { 1788.5, 1788.5, 1788.5, 1788.5} //D3 +} +, +{ //TOY_PIVOT + { 800.0, 800.0, 800.0, 800.0} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +, +{ // TOY_CONFIRM + { 800.0, 800.0, 800.0, 800.0} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +}; + + +static const float B_ACTIVE[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ +{ // SMALL_PIVOT + { 638.3, 625.0, 611.7, 598.4} //D0 +, { 1015.2, 1015.2, 1015.2, 1015.2} //D1 +, { 1218.1, 1218.1, 1218.1, 1218.1} //D2 +, { 1421.9, 1421.9, 1421.9, 1421.9} //D3 +} +, +{ // SMALL_CONFIRM +{ 674.3, 661.0, 647.7, 634.4} //D0 +, { 1051.2, 1051.2, 1051.2, 1051.2} //D1 +, { 1254.1, 1254.1, 1254.1, 1254.1} //D2 +, { 1457.9, 1457.9, 1457.9, 1457.9} //D3 +} +, +{ // LARGE_PIVOT + { 805.2, 794.6, 784.0, 773.4} //D0 +, { 1104.9, 1104.9, 1104.9, 1104.9} //D1 +, { 1720.8, 1720.8, 1720.8, 1720.8} //D2 +, { 2200.6, 2200.6, 2200.6, 2200.6} //D3 +} +, +{ // LARGE_CONFIRM +{ 841.2, 830.6, 820.0, 809.4} //D0 +, { 1140.9, 1140.9, 1140.9, 1140.9} //D1 +, { 1756.8, 1756.8, 1756.8, 1756.8} //D2 +, { 2236.6, 2236.6, 2236.6, 2236.6} //D3 +} +, +{ //TOY_PIVOT + { 800.0, 800.0, 800.0, 800.0} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +, +{ // TOY_CONFIRM + { 800.0, 800.0, 800.0, 800.0} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +}; + + + +static const float A_ADAPTERS[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ +{ // SMALL_PIVOT + { 428.0, 428.0, 428.0, 428.0} //D0 +, { 787.5, 774.2, 760.9, 747.6} //D1 +, { 1136.5, 1136.5, 1136.5, 1136.5} //D2 +, { 1340.3, 1340.3, 1340.3, 1340.3} //D3 +} +, +{ // SMALL_CONFIRM + { 464.0, 464.0, 464.0, 464.0} //D0 +, { 823.5, 810.2, 796.9, 783.6} //D1 +, { 1172.5, 1172.5, 1172.5, 1172.5} //D2 +, { 1376.3, 1376.3, 1376.3, 1376.3} //D3 +} +, +{ // LARGE_PIVOT + { 642.0, 642.0, 642.0, 642.0} //D0 +, { 953.4, 942.8, 932.2, 921.7} //D1 +, { 1229.1, 1229.1, 1229.1, 1229.1} //D2 +, { 1857.1, 1857.1, 1857.1, 1857.1} //D3 +} +, +{ // LARGE_CONFIRM + { 678.0, 678.0, 678.0, 678.0} //D0 +, { 989.4, 978.8, 968.2, 957.7} //D1 +, { 1265.1, 1265.1, 1265.1, 1265.1} //D2 +, { 1893.1, 1893.1, 1893.1, 1893.1} //D3 +} +, +{ //TOY_PIVOT + { 878.0, 878.0, 878.0, 878.0} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +, +{ // TOY_CONFIRM + { 878.0, 878.0, 878.0, 878.0} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +}; + + +static const float B_ADAPTERS[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ +{ // SMALL_PIVOT + { 721.5, 708.2, 694.9, 681.6} //D0 +, { 1098.4, 1098.4, 1098.4, 1098.4} //D1 +, { 1338.2, 1338.2, 1338.2, 1338.2} //D2 +, { 1542.0, 1542.0, 1542.0, 1542.0} //D3 +} +, +{ // SMALL_CONFIRM +{ 757.5, 744.2, 730.9, 717.6} //D0 +, { 1134.4, 1134.4, 1134.4, 1134.4} //D1 +, { 1374.2, 1374.2, 1374.2, 1374.2} //D2 +, { 1578.0, 1578.0, 1578.0, 1578.0} //D3 +} +, +{ // LARGE_PIVOT + { 887.4, 876.8, 866.2, 855.7} //D0 +, { 1187.2, 1187.2, 1187.2, 1187.2} //D1 +, { 1851.1, 1851.1, 1851.1, 1851.1} //D2 +, { 2331.0, 2331.0, 2331.0, 2331.0} //D3 +} +, +{ // LARGE_CONFIRM +{ 923.4, 912.8, 902.2, 891.7} //D0 +, { 1223.2, 1223.2, 1223.2, 1223.2} //D1 +, { 1887.1, 1887.1, 1887.1, 1887.1} //D2 +, { 2367.0, 2367.0, 2367.0, 2367.0} //D3 +} +, +{ //TOY_PIVOT + { 878.0, 878.0, 878.0, 878.0} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +, +{ // TOY_CONFIRM + { 878.0, 878.0, 878.0, 878.0} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +}; + + +static const float PAD_PHI_SUBDIVISION = 1.5; // Module 1 wrt Modules 2 and 3 +static const float PAD_PHI_DIVISION = 0.130900; // Modules 2 and 3 in radians + + +static const float H_PAD_ROW_0[STGC_TYPES][STGC_LAYERS]={ + { 922.5, 883.9, 920.3, 881.5} // SMALL_PIVOT + ,{ 867.0, 829.9, 865.0, 827.7} // SMALL_CONFIRM + ,{ 939.3, 899.9, 937.0, 897.5} // LARGE_PIVOT + ,{ 954.4, 913.4, 951.8, 910.7} // LARGE_CONFIRM + ,{ -397.5, -437.5, -402.5, -442.5} //TOY_PIVOT + ,{ -417.5, -457.5, -422.5, -462.5} // TOY_CONFIRM + }; + + +static const float PAD_HEIGHT[STGC_TYPES][STGC_LAYERS]={ + { 80.000, 80.123, 80.246, 80.368} // SMALL_PIVOT + ,{ 76.855, 76.978, 77.101, 77.224} // SMALL_CONFIRM + ,{ 81.453, 81.576, 81.699, 81.821} // LARGE_PIVOT + ,{ 84.598, 84.721, 84.843, 84.966} // LARGE_CONFIRM + ,{ 80.000, 80.000, 80.000, 80.000} //TOY_PIVOT + ,{ 80.000, 80.000, 80.000, 80.000} // TOY_CONFIRM + }; + +static const float Z_DANIEL[STGC_TYPES][STGC_LAYERS]={ + { 7377.5, 7388.8, 7400.2, 7411.5} // SMALL_PIVOT + ,{ 7087.5, 7098.8, 7110.2, 7121.5} // SMALL_CONFIRM + ,{ 7511.5, 7522.8, 7534.2, 7545.5} // LARGE_PIVOT + ,{ 7801.5, 7812.8, 7824.2, 7835.5} // LARGE_CONFIRM + ,{ -1, -1, -1, -1} //TOY_PIVOT + ,{ -1, -1, -1, -1} // TOY_CONFIRM + }; + +static const float Z_CURRENT_LAYOUT[STGC_TYPES][STGC_LAYERS]={ + { 7323.1, 7334.2, 7345.3, 7356.4} // SMALL_PIVOT + ,{ 7058.2, 7069.3, 7080.4, 7091.5} // SMALL_CONFIRM + ,{ 7420.2, 7431.3, 7442.4, 7453.5} // LARGE_PIVOT + ,{ 7685.1, 7696.2, 7707.3, 7718.4} // LARGE_CONFIRM + ,{ -397.5, -437.5, -402.5, -442.5} //TOY_PIVOT + ,{ -417.5, -457.5, -422.5, -462.5} // TOY_CONFIRM +}; + +static const int FIRST_PAD_ROW_DIVISION[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ +{ // SMALL_PIVOT + { 2, 3, 2, 3} //D0 +, { 10, 10, 10, 10} //D1 +, { 21, 22, 21, 22} //D2 +, { 33, 34, 33, 34} //D3 +} +, +{ // SMALL_CONFIRM +{ 3, 3, 3, 3} //D0 +, { 11, 12, 11, 11} //D1 +, { 23, 23, 23, 23} //D2 +, { 35, 36, 35, 36} //D3 +} +, +{ // LARGE_PIVOT + { 1, 2, 1, 2} //D0 +, { 10, 10, 9, 9} //D1 +, { 21, 21, 20, 21} //D2 +, { 34, 34, 33, 34} //D3 +} +, +{ // LARGE_CONFIRM +{ 1, 2, 1, 2} //D0 +, { 9, 10, 9, 9} //D1 +, { 20, 20, 20, 20} //D2 +, { 32, 33, 32, 32} //D3 +} +, +{ //TOY_PIVOT + { 1, 1, 1, 1} //D0 +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +} +, +{ // TOY_CONFIRM + { 1, 1, 1, 1} //D0 +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +} +}; + +static const int PAD_ROWS[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ +{ // SMALL_PIVOT + { 9, 8, 8, 7} //D0 +, { 11, 12, 11, 12} //D1 +, { 12, 12, 12, 12} //D2 +, { 12, 12, 12, 12} //D3 +} +, +{ // SMALL_CONFIRM +{ 9, 9, 8, 8} //D0 +, { 12, 11, 12, 12} //D1 +, { 12, 13, 12, 13} //D2 +, { 13, 12, 13, 12} //D3 +} +, +{ // LARGE_PIVOT + { 9, 8, 8, 8} //D0 +, { 11, 11, 12, 12} //D1 +, { 12, 13, 13, 13} //D2 +, { 12, 13, 13, 13} //D3 +} +, +{ // LARGE_CONFIRM +{ 9, 8, 8, 7} //D0 +, { 11, 10, 11, 11} //D1 +, { 12, 13, 12, 12} //D2 +, { 13, 12, 13, 13} //D3 +} +, +{ //TOY_PIVOT + { 10, 11, 10, 11} //D0 +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +} +, +{ // TOY_CONFIRM + { 11, 11, 11, 11} //D0 +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +} +}; + + + +static const float PAD_COL_PHI0[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ +{ // SMALL_PIVOT + { 0.002717, -0.040916, -0.002717, -0.046351} //D0 +, { 0.002717, -0.040916, -0.002717, -0.046351} //D1 +, { 0.002717, -0.062732, -0.002717, -0.068167} //D2 +, { 0.002717, -0.062732, -0.002717, -0.068167} //D3 +} +, +{ // SMALL_CONFIRM +{ -0.019099, -0.062732, -0.024534, -0.068167} //D0 +, { -0.019099, -0.062732, -0.024534, -0.068167} //D1 +, { -0.030008, -0.095457, -0.035442, -0.100892} //D2 +, { -0.030008, -0.095457, -0.035442, -0.100892} //D3 +} +, +{ // LARGE_PIVOT + { 0.002717, -0.040916, -0.002717, -0.046351} //D0 +, { 0.002717, -0.040916, -0.002717, -0.046351} //D1 +, { 0.002717, -0.062732, -0.002717, -0.068167} //D2 +, { 0.002717, -0.062732, -0.002717, -0.068167} //D3 +} +, +{ // LARGE_CONFIRM +{ -0.019099, -0.062732, -0.024534, -0.068167} //D0 +, { -0.019099, -0.062732, -0.024534, -0.068167} //D1 +, { -0.030008, -0.095457, -0.035442, -0.100892} //D2 +, { -0.030008, -0.095457, -0.035442, -0.100892} //D3 +} +, +{ //TOY_PIVOT + { -317.5, -357.5, -322.5, -362.5} //D0 actually X (mm) +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +, +{ // TOY_CONFIRM + { -337.5, -377.5, -342.5, -382.5} //D0 +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +} +}; + +static const int INDEX_LEFTMOST_COL[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ +{ // SMALL_PIVOT + { -1, -1, -1, -1} //D0 +, { -1, -1, -1, -1} //D1 +, { -1, 0, -1, 0} //D2 +, { -1, 0, -1, 0} //D3 +} +, +{ // SMALL_CONFIRM +{ -1, -1, -1, -1} //D0 +, { -1, -1, -1, -1} //D1 +, { -1, 0, -1, 0} //D2 +, { -1, 0, -1, 0} //D3 +} +, +{ // LARGE_PIVOT + { -2, -1, -2, -1} //D0 +, { -2, -1, -2, -1} //D1 +, { -1, 0, -1, 0} //D2 +, { -1, 0, -1, 0} //D3 +} +, +{ // LARGE_CONFIRM +{ -2, -1, -2, -1} //D0 +, { -2, -1, -2, -1} //D1 +, { -1, 0, -1, 0} //D2 +, { -1, 0, -1, 0} //D3 +} +, +{ //TOY_PIVOT + { 1, 1, 1, 1} //D0 actually 1st column +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +} +, +{ // TOY_CONFIRM + { 1, 1, 1, 1} //D0 actually 1st column +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +} +}; + + + +static const int INDEX_RIGHTMOST_COL[STGC_TYPES][STGC_DETECTORS][STGC_LAYERS]={ +{ // SMALL_PIVOT + { 1, 2, 1, 2} //D0 +, { 1, 2, 1, 2} //D1 +, { 1, 1, 1, 1} //D2 +, { 1, 1, 1, 1} //D3 +} +, +{ // SMALL_CONFIRM +{ 1, 2, 1, 2} //D0 +, { 1, 2, 1, 2} //D1 +, { 1, 1, 1, 1} //D2 +, { 1, 1, 1, 1} //D3 +} +, +{ // LARGE_PIVOT + { 2, 2, 2, 2} //D0 +, { 2, 2, 2, 2} //D1 +, { 1, 1, 1, 1} //D2 +, { 1, 1, 1, 1} //D3 +} +, +{ // LARGE_CONFIRM +{ 2, 2, 2, 2} //D0 +, { 2, 2, 2, 2} //D1 +, { 1, 1, 1, 1} //D2 +, { 1, 1, 1, 1} //D3 +} +, +{ //TOY_PIVOT + { 9, 10, 9, 10} //D0 +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +} +, +{ // TOY_CONFIRM + { 10, 10, 10, 10} //D0 +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +, { UNDEFINED , UNDEFINED , UNDEFINED , UNDEFINED } +} +}; + +static const float Z_CENTER_STGC_DETECTOR[STGC_TYPES][STGC_LAYERS]={ + { 7377.5, 7388.8, 7400.2, 7411.5} // SMALL_PIVOT +, { 7087.5, 7098.8, 7110.2, 7121.5} // SMALL_CONFIRM +, { 7511.5, 7522.8, 7534.2, 7545.5} // LARGE_PIVOT +, { 7801.5, 7812.8, 7824.2, 7835.5} // LARGE_CONFIRM +, { 18.0, 29.3, 40.7, 52.0} // TOY_PIVOT +, { 308.0, 319.3, 330.7, 342.0} // TOY_CONFIRM +}; + +static const std::string STGC_LAYER_NAMES[STGC_LAYERS]={ + "Layer 1" +, "Layer 2" +, "Layer 3" +, "Layer 4" +}; + +static const std::string STGC_DETECTOR_NAMES[STGC_DETECTORS]={ + "STGC Detector 0" +, "STGC Detector 1" +, "STGC Detector 2" +, "STGC Detector 3" +}; + +static const std::string STGC_MODULE_NAMES[STGC_MODULES]={ + "STGC Module 1" +, "STGC Module 2" +, "STGC Module 3" +}; + +static const std::string PIVOT_CONFIRM_NAMES[STGC_WEDGES]={ + "Pivot" +, "Confirm" +}; + +static const std::string SECTOR_NAMES[SECTOR_TYPES]={ + "Small" +, "Large" +, "Toy" +}; + +static const std::string WEDGE_NAMES[STGC_TYPES]={ + "SmallPivot" +, "SmallConfirm" +, "LargePivot" +, "LargeConfirm" +, "ToyPivot" +, "ToyConfirm" +}; + +static const std::string SHORT_WEDGE_NAMES[STGC_TYPES]={ "SP" , "SC" + , "LP" , "LC" + , "TP" , "TC" }; +static const int MM_TYPE[SECTORS_IN_OCTANT][MM_MODULES]={ + { REGULAR , CORNERED , REGULAR , REGULAR } +, { REGULAR , REGULAR , REGULAR , EXTRUDED } +}; + +static const float MM_H0[SECTORS_IN_OCTANT][MM_MODULES]={ + { UNDEF , 1966.0, UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +}; + +static const float MM_H1[SECTORS_IN_OCTANT][MM_MODULES]={ + { 1016.0, 2056.3, 2816.0, 3666.0} +, { 982.0, 1932.0, 2882.0, 3832.0} +}; + +static const float MM_H2[SECTORS_IN_OCTANT][MM_MODULES]={ + { 1946.0, 2796.0, 3646.0, 4471.0} +, { 1912.0, 2862.0, 3812.0, 4287.0} +}; + +static const float MM_H3[SECTORS_IN_OCTANT][MM_MODULES]={ + { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , 4742.0} +}; + +static const float MM_D[SECTORS_IN_OCTANT][MM_MODULES]={ + { UNDEF , 1158.4, UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , UNDEF } +}; + +static const float MM_A[SECTORS_IN_OCTANT][MM_MODULES]={ + { 371.4, 1233.2, 1392.9, 1571.6} +, { 582.3, 1145.1, 1707.9, 2270.7} +}; + +static const float MM_B[SECTORS_IN_OCTANT][MM_MODULES]={ + { 1141.8, 1388.7, 1567.4, 1740.8} +, { 1133.3, 1696.1, 2258.9, 2540.3} +}; + +static const float MM_C[SECTORS_IN_OCTANT][MM_MODULES]={ + { UNDEF , UNDEF , UNDEF , UNDEF } +, { UNDEF , UNDEF , UNDEF , 2220.0} +}; + +static const float MM_ZMIN[SECTORS_IN_OCTANT] ={ 7104.5, 7528.5}; +static const float MM_ZMAX[SECTORS_IN_OCTANT] ={ 7394.5, 7818.5}; + +static const std::string MM_MODULE_NAMES[MM_MODULES]={ + "MM Module 1" +, "MM Module 2" +, "MM Module 3" +, "MM Module 4" +}; + +static const std::string MM_TYPE_NAMES[MM_TYPES]={ + "Regular" +, "Cornered" +, "Extruded" +}; + +static const float MDT_LOST = 72.0; +static const float MDT_ZMIN[SECTORS_IN_OCTANT] ={ 14458.0, 14049.0}; +static const float MDT_ZMAX[SECTORS_IN_OCTANT] ={ 14124.0, 13715.0}; + +static const float MDT_HMIN[SECTORS_IN_OCTANT][MDT_MODULES] ={ +{ 1770.0, 3725.0, 5680.0, 7635.0} +,{ 1770.0, 3485.0, 5440.0, 7395.0} +}; + +static const float MDT_HMAX[SECTORS_IN_OCTANT][MDT_MODULES] ={ +{ 3690.0, 5645.0, 7600.0, 9555.0} +,{ 3450.0, 5405.0, 7360.0, 9315.0} +}; + +static const float MDT_HALF_B[SECTORS_IN_OCTANT] ={ 417.5, 593.3}; +static const float MDT_HALF_OPENING[SECTORS_IN_OCTANT] ={ 8.5, 14.0}; + + + + +#endif diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/tdr_compat_enum.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/tdr_compat_enum.h index 6baa7f6bdcba54198687359cf307e23798059ff1..d5d0cf72d2af6e19a417e178f19838ee41ee247d 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/tdr_compat_enum.h +++ b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/tdr_compat_enum.h @@ -1,31 +1,25 @@ // -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #ifndef NSW_TDR_COMPAT_ENUM_H #define NSW_TDR_COMPAT_ENUM_H - +#include <vector> namespace NSWL1 { - /** - @defgroup tdr_compat_enum "enum values needed for compatibility with TDR code" - - In the TDR study we had several enum and constants (from - sTGCenumeration.h and sTGCgeometry.h). We got rid of most of - them, but we still need the ones below. - - Note that the enum values might have changed with the new AGDD geometry. - \todo check enum values DG-2015-10-07 (in particular 0->1 shifts) - */ const double c_inverse = 3.33564095198e-3; // unit here is [ns/mm] const float PI=3.14159265; const int STGC_LAYER_1=1, STGC_LAYER_2=2, STGC_LAYER_3=3, STGC_LAYER_4=4; const int SMALL_PIVOT=0, SMALL_CONFIRM=1, LARGE_PIVOT=2, LARGE_CONFIRM=3; const int MAXLAYERSHIT=4; enum SECTYPE{SMALL,LARGE}; + + const std::vector<size_t> SECTORS={0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; + const std::vector<size_t> SIDES={0,1}; + } #endif diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/vector_utils.h b/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/vector_utils.h deleted file mode 100644 index ba49761d3961ce0c77df5fe2510794130b352100..0000000000000000000000000000000000000000 --- a/Trigger/TrigT1/TrigT1NSWSimTools/TrigT1NSWSimTools/vector_utils.h +++ /dev/null @@ -1,38 +0,0 @@ -// -*- c++ -*- - -/* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration -*/ - -#ifndef NSW_VECTOR_UTILS_H -#define NSW_VECTOR_UTILS_H - -#include "TriggerTypes.h" - -#include <vector> - -/** - @brief vector to string utility functions for TDR study - - @author davide.gerbaudo@gmail.com - @date 2013 - */ -namespace NSWL1 { -std::string vec2str(const std::vector< size_t > &vec); -std::string vec2str(const std::vector<PadWithHits> &vec); - -/// given a vector, return something like range(len(vec)) -template <typename Container> -std::vector<size_t> indices(Container const & container) { - std::vector<size_t> idx(container.size(), 0); - size_t i=0; - while(i<container.size()){ - idx[i]= i; - i++; - } - return idx; -} - -} // nsw - -#endif diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/GeoUtils.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/GeoUtils.cxx index 83cc1208665d2b841ae766b1cbbc8a64289c850b..238784d50b9cadb796f6423031f07ce16995f4bd 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/GeoUtils.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/GeoUtils.cxx @@ -73,7 +73,7 @@ Vertex getVertex(const Polygon& p,unsigned int i){ } -Polygon buildPolygon(const Vertices pts){ +Polygon buildPolygon(const Vertices& pts){//hm Polygon shape; Vertices vts=pts; //to complete the loop... @@ -132,6 +132,23 @@ Polygon intersectionRegion(const std::vector<Polygon>& polygons){ +Polygon globalToLocal(const Polygon& pol,float z,const Trk::PlaneSurface & surf ){ + + Vertices local_vertices; + for(const auto& v : boost::geometry::exterior_ring(pol)){ + float x=coordinate<0>(v); + float y=coordinate<1>(v); + Amg::Vector2D local_corner; + surf.globalToLocal(Amg::Vector3D(x,y,z),Amg::Vector3D(),local_corner); + local_vertices.emplace_back(Vertex(local_corner.x(),local_corner.y())); + } + + return buildPolygon(local_vertices); + +} + + + Polygon NilPolygon(){ Vertices nil={ Vertex(0,0), diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/L1TdrStgcTriggerLogic.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/L1TdrStgcTriggerLogic.cxx index ed010f10ed867df06c824ff592db0cd9bd13a3d5..92f0c19d0bd5b859ad16c2f833fb5d58b3d052b0 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/L1TdrStgcTriggerLogic.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/L1TdrStgcTriggerLogic.cxx @@ -1,18 +1,16 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TrigT1NSWSimTools/L1TdrStgcTriggerLogic.h" -#include "TrigT1NSWSimTools/PadWithHits.h" #include "TrigT1NSWSimTools/SectorTriggerCandidate.h" #include "TrigT1NSWSimTools/SingleWedgePadTrigger.h" #include "TrigT1NSWSimTools/tdr_compat_enum.h" -#include "TrigT1NSWSimTools/vector_utils.h" #include "TrigT1NSWSimTools/GeoUtils.h" - +#include "TrigT1NSWSimTools/PadOfflineData.h" #include <fstream> #include <functional> -#include <numeric>//iota +#include <numeric> using std::distance; using std::set_intersection; @@ -24,28 +22,21 @@ namespace { namespace NSWL1{ - L1TdrStgcTriggerLogic::L1TdrStgcTriggerLogic(): - m_msg("L1TdrStgcTriggerLogic"), m_writePickle(false), m_picklePrefix("./"){ + L1TdrStgcTriggerLogic::L1TdrStgcTriggerLogic(): + m_msg("L1TdrStgcTriggerLogic"){ } //------------------------------------- L1TdrStgcTriggerLogic::~L1TdrStgcTriggerLogic() {} //------------------------------------- - bool L1TdrStgcTriggerLogic::hitPattern(const Pad &firstPad, const Pad &otherPad, + bool L1TdrStgcTriggerLogic::hitPattern(const std::shared_ptr<PadOfflineData> &firstPad, const std::shared_ptr<PadOfflineData> &otherPad, std::string &pattern) { - return L1TdrStgcTriggerLogic::hitPattern(firstPad.ieta, firstPad.iphi, otherPad.ieta, - otherPad.iphi, pattern); + return L1TdrStgcTriggerLogic::hitPattern(firstPad->padEtaId(), firstPad->padPhiId(), otherPad->padEtaId(), + otherPad->padPhiId(), pattern); } //------------------------------------- bool L1TdrStgcTriggerLogic::hitPattern(const int &iEta0, const int &iPhi0, const int &iEta1, const int &iPhi1, std::string &pattern) { - // A la ATL-MUON-INT-2014-003 =>> pattern = "33"; - // if(iPhi1 >= iPhi0 + 2 || iPhi1 < iPhi0) return false; - // if(iEta1 >= iEta0 + 2 || iEta1 < iEta0) return false; - // if(iPhi0 == iPhi1) pattern = (iEta0==iEta1 ? "11" : "21"); - // else pattern = (iEta0==iEta1 ? "12" : "22"); - // <<== A la ATL-MUON-INT-2014-003 - // New Logic - DeltaEtaDeltaPhi if (iEta1 >= iEta0 + 2 || iEta1 <= iEta0 - 2) return false; if (iPhi1 >= iPhi0 + 2 || iPhi1 <= iPhi0 - 2) @@ -70,7 +61,7 @@ namespace NSWL1{ //------------------------------------- //S.I : a method should not have so many arguments.. std::vector< SingleWedgePadTrigger > L1TdrStgcTriggerLogic::buildSingleWedgeTriggers( - const std::vector< PadWithHits > &pads, const std::vector< size_t > &padIndicesLayer0, + const std::vector< std::shared_ptr<PadOfflineData> > &pads, const std::vector< size_t > &padIndicesLayer0, const std::vector< size_t > &padIndicesLayer1, const std::vector< size_t > &padIndicesLayer2, const std::vector< size_t > &padIndicesLayer3, bool isLayer1, bool isLayer2, bool isLayer3, bool isLayer4) { @@ -98,7 +89,7 @@ namespace NSWL1{ const std::vector<std::string> PatternsPhiDownUp = sTGC_triggerPatternsPhiDownUp(); const std::vector<std::string> PatternsPhiUpDown = sTGC_triggerPatternsPhiUpDown(); - int iL1st = -1; // first layer index + int iL1st = -1; for (size_t il1 = 0; il1 < nHL1; il1++) { int l1Idx = -1; std::string sl1("33"); @@ -106,188 +97,64 @@ namespace NSWL1{ l1Idx = padIndicesLayer0.at(il1); sl1 = "11"; iL1st = l1Idx; - } // if l1 is considered its indices are always 11 + } for (size_t il2 = 0; il2 < nHL2; il2++) { - int l2Idx = -1; - std::string sl2("33"); - if (isLayer2) { - l2Idx = padIndicesLayer1.at(il2); - if (iL1st == -1) { - sl2 = "11"; - iL1st = l2Idx; - } // l1 was not considered, l2 gets the first indices - else if (!hitPattern(pads.at(iL1st), pads.at(l2Idx), sl2)) - continue; - } // end if(isLayer2) - for (size_t il3 = 0; il3 < nHL3; il3++) { - int l3Idx = -1; - std::string sl3("33"); - if (isLayer3) { - l3Idx = padIndicesLayer2.at(il3); - if (!hitPattern(pads.at(iL1st), pads.at(l3Idx), sl3)) - continue; - } - for (size_t il4 = 0; il4 < nHL4; il4++) { - int l4Idx = -1; - std::string sl4("33"); - if (isLayer4) { - l4Idx = padIndicesLayer3.at(il4); - if (!hitPattern(pads.at(iL1st), pads.at(l4Idx), sl4)) + int l2Idx = -1; + std::string sl2("33"); + if (isLayer2) { + l2Idx = padIndicesLayer1.at(il2); + if (iL1st == -1) { + sl2 = "11"; + iL1st = l2Idx; + } // l1 was not considered, l2 gets the first indices + else if (!hitPattern(pads.at(iL1st), pads.at(l2Idx), sl2)) continue; } - // checked all layers, now store the trigger if it's a valid pattern - - std::string pattern(sl4 + sl3 + sl2 + sl1); - // the above line is replaced by a normal order l1,l2,l3,l4 and - // separated in phi and eta but it remains the same for later usage in - // the trigger selection - // Hence the following is only for internal ease of calculation. The - // pattern to be passed is the "pattern" not "patternPhi" or - // "patternEta" - std::string patternPhi; - patternPhi.push_back(sl1.at(1)); - patternPhi.push_back(sl2.at(1)); - patternPhi.push_back(sl3.at(1)); - patternPhi.push_back(sl4.at(1)); - - std::string patternEta; - patternEta.push_back(sl1.at(0)); - patternEta.push_back(sl2.at(0)); - patternEta.push_back(sl3.at(0)); - patternEta.push_back(sl4.at(0)); - - int multipletid=-1 ; - int moduleid=-1 ; - int sectortype=-1 ; - -//Please mind the indentation - if (sl1 == "11") { - multipletid = pads.at(l1Idx).multiplet; - moduleid = pads.at(l1Idx).module; - sectortype = pads.at(l1Idx).sectortype; - - } else if (sl2 == "11") { - multipletid = pads.at(l2Idx).multiplet; - moduleid = pads.at(l2Idx).module; - sectortype = pads.at(l2Idx).sectortype; - - } - - std::string etamove, phimove; - if (sectortype == 1) { - if (multipletid == 1) { - - etamove = "D"; - phimove = "U"; - - if (moduleid == 2) { - etamove = "U"; - phimove = "U"; + for (size_t il3 = 0; il3 < nHL3; il3++) { + int l3Idx = -1; + std::string sl3("33"); + if (isLayer3) { + l3Idx = padIndicesLayer2.at(il3); + if (!hitPattern(pads.at(iL1st), pads.at(l3Idx), sl3)) + continue; } + for (size_t il4 = 0; il4 < nHL4; il4++) { + int l4Idx = -1; + std::string sl4("33"); + if (isLayer4) { + l4Idx = padIndicesLayer3.at(il4); + if (!hitPattern(pads.at(iL1st), pads.at(l4Idx), sl4)) + continue; + } + + std::string pattern(sl4 + sl3 + sl2 + sl1); + std::vector< size_t > padIndices; - } else { // multiplet = 2 15-7-18 YR - Confirm new geometry - - etamove = "U"; - phimove = "DU"; - } - - - } - - if (sectortype == 0) { - if (multipletid == 1) { // 15-7-18 YR - Confirm new geometry - if (moduleid == 1) { - etamove = "U"; - phimove = "DU"; - } - if (moduleid == 2) { - etamove = "D"; - phimove = "UD"; - } - if (moduleid == 3) { - etamove = "U"; - phimove = "UD"; - } - } else { // multiplet = 2 - if (moduleid == 1) { - etamove = "U"; - phimove = "D"; - } - else - { - etamove = "U"; - phimove = "U"; - } - } - } - - if (etamove == "D") { - if (find(PatternsEtaDown.begin(), PatternsEtaDown.end(), - patternEta) == PatternsEtaDown.end()) { - continue; - } - } - - if (etamove == "U") { - if (find(PatternsEtaUp.begin(), PatternsEtaUp.end(), - patternEta) == PatternsEtaUp.end()) { - continue; - } - } + if (isLayer1) { + assert(l1Idx > -1); + padIndices.push_back(l1Idx); + } + if (isLayer2) { + assert(l2Idx > -1); + padIndices.push_back(l2Idx); + } + if (isLayer3) { + assert(l3Idx > -1); + padIndices.push_back(l3Idx); + } + if (isLayer4) { + assert(l4Idx > -1); + padIndices.push_back(l4Idx); + } + triggers.push_back(SingleWedgePadTrigger(pattern, pads, padIndices)); - if (phimove == "U") { - if (find(PatternsPhiUp.begin(), PatternsPhiUp.end(), - patternPhi) == PatternsPhiUp.end()) { - continue; - } - } - if (phimove == "D") { - if (find(PatternsPhiDown.begin(), PatternsPhiDown.end(), - patternPhi) == PatternsPhiDown.end()) { - continue; - } - } - if (phimove == "UD") { - if (find(PatternsPhiUpDown.begin(), PatternsPhiUpDown.end(), - patternPhi) == PatternsPhiUpDown.end()) { - continue; - } - } - if (phimove == "DU") { - if (find(PatternsPhiDownUp.begin(), PatternsPhiDownUp.end(), - patternPhi) == PatternsPhiDownUp.end()) { - continue; + if (triggers.size() > 4) { + return triggers; + } } } - - std::vector< size_t > padIndices; - - if (isLayer1) { - assert(l1Idx > -1); - padIndices.push_back(l1Idx); - } - if (isLayer2) { - assert(l2Idx > -1); - padIndices.push_back(l2Idx); - } - if (isLayer3) { - assert(l3Idx > -1); - padIndices.push_back(l3Idx); - } - if (isLayer4) { - assert(l4Idx > -1); - padIndices.push_back(l4Idx); - } - triggers.push_back(SingleWedgePadTrigger(pattern, pads, padIndices)); - - if (triggers.size() > 4) { - return triggers; - } - ////////////////////////////////////////////////// - } // end for(il4) - } // end for(il3) - } // end for(il2) - } // end for(il1) + } + } return triggers; } @@ -295,15 +162,16 @@ namespace NSWL1{ //------------------------------------- std::vector< size_t > L1TdrStgcTriggerLogic::removeRandomPadIndices(const std::vector< size_t > &padIndices) { std::vector< size_t > out; + TRandom rand; out.reserve(padIndices.size()); for (size_t i = 0; i < padIndices.size(); ++i) { - if (m_rand.Uniform(1) < padTimingEfficiency) + if (rand.Uniform(1) < padTimingEfficiency) out.push_back(padIndices.at(i)); } return out; } //-------------------------------------Inner: - std::vector< SingleWedgePadTrigger > L1TdrStgcTriggerLogic::build34swt(const std::vector< PadWithHits > &pads, + std::vector< SingleWedgePadTrigger > L1TdrStgcTriggerLogic::build34swt(const std::vector< std::shared_ptr<PadOfflineData> > &pads, const std::vector< size_t > &iL0, const std::vector< size_t > &iL1, const std::vector< size_t > &iL2, @@ -320,7 +188,7 @@ namespace NSWL1{ triggers.insert(triggers.end(), trigNoL3.begin(), trigNoL3.end()); return triggers; } - std::vector< SingleWedgePadTrigger > L1TdrStgcTriggerLogic::build44swt(const std::vector< PadWithHits > &pads, + std::vector< SingleWedgePadTrigger > L1TdrStgcTriggerLogic::build44swt(const std::vector< std::shared_ptr<PadOfflineData> > &pads, const std::vector< size_t > &iL0, const std::vector< size_t > &iL1, const std::vector< size_t > &iL2, @@ -350,13 +218,13 @@ namespace NSWL1{ } }; - void remove3of4Redundant4of4(const std::vector< SingleWedgePadTrigger > &trigs4of4,std::vector< SingleWedgePadTrigger > &trigs3of4){ + void remove3of4Redundant4of4(const std::vector< SingleWedgePadTrigger > &trigs4of4,std::vector< SingleWedgePadTrigger > &trigs3of4){//haha :) for (std::vector< SingleWedgePadTrigger >::const_iterator t4 = trigs4of4.begin(); t4 != trigs4of4.end();++t4) { trigs3of4.erase(remove_if(trigs3of4.begin(), trigs3of4.end(),TrigIsSubsetOf(*t4)),trigs3of4.end()); } } //------------------------------------- - bool L1TdrStgcTriggerLogic::buildSectorTriggers(const std::vector< PadWithHits > &pads) { + bool L1TdrStgcTriggerLogic::buildSectorTriggers(const std::vector< std::shared_ptr<PadOfflineData> > &pads) { m_secTrigCand.clear(); std::vector< size_t > indicesSecN(pads.size()); @@ -381,10 +249,10 @@ namespace NSWL1{ remove3of4Redundant4of4(o4of4trig, o3of4trig); ATH_MSG_DEBUG("SingleWedge triggers :" - << " inner : " << i3of4trig.size() << "(3/4) " << i4of4trig.size() - << "(4/4)" - << " outer : " << o3of4trig.size() << "(3/4) " << o4of4trig.size() - << "(4/4)"); + << " inner : " << i3of4trig.size() << "(3/4) " << i4of4trig.size() + << "(4/4)" + << " outer : " << o3of4trig.size() << "(3/4) " << o4of4trig.size() + << "(4/4)" ); std::vector< SingleWedgePadTrigger > innerTrigs, outerTrigs; // merge 4/4 and 3/4 innerTrigs.insert(innerTrigs.end(), i3of4trig.begin(), i3of4trig.end()); @@ -410,13 +278,15 @@ namespace NSWL1{ Polygon innerArea=SingleWedgePadTrigger::padOverlap3(it.pads()); Polygon outerArea=SingleWedgePadTrigger::padOverlap3(ot.pads()); - float Z1=ot.pads().at(0).m_cornerXyz[1][2]; - float Z0=it.pads().at(0).m_cornerXyz[1][2]; + float Z1=ot.pads().at(0)->m_cornerXyz[1][2]; + float Z0=it.pads().at(0)->m_cornerXyz[1][2]; Polygon inoutovl=largestIntersection(innerArea,Project(outerArea,Z1,Z0)); + float overlap=area(inoutovl); - ATH_MSG_DEBUG("OVERLAP "<<overlap<<" Inner "<<area(innerArea)<<" Outer "<<area(outerArea)); + if (overlap >0) { + ATH_MSG_DEBUG("OVERLAP "<<overlap<<" Inner "<<area(innerArea)<<" Outer "<<area(outerArea)); m_secTrigCand.emplace_back(it.setCombined(), ot.setCombined()); } } // end for(ot) @@ -427,7 +297,7 @@ namespace NSWL1{ if (acceptSingleWedgeInTransition) { for ( auto& it : innerTrigs){ if (it.alreadyCombined()){ - ATH_MSG_DEBUG("Inner SingleWedge trigger already combined, skipping"); + ATH_MSG_DEBUG("Inner SingleWedge trigger already combined, skipping"); continue; } else if (it.is4outOf4Layers() && it.isInTransitionRegion()){ @@ -436,7 +306,7 @@ namespace NSWL1{ } for ( auto& ot : outerTrigs) { if (ot.alreadyCombined()){ - ATH_MSG_DEBUG("Outer SingleWedge trigger already combined, skipping"); + ATH_MSG_DEBUG("Outer SingleWedge trigger already combined, skipping"); continue; } else if (ot.is4outOf4Layers() && ot.isInTransitionRegion()){ @@ -447,26 +317,10 @@ namespace NSWL1{ } // if(not skipInnerOuterMatchHack) //m_secTrigCand = trigCandidates; - ATH_MSG_DEBUG("found " << m_secTrigCand.size() << " triggerCandidates from "<< pads.size() << " pads"); + ATH_MSG_DEBUG("found " << m_secTrigCand.size() << " triggerCandidates from "<< pads.size() << " pads"); for (const auto& tc : m_secTrigCand) { - ATH_MSG_DEBUG("trigger region area : " << area(tc.triggerRegion3())); + ATH_MSG_DEBUG("trigger region area : " << area(tc.triggerRegion3())); } - - if (m_writePickle) { - if (m_secTrigCand.size() > 0) { - int sector = m_secTrigCand.at(0).wedgeTrigs().at(0).pads().at(0).sector; - char buf[1024] = ""; - sprintf(buf, "%s/sector%02d.txt", m_picklePrefix.c_str(), sector); - std::ofstream fileDump; - fileDump.open(buf); - fileDump << "["; - for (size_t i = 0; i < m_secTrigCand.size(); ++i){ - fileDump << "{" << m_secTrigCand.at(i).pickle() << "},\n"; - } - fileDump << "]"; - fileDump.close(); - } - } // if(m_writePickle) return (m_secTrigCand.size() > 0); } @@ -579,5 +433,34 @@ namespace NSWL1{ return patterns; } + //orphant functions .. mut be members TrigT1NSWSimTools or move into a separate file. + //------------------------------------- + std::vector<size_t> L1TdrStgcTriggerLogic::filterByLayer(const std::vector<std::shared_ptr<PadOfflineData>> &pads, + const std::vector<size_t> &padSelectedIndices, + int layer) + { + std::vector<size_t> indices; + for(size_t i=0; i<padSelectedIndices.size(); i++){ + const size_t &idx=padSelectedIndices[i]; + if(layer==pads[idx]->gasGapId()) indices.push_back(idx); + } + return indices; + } + + std::vector<size_t> L1TdrStgcTriggerLogic::filterByMultiplet(const std::vector<std::shared_ptr<PadOfflineData>> &pads, + const std::vector<size_t> &padSelectedIndices, + int multiplet) + { + std::vector<size_t> indices; + for(size_t i=0; i<padSelectedIndices.size(); i++){ + const size_t &idx=padSelectedIndices[i]; + if(multiplet==pads[idx]->multipletId()) indices.push_back(idx); + } + return indices; + } + //------------------------------------- + + + } diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMCandidateData.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMCandidateData.cxx index 990cec397894552cefb6e0cfb050d06dfcbd2a8e..8c64121ecede6b96b19b28c2803ff1ee2d16e315 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMCandidateData.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMCandidateData.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMCandidateOfflineData.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMCandidateOfflineData.cxx index e0c9f346d0f7943a2b83050213eaab3296df316d..8cb751ec312ae1681df2190ca0503b182ebb2e3a 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMCandidateOfflineData.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMCandidateOfflineData.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMFPGAOfflineTool.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMFPGAOfflineTool.cxx index 5d77ca3a2252e719009730bd9f907f62eb273f2c..9580570a76283337ffbd831f2baaef0cbbac96d2 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMFPGAOfflineTool.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMFPGAOfflineTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Athena/Gaudi includes diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMLoadVariables.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMLoadVariables.cxx index fd954e9853e737ef0314b0e36d310d124403dec3..227925efbc055d92f2e222529eefbc0270a1f3e4 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMLoadVariables.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMLoadVariables.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // local includes diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMStripData.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMStripData.cxx index 06f241996a4028de47587d8daa4b4806f71d623d..35a6d5c3f2ee97bf8a1f11c6b10cff4dce32729e 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMStripData.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMStripData.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMStripOfflineData.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMStripOfflineData.cxx index 95ccbb6ebba339ad0dd0c91a6e3ead47e359537a..4f4db6dcf11bfe6a8386700741bf1e8524f1e11d 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMStripOfflineData.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMStripOfflineData.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMT_Finder.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMT_Finder.cxx index 07004328dbd579e31d46babdd293699de9ef339e..75988965df3ef98c79fd574a6b1374210c80614f 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMT_Finder.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMT_Finder.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TrigT1NSWSimTools/MMT_Finder.h" diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMT_Fitter.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMT_Fitter.cxx index 4ee10e3eabed16cb4716ee023b046df0d6daabc6..0bd05d484b96e2cc694cdd11537cf7d86347449d 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMT_Fitter.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMT_Fitter.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Athena/Gaudi includes diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMT_struct.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMT_struct.cxx index 295206603968781a3e41e8711810e2766f09f504..9b711d7d1c2713ef6b88a715b1bf71703c007742 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMT_struct.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMT_struct.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TrigT1NSWSimTools/MMT_struct.h" diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMTriggerTool.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMTriggerTool.cxx index 445fcdca74cc0075298d861a193dc1274897e28d..d3570eecf79326c5b999781fc24915c6109d0cf8 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMTriggerTool.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMTriggerTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // local includes diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMTriggerToolTree.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMTriggerToolTree.cxx index e1ff94985271d0f54df1d1bf00ed596aa8b75091..f73944bda9cf5c196bb8102bd42bac891adcf3df 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/MMTriggerToolTree.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/MMTriggerToolTree.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Athena/Gaudi includes diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/PadData.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/PadData.cxx index 5594cb6c6fb7a858a00062df54f12bd83c073fc4..e18847ef90c30c49409e27ee0647000115fc0aa3 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/PadData.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/PadData.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/PadOfflineData.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/PadOfflineData.cxx index 2afe0d745152379afc0b83c8458d14e6427eb7b8..57fb46d106e1243ad761f0f2d21bc777bf78cbc8 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/PadOfflineData.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/PadOfflineData.cxx @@ -1,11 +1,15 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Local includes #include "TrigT1NSWSimTools/PadOfflineData.h" #include "TrigT1NSWSimTools/sTGCenumeration.h" +#include "TrkSurfaces/PlaneSurface.h" +#include "MuonReadoutGeometry/sTgcReadoutElement.h" + +#include "TVector3.h" #include <string> @@ -20,9 +24,10 @@ namespace NSWL1 { PadOfflineData::~PadOfflineData() { // PaddOfflineData doesn't own the helper, so nothing to do here } - + //! methods for retrieving the bare data uint32_t PadOfflineData::id() const { return m_id.get_identifier32().get_compact(); } + Identifier PadOfflineData::Identity() const {return m_id;} uint16_t PadOfflineData::BC_Tag() const { return m_bc_tag; } float PadOfflineData::time() const { return m_time; } diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTdsOfflineTool.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTdsOfflineTool.cxx index 65067f82af09ec7ce456fd91b1ea5ef7192134e5..11ca060a0de5a0cfa0026ad4eba6b90a6f6a2574 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTdsOfflineTool.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTdsOfflineTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Athena/Gaudi includes @@ -8,17 +8,13 @@ #include "AGDDKernel/AGDDDetector.h" #include "AGDDKernel/AGDDDetectorStore.h" - #include "TrigT1NSWSimTools/PadTdsOfflineTool.h" #include "TrigT1NSWSimTools/PadOfflineData.h" -#include "TrigT1NSWSimTools/PadUtil.h" #include "TrigT1NSWSimTools/tdr_compat_enum.h" - #include "EventInfo/EventInfo.h" #include "EventInfo/EventID.h" - #include "MuonReadoutGeometry/MuonDetectorManager.h" #include "MuonReadoutGeometry/sTgcReadoutElement.h" #include "MuonIdHelpers/sTgcIdHelper.h" @@ -27,17 +23,20 @@ #include "MuonSimData/MuonSimDataCollection.h" #include "MuonSimData/MuonSimData.h" - #include "AthenaKernel/IAtRndmGenSvc.h" #include "CLHEP/Random/RandFlat.h" #include "CLHEP/Random/RandGauss.h" #include "TTree.h" +#include "TVector3.h" +#include <functional> +#include <algorithm> #include <map> #include <utility> + namespace NSWL1 { struct PadHits { @@ -45,7 +44,6 @@ namespace NSWL1 { std::shared_ptr<PadOfflineData> t_pad; int t_cache_index; - // constructor PadHits(Identifier id, std::shared_ptr<PadOfflineData> p, int c) { t_id = id; t_pad=p; t_cache_index=c; } }; @@ -239,13 +237,6 @@ namespace NSWL1 { PadOfflineData* pad_offline = dynamic_cast<PadOfflineData*>( pd.get() ); m_validation_tree.fill_hit_global_pos(pad_gpos); m_validation_tree.fill_offlineid_info(*pad_offline, bin_offset); - - std::pair<int,int> old_id(-999, -999), new_id(-999, -999); - if(determine_pad_indices_with_old_algo(*pad_offline, pad_gpos, old_id, msg())) { - old_id = std::make_pair(old_id.first + bin_offset, old_id.second + bin_offset); - new_id = std::make_pair(pd->padEtaId() + bin_offset, pd->padPhiId() + bin_offset); - } - m_validation_tree.fill_matched_old_id_new_id(old_id, new_id); } } } @@ -329,23 +320,13 @@ namespace NSWL1 { sTgcDigitContainer::const_iterator it_e = digit_container->end(); ATH_MSG_DEBUG("retrieved sTGC Digit Container with size "<<digit_container->digit_size()); + //int pad_hit_number = 0; std::vector<PadHits> pad_hits; for(; it!=it_e; ++it) { const sTgcDigitCollection* coll = *it; ATH_MSG_DEBUG( "processing collection with size " << coll->size() ); for (unsigned int item=0; item<coll->size(); item++) { const sTgcDigit* digit = coll->at(item); - ////////////////////////////////////////////////////////////////////////////////////////// - // ASM - 01/3/2017 - testing timing - //pad_hit_number++; - //print_digit(digit); - //double delayed_time = 0.0; - //uint16_t BCtag = 0x0; - //if(determine_delay_and_bc(digit, pad_hit_number, delayed_time, BCtag)){ - // Identifier Id = digit->identify(); - // PadOfflineData* pad = new PadOfflineData(Id, delayed_time, BCtag, m_sTgcIdHelper); - // pad_hits.push_back(PadHits(Id, pad, cache_index(digit))); - //} if(digit) { if(is_pad_digit(digit)) { Identifier Id = digit->identify(); @@ -353,23 +334,19 @@ namespace NSWL1 { uint16_t BCP1 = 1, BC0 = 0, BCM1 = ~BCP1; if(digit->bcTag()==BCM1 || digit->bcTag()==BC0 || digit->bcTag()==BCP1) { print_digit(digit); + //PadOfflineData* pad = new PadOfflineData(Id, digit->time(), digit->bcTag(), m_sTgcIdHelper); + //S.I + //std::shared_ptr<PadOfflineData> pad(new PadOfflineData(Id, digit->time(), digit->bcTag(), m_sTgcIdHelper)); auto pad=std::make_shared<PadOfflineData>(Id, digit->time(), digit->bcTag(), m_sTgcIdHelper); + //pad_hits.push_back(PadHits(Id, pad, cache_index(digit))); pad_hits.emplace_back(Id, pad, cache_index(digit));//avoids extra copy + //S.I } } } - ////////////////////////////////////////////////////////////////////////////////////////// } //for(item) } // for(it) - //////////////////////////////////////////////////////////////////////////////////////////// - //// ASM - 01/3/2017 - testing timing - ////// apply the other VMM functionalities - //print_pad_time(pad_hits, "Before VMM dead time"); - //if(m_applyVMM_DeadTime) simulateDeadTime(pad_hits); - //print_pad_time(pad_hits, "After VMM dead time"); - //////////////////////////////////////////////////////////////////////////////////////////// - store_pads(pad_hits); print_pad_cache(); this->fill_pad_validation_id(); @@ -414,7 +391,6 @@ namespace NSWL1 { // vector are already ordered in time so check for dead time overlap. PAD_MAP_IT it = channel_map.begin(); while ( it!=channel_map.end() ) { - std::vector<PadHits>& hits = (*it).second; std::vector<PadHits>::iterator p_next = hits.begin(); std::vector<PadHits>::iterator p = p_next++; @@ -570,8 +546,6 @@ namespace NSWL1 { void PadTdsOfflineTool::store_pads(const std::vector<PadHits> &pad_hits) { for (unsigned int i=0; i<pad_hits.size(); i++) { - //////////////////// - // ASM-2017-06-21 const std::vector<std::shared_ptr<PadData>>& pads = m_pad_cache.at(pad_hits[i].t_cache_index); bool fill = pads.size() == 0 ? true : false; for(unsigned int p=0; p<pads.size(); p++) { @@ -585,7 +559,6 @@ namespace NSWL1 { if( fill ) { m_pad_cache.at(pad_hits[i].t_cache_index).push_back(pad_hits[i].t_pad); } - //////////////////// } } //------------------------------------------------------------------------------ @@ -624,7 +597,7 @@ namespace NSWL1 { for (size_t i=0; i<pad_hits.size(); i++) ATH_MSG_DEBUG("pad hit "<<i<<" has time "<< pad_hits[i].t_pad->time()); } - //------------------------------------------------------------------------------ + void PadTdsOfflineTool::print_pad_cache() const { if ( msgLvl(MSG::DEBUG) ) { @@ -641,6 +614,5 @@ namespace NSWL1 { } } } - //------------------------------------------------------------------------------ } // NSWL1 diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTdsValidationTree.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTdsValidationTree.cxx index 10114234eb1ca9db1002f73768c74034b9ec1e47..204330c60501c884cd5bfd76073bb41a7c8f1f58 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTdsValidationTree.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTdsValidationTree.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TrigT1NSWSimTools/PadTdsValidationTree.h" diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTrigger.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTrigger.cxx index 47430112d76f5ef0b8f03b9ea2e322ab1f629b62..7f5a919fe445ffc463ec6d81ee9b1fb58ca809b5 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTrigger.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTrigger.cxx @@ -1,11 +1,12 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TrigT1NSWSimTools/PadTrigger.h" #include "TrigT1NSWSimTools/SectorTriggerCandidate.h" #include "TrigT1NSWSimTools/PadData.h" +#include <iostream> #include "TrigT1NSWSimTools/tdr_compat_enum.h" namespace NSWL1 { @@ -13,12 +14,10 @@ uint16_t PadTrigger::bctag() const { return m_pads.size() ? m_pads[0]->BC_Tag() : 0x0; } -// Side ID int PadTrigger::sideId() const { return m_pads.size() ? m_pads[0]->sideId() : -1; } -// Sector ID int PadTrigger::sectorId() const { return m_pads.size() ? m_pads[0]->sectorId() : -1; } diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTriggerLogicOfflineTool.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTriggerLogicOfflineTool.cxx index 29de0618e56648fd0c38d87db40b2b91f58f3125..a8155355bad3986f6a867548def6a0679f6833d5 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTriggerLogicOfflineTool.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTriggerLogicOfflineTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include <boost/geometry.hpp> @@ -12,13 +12,11 @@ // local includes #include "TrigT1NSWSimTools/PadTriggerLogicOfflineTool.h" #include "TrigT1NSWSimTools/PadData.h" +#include "TrigT1NSWSimTools/PadOfflineData.h" #include "TrigT1NSWSimTools/PadTrigger.h" -#include "TrigT1NSWSimTools/PadWithHits.h" #include "TrigT1NSWSimTools/SectorTriggerCandidate.h" #include "TrigT1NSWSimTools/SingleWedgePadTrigger.h" - -#include "TrigT1NSWSimTools/vector_utils.h" - +#include "TrigT1NSWSimTools/tdr_compat_enum.h" //Event info includes #include "EventInfo/EventInfo.h" #include "EventInfo/EventID.h" @@ -26,20 +24,30 @@ // Muon software includes #include "MuonReadoutGeometry/MuonDetectorManager.h" #include "MuonReadoutGeometry/sTgcReadoutElement.h" +#include "MuonIdHelpers/sTgcIdHelper.h" +#include "MuonDigitContainer/sTgcDigitContainer.h" +#include "MuonDigitContainer/sTgcDigit.h" +#include "MuonSimData/MuonSimDataCollection.h" +#include "MuonSimData/MuonSimData.h" #include "MuonAGDDDescription/sTGCDetectorDescription.h" #include "MuonAGDDDescription/sTGCDetectorHelper.h" // trk #include "TrkSurfaces/PlaneSurface.h" #include "TrkSurfaces/TrapezoidBounds.h" -// local includes -#include "TrigT1NSWSimTools/PadUtil.h" -#include "TrigT1NSWSimTools/vector_utils.h" +// random numbers +#include "AthenaKernel/IAtRndmGenSvc.h" +#include "CLHEP/Random/RandFlat.h" +#include "CLHEP/Random/RandGauss.h" + // root #include "TTree.h" #include "TVector3.h" // std +#include <functional> +#include <algorithm> +#include <map> #include <utility> // make_pair @@ -53,31 +61,28 @@ PadTriggerLogicOfflineTool::PadTriggerLogicOfflineTool( const std::string& type, m_detManager(0), m_pad_cache_runNumber(-1), m_pad_cache_eventNumber(-1), + m_rndmEngineName(""), + m_sTgcDigitContainer(""), + m_sTgcSdoContainer(""), m_PadEfficiency(0.0), m_useSimple4of4(false), m_doNtuple(false), - m_missingDetectorManagerErrorCounter(0), - m_missingReadoutElementErrorCounter(0), m_tdrLogic() { declareInterface<NSWL1::IPadTriggerLogicTool>(this); declareProperty("TimeJitter", m_PadEfficiency = 1.0, "pad trigger efficiency (tmp placeholder)"); declareProperty("UseSimple4of4", m_useSimple4of4 = false, "use simplified logic requiring 4 hits on 4 gas gaps"); declareProperty("DoNtuple", m_doNtuple = false, "save the trigger outputs in an analysis ntuple"); - - // DG-todo // reserve enough slots for the trigger sectors and fills empty vectors - // DG-todo m_pad_cache.reserve(32); - // DG-todo std::vector< std::vector<PadData*> >::iterator it = m_pad_cache.begin(); - // DG-todo m_pad_cache.insert(it,32,std::vector<PadData*>()); } //------------------------------------------------------------------------------ PadTriggerLogicOfflineTool::~PadTriggerLogicOfflineTool() { + } StatusCode PadTriggerLogicOfflineTool::initialize() { ATH_MSG_INFO( "initializing " << name() ); ATH_MSG_INFO( name() << " configuration:"); - // DG-todo print out other parameters + const IInterface* parent = this->parent(); const INamedInterface* pnamed = dynamic_cast<const INamedInterface*>(parent); @@ -99,6 +104,8 @@ StatusCode PadTriggerLogicOfflineTool::initialize() { } m_incidentSvc->addListener(this,IncidentType::BeginEvent); + + // retrieve the MuonDetectormanager if( detStore()->retrieve( m_detManager ).isFailure() ) { ATH_MSG_FATAL("Failed to retrieve the MuonDetectorManager"); @@ -113,10 +120,32 @@ StatusCode PadTriggerLogicOfflineTool::initialize() { //------------------------------------------------------------------------------ void PadTriggerLogicOfflineTool::handle(const Incident& inc) { if( inc.type()==IncidentType::BeginEvent ) { + // this->clear_cache(); m_validation_tree.reset_ntuple_variables(); + // m_pad_cache_status = CLEARED; } } + +void PadTriggerLogicOfflineTool::fillGeometricInformation(const std::shared_ptr<PadOfflineData>& pod){ + + const MuonGM::sTgcReadoutElement* rdoEl = m_detManager->getsTgcReadoutElement(pod->Identity()); + const Trk::PlaneSurface &surface = rdoEl->surface(pod->Identity()); + std::vector<Amg::Vector2D> local_pad_corners; + //From MuonPadDesign... read pad local corners + rdoEl->padCorners(pod->Identity(),local_pad_corners); + Amg::Vector3D pad_corner_global; + for(unsigned int i=0; i<4; i++) { + surface.localToGlobal(local_pad_corners.at(i), pad_corner_global, pad_corner_global); + pod->m_cornerXyz[i][0] = pad_corner_global.x(); + pod->m_cornerXyz[i][1] = pad_corner_global.y(); + pod->m_cornerXyz[i][2] = pad_corner_global.z(); + } +} + + + + ///! helper function: copy pads with a given multiplet std::vector<std::shared_ptr<PadData>> filterByMultiplet(const std::vector<std::shared_ptr<PadData>> &pads_in, const int &multiplet) { std::vector<std::shared_ptr<PadData>> pads_out; @@ -137,28 +166,24 @@ std::vector<std::shared_ptr<PadData>> filterByGasGap(const std::vector<std::shar } std::vector<std::unique_ptr<PadTrigger>> PadTriggerLogicOfflineTool::build4of4SingleWedgeTriggers(const std::vector<std::shared_ptr<PadData>> &pads) { - // dummy function: just count four pads on 4 different layers with ieta, iphi == i or i+1 - std::vector<std::shared_ptr<PadData>> padsLayer0 = filterByGasGap(pads, 1); - std::vector<std::shared_ptr<PadData>> padsLayer1 = filterByGasGap(pads, 2); - std::vector<std::shared_ptr<PadData>> padsLayer2 = filterByGasGap(pads, 3); - std::vector<std::shared_ptr<PadData>> padsLayer3 = filterByGasGap(pads, 4); + std::vector<std::unique_ptr<PadTrigger>> triggers; - for(auto p0 : padsLayer0){ + for(auto p0 : filterByGasGap(pads, 1)){ int p0ieta = p0->padEtaId(); int p0iphi = p0->padPhiId(); - for(auto p1 : padsLayer1){ + for(auto p1 : filterByGasGap(pads, 2)){ int p1ieta = p1->padEtaId(); int p1iphi = p1->padPhiId(); bool p0_p1_match = ((p1ieta == p0ieta || p1ieta == p0ieta+1 ) && (p1iphi == p0iphi || p1iphi == p0iphi+1 ) ); if(not p0_p1_match) continue; - for(auto p2 : padsLayer2){ + for(auto p2 :filterByGasGap(pads, 3) ){ int p2ieta = p2->padEtaId(); int p2iphi = p2->padPhiId(); bool p1_p2_match = ((p2ieta == p1ieta || p2ieta == p1ieta+1 ) && (p2iphi == p1iphi || p2iphi == p1iphi+1 ) ); if(not p1_p2_match) continue; - for(auto p3 : padsLayer3){ + for(auto p3 : filterByGasGap(pads, 4)){ int p3ieta = p3->padEtaId(); int p3iphi = p3->padPhiId(); bool p2_p3_match = ((p3ieta == p2ieta || p3ieta == p2ieta+1 ) && @@ -178,6 +203,7 @@ std::vector<std::unique_ptr<PadTrigger>> PadTriggerLogicOfflineTool::build4of4Si return triggers; } + StatusCode PadTriggerLogicOfflineTool::compute_pad_triggers(const std::vector<std::shared_ptr<PadData>>& pads, std::vector<std::unique_ptr<PadTrigger>> &triggers) { @@ -194,10 +220,8 @@ StatusCode PadTriggerLogicOfflineTool::compute_pad_triggers(const std::vector<st <<", pad eta "<<pad->padEtaId() <<", pad phi "<<pad->padPhiId()); } - const std::vector<size_t> sides = {0, 1}; // see PadTdsOfflineTool::sideLabel() - const std::vector<size_t> sectors = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; - for(const size_t &side : sides){ - for(const size_t §or : sectors){ + for(const size_t &side : SIDES){ + for(const size_t §or : SECTORS){ std::vector<std::shared_ptr<PadData>> sector_pads; copy_if(pads.begin(), pads.end(), back_inserter(sector_pads), @@ -226,18 +250,20 @@ StatusCode PadTriggerLogicOfflineTool::compute_pad_triggers(const std::vector<st triggers.insert(triggers.end(),std::make_move_iterator(triggersOuter.begin()),std::make_move_iterator(triggersOuter.end())); } else { - std::vector<PadWithHits> pwhs; + std::vector<std::shared_ptr<PadOfflineData>> trgpads; for(const auto& p : sector_pads){ - PadWithHits pwh(p); - fillGeometricInformation(*p,pwh); - pwhs.push_back(pwh); + auto pod=std::dynamic_pointer_cast<PadOfflineData> (p); + fillGeometricInformation(pod); + trgpads.push_back(pod); } - m_tdrLogic.buildSectorTriggers(pwhs); - for( const SectorTriggerCandidate &st : m_tdrLogic.candidates()){ - //S.I + m_tdrLogic.buildSectorTriggers(trgpads); + int index=0; + for( const auto& st : m_tdrLogic.candidates()){ auto p=std::make_unique<PadTrigger>(convert(st)); + p->m_triggerindex=index; + if (p->m_pads.size()==0) continue;//dont record null triggers (rejected or empty) triggers.push_back(std::move(p)); - //S.I + index++; } ATH_MSG_DEBUG("found "<<m_tdrLogic.candidates().size()<<" triggers using the tdr logic"); } @@ -268,77 +294,61 @@ TTree* PadTriggerLogicOfflineTool::get_tree_from_histsvc() } return tree; } -//------------------------------------------------------------------------------ -bool PadTriggerLogicOfflineTool::fillGeometricInformation(const PadData &pd, PadWithHits &pwh) -{ - bool success = false; - const int maxNumberOfMessages = 100; - if(m_detManager){ - Identifier Id( pd.id() ); - if(const MuonGM::sTgcReadoutElement* rdoEl = m_detManager->getsTgcReadoutElement(Id)){ - ///////// << == NEW - ASM-2016-04-25 - const Trk::PlaneSurface &surface = rdoEl->surface(Id); - std::vector<Amg::Vector2D> local_pad_corners; - //From MuonPadDesign... read pad local corners - rdoEl->padCorners(Id,local_pad_corners); - Amg::Vector3D pad_corner_global; - float corner_positions[4][3] = {{0.}}; - for(unsigned int i=0; i<4; i++) { - surface.localToGlobal(local_pad_corners.at(i), pad_corner_global, pad_corner_global); - corner_positions[i][0] = pad_corner_global.x(); - corner_positions[i][1] = pad_corner_global.y(); - corner_positions[i][2] = pad_corner_global.z(); - } - pwh.fillCornerCoords(corner_positions); - } else { - if(m_missingReadoutElementErrorCounter < maxNumberOfMessages) - ATH_MSG_ERROR("fillGeometricInformation: missing detManager " - <<m_missingReadoutElementErrorCounter<<"/"<<maxNumberOfMessages); - m_missingReadoutElementErrorCounter++; - } - } else { - if(m_missingDetectorManagerErrorCounter < maxNumberOfMessages) - ATH_MSG_ERROR("fillGeometricInformation: missing detManager " - <<m_missingDetectorManagerErrorCounter<<"/"<<maxNumberOfMessages); - m_missingDetectorManagerErrorCounter++; - } - return success; -} -//------------------------------------------------------------------------------ -int PadTriggerLogicOfflineTool::Pad2BandId(const PadWithHits &p, const float Yfrac){ - const static int offset[2][2][3][4] ={1,1,0,0, 35,35,36,36, 67,67,66,66, 0,0,-1,-1, 34,34,33,33, 64,64,63,63 , 0,0,1,1, 33,33,33,33, 62,62,63,62, 0,0,-1,-1, 33,33,32,32, 61,61,60,60 }; //type,mult,module,layer - int bandid = (Yfrac < 0.5) ? p.ieta*2-1 : p.ieta*2 ; - bandid+=offset[p.sectortype][p.multiplet-1][p.module-1][p.layer-1]; - return bandid; -} + + //------------------------------------------------------------------------------ -NSWL1::PadTrigger PadTriggerLogicOfflineTool::convert(const SectorTriggerCandidate &t){ - //S.I 15.08.18 : This method probably needs to be refactored - PadTrigger pt; +NSWL1::PadTrigger PadTriggerLogicOfflineTool::convert(const SectorTriggerCandidate &stc){ + //check if [b0,b1] is within [a0,a1] + static auto within=[](const auto& a0,const auto& a1,const auto& b0,const auto& b1,const auto& tol){ + if(a0<=b0 && a1>=b1) return true; + + if(b0<a0 && b1<a1){ + if(fabs(b0-a0)<tol){ + return true; + } + } + if(b0<a0 && b1>a1){ + if(fabs(b0-a0)<tol && fabs(b1-a1)<tol){ + return true; + } + } + + if(b1>a1 && a0<b0){ + if(fabs(b1-a1)<tol) return true; + } + + if(b1>a1 && b0>a0){ + if(fabs(b1-a1)<tol && fabs(b0-a0)<tol) return true; + } + return false; + }; - const Polygon roi=t.triggerRegion3(); + + PadTrigger pt; + const Polygon roi=stc.triggerRegion3(); Vertex trgCntr=centroid(roi); - SingleWedgePadTrigger swtrg = t.wedgeTrigs()[0]; + SingleWedgePadTrigger innertrg = stc.wedgeTrigs().at(0); //*********** assign central etaphi cordinates of the triggering region ***************** const float xcntr=coordinate<0>(trgCntr); const float ycntr=coordinate<1>(trgCntr); - const float zcntr=swtrg.pads()[0].m_cornerXyz[1][2]; + const float zcntr=innertrg.pads().at(0)->m_cornerXyz[1][2]; TVector3 trigVector(xcntr,ycntr,zcntr); const float etaTrig=trigVector.Eta(); const float phiTrig=trigVector.Phi(); pt.m_eta = etaTrig; pt.m_phi = phiTrig; //************************************************************************************** + auto pad0=innertrg.pads().at(0); + + pt.m_multiplet_id = pad0->multipletId(); + pt.m_eta_id = innertrg.halfPadCoordinates().ieta;//this is meaningless and shoiuld be removed + pt.m_phi_id = innertrg.halfPadCoordinates().iphi;//This is the PHI-ID of the trigger + pt.m_isSmall= int(innertrg.isSmallSector()); - //S.I 13.08.18 : Still BandID issues ?? Are we still to use halfPadCoordinates ??? - pt.m_bandid = swtrg.halfPadCoordinates().ieta; - pt.m_eta_id = swtrg.halfPadCoordinates().ieta; - pt.m_phi_id = swtrg.halfPadCoordinates().iphi; - pt.m_isSmall= int(swtrg.isSmallSector()); //************** assign extrema of the trigger region coordinates in eta-phi ************** std::vector<std::pair<float,float>> trg_etaphis; for(auto v : boost::geometry::exterior_ring(roi)){ @@ -355,29 +365,58 @@ NSWL1::PadTrigger PadTriggerLogicOfflineTool::convert(const SectorTriggerCandida pt.m_etamax=(trg_etaminmax.second)->first; pt.m_phimin=(trg_phiminmax.first)->second; pt.m_phimax=(trg_phiminmax.second)->second; + + pt.m_moduleIdInner=-1; + pt.m_moduleIdOuter=-1; + + if(stc.wedgeTrigs().size()==2){//double wedge trigger + pt.m_moduleIdInner=stc.wedgeTrigs().at(0).pads().at(0)->moduleId(); + pt.m_moduleIdOuter=stc.wedgeTrigs().at(1).pads().at(1)->moduleId(); + } + else{//single wedge trigger + //if the first one is inner set m_moduleIdInner + int multId0=stc.wedgeTrigs().at(0).pads().at(0)->multipletId(); + if( multId0==1){ + pt.m_moduleIdInner=stc.wedgeTrigs().at(0).pads().at(0)->moduleId(); + } + //if the first one is outer set m_moduleIdOuter + else{ + pt.m_moduleIdOuter=stc.wedgeTrigs().at(0).pads().at(0)->moduleId(); + } + //one of the module Ids remain as -1; + } + //**************************************************************************************** //S.I value of Z where trigger region is calculated. //from Z0 --> <Z of a pad> --->local coordinate - for(const SingleWedgePadTrigger& swt : t.wedgeTrigs()){ - for(const PadWithHits &p : swt.pads()){ - if(p.m_padData) {//this is either overkill or ... + + for(const SingleWedgePadTrigger& swt : stc.wedgeTrigs()){ + int currwedge=swt.pads().at(0)->multipletId(); + std::vector<float> trglocalminY; + std::vector<float> trglocalmaxY; + std::vector<int> trgSelectedLayers; + std::vector<int> trgSelectedBands; + std::vector<int> trgPadPhiIndices; + std::vector<int> trgPadEtaIndices; + std::vector< std::shared_ptr<PadData>> trgPads; + for(const auto &p : swt.pads()){ //S.I 17-07-18 - const float padZ=p.m_cornerXyz[0][2]; + const float padZ=p->m_cornerXyz[0][2]; const Polygon pol=Project(roi,zcntr,padZ); - Identifier Id( p.m_padData->id()); + Identifier Id( p->id()); const Trk::PlaneSurface &padsurface = m_detManager->getsTgcReadoutElement(Id)->surface(Id); std::vector<Amg::Vector2D> local_trgcorners;// corners of the triggering region as projected on the detector layer std::vector<Amg::Vector2D> local_padcorners;//pad's corners written in local coordinate system for(unsigned int i=0;i<4;i++){ - const Amg::Vector3D global_padcorner(p.m_cornerXyz[i][0],p.m_cornerXyz[i][1],padZ); + const Amg::Vector3D global_padcorner(p->m_cornerXyz[i][0],p->m_cornerXyz[i][1],padZ); Amg::Vector2D local_padcorner; padsurface.globalToLocal(global_padcorner,Amg::Vector3D(),local_padcorner); local_padcorners.push_back(local_padcorner); } - for(auto v : boost::geometry::exterior_ring(pol)){ + for(const auto& v : boost::geometry::exterior_ring(pol)){ float x=coordinate<0>(v); float y=coordinate<1>(v); const Amg::Vector3D globalcorner(x,y,padZ); @@ -385,85 +424,98 @@ NSWL1::PadTrigger PadTriggerLogicOfflineTool::convert(const SectorTriggerCandida padsurface.globalToLocal(globalcorner,globalcorner,localcorner); local_trgcorners.push_back(localcorner); } - auto compare_y=[](const Amg::Vector2D &lhs, const Amg::Vector2D& rhs){return lhs.y()<rhs.y();}; - auto local_padminmaxy=std::minmax_element(local_padcorners.begin(),local_padcorners.end(),compare_y); + static auto compare_y=[](const Amg::Vector2D &lhs, const Amg::Vector2D& rhs){return lhs.y()<rhs.y();}; + auto local_padminmaxy=std::minmax_element(local_padcorners.begin(),local_padcorners.end(),compare_y); float local_padminy=local_padminmaxy.first->y(); float local_padmaxy=local_padminmaxy.second->y(); - const auto local_trigminmaxy=std::minmax_element(local_trgcorners.begin(),local_trgcorners.end(),compare_y); float local_trigminy=local_trigminmaxy.first->y(); float local_trigmaxy=local_trigminmaxy.second->y(); - pt.m_trglocalminY.push_back(local_trigminy); - pt.m_trglocalmaxY.push_back(local_trigmaxy); - pt.m_pads.push_back(p.m_padData); + float padMidY=0.5*(local_padminy+local_padmaxy); + //select the band that matches to the trigger region within given tolerance (now set to 1 strip pitch 3.2 mm) + bool bandisUp=within(padMidY,local_padmaxy,local_trigminy,local_trigmaxy,3.2); + bool bandisDown=within(local_padminy,padMidY, local_trigminy,local_trigmaxy,3.2); + int selectedbandId=-1; + int bandOffset=0; + char side = p->sideId() == 0 ? 'C' : 'A'; + char type = p->sectorType() == 0 ? 'S' : 'L'; + int stationEta = p->moduleId(); //this is also meaningless as we might have different inner-outer module IDs in transition + int multiplet=p->multipletId(); + int layer=p->gasGapId(); + //if ( side == 'C' ) stationEta *= -1; + int stationPhi = p->sectorId(); + static sTGCDetectorHelper sTGC_helper; + static auto stationEtas={1,2,3}; - //***** Apply a small correction otherwise youll get incorrect results when making coordinate comparisons - //In some cases trigger region falls slightly outside of the pad's boundaries - //the difference is not more than a few microns and most of the time it is even less than a micron - //But if the both edges of the triggering region are beyond the pad boundaries something must be seriously wrong - //it is probably due to precision loss somewhere in the calculations - float tol=0.005;//in milimeters - float dymin=fabs(local_padminy-local_trigminy); - float dymax=fabs(local_trigmaxy-local_padmaxy); + float bandLocalMinY=-1; + float bandLocalMaxY=-1; - if(local_trigminy<local_padminy && local_trigmaxy>local_padmaxy ){ - ATH_MSG_FATAL("TRIGGER REGION FALLS OUTSIDE THE PAD!. SOMETHING IS WRONG."); - } - - if(dymin>0 && dymin<tol && local_trigminy<local_padminy){ - ATH_MSG_DEBUG("Shifting trigger region minY[\u03BCmx10]: "<<int(local_trigminy*10000)<<"==>"<<int(local_padminy*10000)); - local_trigminy=local_padminy; + for(const auto& ieta : stationEtas){ + if(ieta==stationEta) break; + bandOffset+=sTGC_helper.Get_sTGCDetector(type,ieta,stationPhi,multiplet,side)->GetReadoutParameters().nTriggerBands.at(layer-1); + bandOffset+=0;//do not apply band Offsets as strip channels start from 1 on the next module; + } + if(bandisUp ){ + selectedbandId=p->padEtaId()*2; + bandLocalMinY=padMidY; + bandLocalMaxY=local_padmaxy; } - if(dymax>0 && dymax<tol && local_trigmaxy>local_padmaxy){ - ATH_MSG_DEBUG("Shifting trigger region maxY[\u03BCmx10]: "<<int(local_trigmaxy*10000)<<"==>"<<int(local_padmaxy*10000)); - local_trigmaxy=local_padmaxy; + else if(bandisDown){ + selectedbandId=p->padEtaId()*2-1; + bandLocalMinY=local_padminy; + bandLocalMaxY=padMidY; + } + else{ + + return PadTrigger(); } - //****************************************************************************************************** - //#@! - // Hack for pad<=>strip until we fix - //S.I Fix strip_pad_info hack 19.06.18 - std::vector<float> pad_info; - pad_info.push_back(p.m_padData->multipletId()); - pad_info.push_back(p.m_padData->gasGapId()); - //S.I fix the hack (replace the below two lines that are commented out) - pad_info.push_back(local_trigminy); - pad_info.push_back(local_trigmaxy); - //S.I before that was it below - //pad_info.push_back(p.m_loLocalY); - //pad_info.push_back(p.m_hiLocalY); - pt.m_pad_strip_info.push_back(pad_info); - //S.I 17-07-18 - } - else - ATH_MSG_FATAL("PadTriggerLogicOfflineTool::convert: do not push back null pointers"); - // so how do you handle it rather than printing something out ? - } // for(p) - } // for (st) - pt.m_multiplet_id = pt.m_pads.at(0)->multipletId();//S.I inner outer wedge or module 1 2 3 ?? - pt.m_gasGap_id = pt.m_pads.at(0)->gasGapId();//S.I does assigning a gasgap id to a pad trigger ever make sense ? - // Offset to BandId - get from the first pad in the trigger - sTGCDetectorHelper sTGC_helper; - sTGCDetectorDescription *sTGC=nullptr; - char side = pt.m_pads.at(0)->sideId() == 0 ? 'C' : 'A'; - char type = pt.m_pads.at(0)->sectorType() == 0 ? 'S' : 'L'; - int stationEta = pt.m_pads.at(0)->moduleId(); //if ( side == 'C' ) stationEta *= -1; - int stationPhi = pt.m_pads.at(0)->sectorId(); - int layer = pt.m_pads.at(0)->multipletId(); - - int Offset[3] = {0,33,63}; - //S.I it seems we dont use the helper below. Let it stay there for now, we'll need it later - sTGC = sTGC_helper.Get_sTGCDetector(type,stationEta,stationPhi,layer,side); - if(sTGC == nullptr) { - std::cerr<<"PadTriggerLogicOfflineTool::convert :: Could not find detector, no trigger bandid offset being applied"<<std::endl; - } - else { - sTGCReadoutParameters roParams=sTGC->GetReadoutParameters(); + selectedbandId+=bandOffset; + trglocalminY.push_back(bandLocalMinY); + trglocalmaxY.push_back(bandLocalMaxY); + trgSelectedLayers.push_back(p->gasGapId()); + trgSelectedBands.push_back(selectedbandId); + trgPadPhiIndices.push_back(p->padPhiId()); + trgPadEtaIndices.push_back(p->padEtaId()); + trgPads.push_back(p); + pt.m_pads.push_back(p); + + //it seems pad overlap is precise enough around 5microns . + if(!within(local_padminy,local_padmaxy,local_trigminy,local_trigmaxy,0.005)){ + ATH_MSG_FATAL("TRIGGER REGION FALLS OUTSIDE THE PAD!. SOMETHING IS WRONG."); + } + } // for(p) pads + if(currwedge==1){ + pt.m_trglocalminYInner=trglocalminY; + pt.m_trglocalmaxYInner=trglocalmaxY; + pt.m_trgSelectedLayersInner=trgSelectedLayers; + pt.m_trgSelectedBandsInner=trgSelectedBands; + pt.m_trgPadPhiIndicesInner=trgPadPhiIndices; + pt.m_trgPadEtaIndicesInner=trgPadEtaIndices; + pt.m_padsInner=trgPads; + } + if(currwedge==2){ + pt.m_trglocalminYOuter=trglocalminY; + pt.m_trglocalmaxYOuter=trglocalmaxY; + pt.m_trgSelectedLayersOuter=trgSelectedLayers; + pt.m_trgSelectedBandsOuter=trgSelectedBands; + pt.m_trgPadPhiIndicesOuter=trgPadPhiIndices; + pt.m_trgPadEtaIndicesOuter=trgPadEtaIndices; + pt.m_padsOuter=trgPads; + } + - pt.m_bandid +=Offset[pt.m_pads.at(0)->moduleId()-1]; + trglocalminY.clear(); + trglocalmaxY.clear(); + trgSelectedLayers.clear(); + trgSelectedBands.clear(); + trgPadPhiIndices.clear(); + trgPadEtaIndices.clear(); + trgPads.clear(); - //eof S.I - } + } // for (swt) single wedge trigger + + pt.m_bandid=pt.m_trgSelectedBandsInner.size() >0? pt.m_trgSelectedBandsInner.at(0) : pt.m_trgSelectedBandsOuter.at(0); return pt; } diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTriggerValidationTree.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTriggerValidationTree.cxx index 63345efd16a5d191d601cb16771150911e1bc044..87a801cc9ccd8e2028c30566d2a0dd322a0a5e91 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTriggerValidationTree.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/PadTriggerValidationTree.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TrigT1NSWSimTools/PadTriggerValidationTree.h" @@ -17,6 +17,20 @@ namespace NSWL1{ m_tree(nullptr), m_nPadTriggers(0), m_padTriggerBCID(nullptr), + m_padTriggerModuleIDinner(nullptr), + m_padTriggerModuleIDouter(nullptr), + m_padTriggerSelectedLayersInner(nullptr), + m_padTriggerSelectedLayersOuter(nullptr), + m_padTriggerSelectedBandsInner(nullptr), + m_padTriggerSelectedBandsOuter(nullptr), + m_padTriggerPadEtaIndicesInner(nullptr), + m_padTriggerPadPhiIndicesInner(nullptr), + m_padTriggerPadEtaIndicesOuter(nullptr), + m_padTriggerPadPhiIndicesOuter(nullptr), + m_padTriggerRCenterMinInner(nullptr), + m_padTriggerRCenterMaxInner(nullptr), + m_padTriggerRCenterMinOuter(nullptr), + m_padTriggerRCenterMaxOuter(nullptr), m_padTriggerSectorID(nullptr), m_padTriggerSectorType(nullptr), m_padTriggerSideID(nullptr), @@ -26,13 +40,15 @@ namespace NSWL1{ m_padTriggerEtaID(nullptr), m_padTriggerPhiID(nullptr), m_padTriggerMultipletID(nullptr), - m_padTriggerGasGapID(nullptr), m_padTriggerEtamin(nullptr), m_padTriggerEtamax(nullptr), m_padTriggerPhimin(nullptr), m_padTriggerPhimax(nullptr), - m_padTriggerlocalminY(nullptr), - m_padTriggerlocalmaxY(nullptr) + m_padTriggerlocalminYInner(nullptr), + m_padTriggerlocalmaxYInner(nullptr), + m_padTriggerlocalminYOuter(nullptr), + m_padTriggerlocalmaxYOuter(nullptr), + m_padTriggerIndex(nullptr) { } //------------------------------------------------------------------------------ @@ -49,43 +65,93 @@ namespace NSWL1{ m_tree = tree; m_nPadTriggers = 0; m_padTriggerBCID = new std::vector<unsigned int>(); + //S.I + m_padTriggerModuleIDinner = new std::vector<int>(); + m_padTriggerModuleIDouter = new std::vector<int>(); + m_padTriggerSelectedLayersInner = new std::vector<std::vector<int>>(); + m_padTriggerSelectedLayersOuter = new std::vector<std::vector<int>>(); + m_padTriggerSelectedBandsInner = new std::vector<std::vector<int>>(); + m_padTriggerSelectedBandsOuter = new std::vector<std::vector<int>>(); + m_padTriggerPadEtaIndicesInner = new std::vector<std::vector<int>>(); + m_padTriggerPadPhiIndicesInner = new std::vector<std::vector<int>>(); + m_padTriggerPadEtaIndicesOuter = new std::vector<std::vector<int>>(); + m_padTriggerPadPhiIndicesOuter = new std::vector<std::vector<int>>(); + m_padTriggerRCenterMinInner = new std::vector<std::vector<float>>(); + m_padTriggerRCenterMaxInner =new std::vector<std::vector<float>>(); + m_padTriggerRCenterMinOuter= new std::vector<std::vector<float>>(); + m_padTriggerRCenterMaxOuter=new std::vector<std::vector<float>>(); + //S.I m_padTriggerSectorID = new std::vector<int>(); m_padTriggerSectorType = new std::vector<int>(); m_padTriggerSideID = new std::vector<int>(); + m_padTriggerIndex = new std::vector<int>(); m_padTriggerBandID = new std::vector<unsigned int>(); m_padTriggerEta = new std::vector<float>(); m_padTriggerPhi = new std::vector<float>(); m_padTriggerEtaID = new std::vector<int>(); m_padTriggerPhiID = new std::vector<int>(); m_padTriggerMultipletID = new std::vector<int>(); - m_padTriggerGasGapID = new std::vector<int>(); m_padTriggerEtamin =new std::vector<float>(); m_padTriggerEtamax =new std::vector<float>(); m_padTriggerPhimin =new std::vector<float>(); m_padTriggerPhimax =new std::vector<float>(); - m_padTriggerlocalminY =new std::vector<std::vector<float>>(); - m_padTriggerlocalmaxY =new std::vector<std::vector<float>>(); + m_padTriggerlocalminYInner =new std::vector<std::vector<float>>(); + m_padTriggerlocalmaxYInner =new std::vector<std::vector<float>>(); + m_padTriggerlocalminYOuter =new std::vector<std::vector<float>>(); + m_padTriggerlocalmaxYOuter =new std::vector<std::vector<float>>(); + m_tree->Branch("nPadTriggers", &m_nPadTriggers,"nPadTriggers/i"); m_tree->Branch("padTriggerBCID", &m_padTriggerBCID); m_tree->Branch("padTriggerSectorID", &m_padTriggerSectorID); + m_tree->Branch("padTriggerModuleIDinner",&m_padTriggerModuleIDinner); + m_tree->Branch("padTriggerModuleIDouter",&m_padTriggerModuleIDouter); + m_tree->Branch("padTriggerSelectedLayersInner",&m_padTriggerSelectedLayersInner); + m_tree->Branch("padTriggerSelectedLayersOuter",&m_padTriggerSelectedLayersOuter); + m_tree->Branch("padTriggerSelectedBandsInner",&m_padTriggerSelectedBandsInner); + m_tree->Branch("padTriggerSelectedBandsOuter",&m_padTriggerSelectedBandsOuter ) ; + m_tree->Branch("padTriggerPadEtaIndicesInner",&m_padTriggerPadEtaIndicesInner); + m_tree->Branch("padTriggerPadPhiIndicesInner",&m_padTriggerPadPhiIndicesInner); + m_tree->Branch("padTriggerPadEtaIndicesOuter",&m_padTriggerPadEtaIndicesOuter); + m_tree->Branch("padTriggerPadPhiIndicesOuter",&m_padTriggerPadPhiIndicesOuter); + m_tree->Branch("padTriggerRCenterMinInner",&m_padTriggerRCenterMinInner); + m_tree->Branch("padTriggerRCenterMaxInner",&m_padTriggerRCenterMaxInner); + m_tree->Branch("padTriggerRCenterMinOuter",&m_padTriggerRCenterMinOuter); + m_tree->Branch("padTriggerRCenterMaxOuter",&m_padTriggerRCenterMaxOuter ); m_tree->Branch("padTriggerSectorType", &m_padTriggerSectorType); m_tree->Branch("padTriggerSideID", &m_padTriggerSideID); + m_tree->Branch("padTriggerIndex", &m_padTriggerIndex); m_tree->Branch("padTriggerBandID", &m_padTriggerBandID); m_tree->Branch("padTriggerEta", &m_padTriggerEta); m_tree->Branch("padTriggerPhi", &m_padTriggerPhi); m_tree->Branch("padTriggerEtaID", &m_padTriggerEtaID); m_tree->Branch("padTriggerPhiID", &m_padTriggerPhiID); m_tree->Branch("padTriggerMultipletID", &m_padTriggerMultipletID); - m_tree->Branch("padTriggerGasGapID", &m_padTriggerGasGapID); m_tree->Branch("padTriggerEtamin", &m_padTriggerEtamin); m_tree->Branch("padTriggerEtamax", &m_padTriggerEtamax); m_tree->Branch("padTriggerPhimin", &m_padTriggerPhimin); m_tree->Branch("padTriggerPhimax", &m_padTriggerPhimax); - m_tree->Branch("padTriggerlocalminY", &m_padTriggerlocalminY); - m_tree->Branch("padTriggerlocalmaxY", &m_padTriggerlocalmaxY); + m_tree->Branch("padTriggerlocalminYInner", &m_padTriggerlocalminYInner); + m_tree->Branch("padTriggerlocalmaxYInner", &m_padTriggerlocalmaxYInner); + m_tree->Branch("padTriggerlocalminYOuter", &m_padTriggerlocalminYOuter); + m_tree->Branch("padTriggerlocalmaxYOuter", &m_padTriggerlocalmaxYOuter); + // m_tree->Branch("nPadHits", &m_nPadHits,"nPadHits/i"); + // m_tree->Branch("padGlobalX", &m_padGlobalX); + // m_tree->Branch("padGlobalY", &m_padGlobalY); + // m_tree->Branch("padGlobalZ", &m_padGlobalZ); + // m_tree->Branch("padTruthHitGlobalX", &m_padTruthHitGlobalX); + // m_tree->Branch("padTruthHitGlobalY", &m_padTruthHitGlobalY); + // m_tree->Branch("padTruthHitGlobalZ", &m_padTruthHitGlobalZ); + // m_tree->Branch("padEtaIdFromOfflineId", &m_padEtaIdFromOfflineId); + // m_tree->Branch("padPhiIdFromOfflineId", &m_padPhiIdFromOfflineId); + // m_tree->Branch("padSectorIdFromOfflineId", &m_padSectorFromOfflineId); + // m_tree->Branch("padLayerFromOfflineId", &m_padLayerFromOfflineId); + // m_tree->Branch("offlineIdPadEtaIdConverted",&m_offlineIdPadEtaConverted); + // m_tree->Branch("offlineIdPadPhiIdConverted",&m_offlineIdPadPhiConverted); + // m_tree->Branch("padEtaIdFromOldSimu", &m_padEtaIdFromOldSimu); + // m_tree->Branch("padPhiIdFromOldSimu", &m_padPhiIdFromOldSimu); success = true; } return success; @@ -96,28 +162,60 @@ namespace NSWL1{ if(m_tree){ m_nPadTriggers = 0; m_padTriggerBCID ->clear(); + m_padTriggerModuleIDinner->clear();; + m_padTriggerModuleIDouter->clear();; + m_padTriggerSelectedLayersInner->clear();; + m_padTriggerSelectedLayersOuter->clear();; + m_padTriggerSelectedBandsInner->clear();; + m_padTriggerSelectedBandsOuter->clear();; + m_padTriggerPadEtaIndicesInner->clear();; + m_padTriggerPadPhiIndicesInner->clear();; + m_padTriggerPadEtaIndicesOuter->clear();; + m_padTriggerPadPhiIndicesOuter->clear();; + m_padTriggerRCenterMinInner->clear();; + m_padTriggerRCenterMaxInner->clear();; + m_padTriggerRCenterMinOuter->clear();; + m_padTriggerRCenterMaxOuter->clear();; m_padTriggerSectorID ->clear(); m_padTriggerSectorType ->clear(); m_padTriggerSideID ->clear(); + m_padTriggerIndex->clear(); m_padTriggerBandID ->clear(); m_padTriggerEta ->clear(); m_padTriggerPhi ->clear(); m_padTriggerEtaID ->clear(); m_padTriggerPhiID ->clear(); m_padTriggerMultipletID ->clear(); - m_padTriggerGasGapID ->clear(); m_padTriggerEtamin->clear(); m_padTriggerEtamax->clear(); m_padTriggerPhimin->clear(); m_padTriggerPhimax->clear(); - m_padTriggerlocalminY->clear(); - m_padTriggerlocalmaxY->clear(); + m_padTriggerlocalminYInner->clear(); + m_padTriggerlocalmaxYInner->clear(); + m_padTriggerlocalminYOuter->clear(); + m_padTriggerlocalmaxYOuter->clear(); + // m_nPadHits = 0; + // m_padGlobalX->clear(); + // m_padGlobalY->clear(); + // m_padGlobalZ->clear(); + // m_padTruthHitGlobalX->clear(); + // m_padTruthHitGlobalY->clear(); + // m_padTruthHitGlobalZ->clear(); + // m_padEtaIdFromOfflineId->clear(); + // m_padPhiIdFromOfflineId->clear(); + // m_padSectorFromOfflineId->clear(); + // m_padLayerFromOfflineId->clear(); + // m_offlineIdPadEtaConverted->clear(); + // m_offlineIdPadPhiConverted->clear(); + // m_padEtaIdFromOldSimu->clear(); + // m_padPhiIdFromOldSimu->clear(); } } //------------------------------------------------------------------------------ void PadTriggerValidationTree::clear_ntuple_variables() { m_nPadTriggers = 0; + m_padTriggerIndex=nullptr; m_padTriggerBCID = nullptr; m_padTriggerSectorID = nullptr; m_padTriggerSectorType = nullptr; @@ -128,41 +226,51 @@ namespace NSWL1{ m_padTriggerEtaID = nullptr; m_padTriggerPhiID = nullptr; m_padTriggerMultipletID = nullptr; - m_padTriggerGasGapID = nullptr; m_padTriggerEtamax=nullptr; m_padTriggerEtamin=nullptr; m_padTriggerPhimin=nullptr; m_padTriggerPhimax=nullptr; - m_padTriggerlocalminY=nullptr; - m_padTriggerlocalmaxY=nullptr; + m_padTriggerlocalminYInner=nullptr; + m_padTriggerlocalmaxYInner=nullptr; + m_padTriggerlocalminYOuter=nullptr; + m_padTriggerlocalmaxYOuter=nullptr; } //------------------------------------------------------------------------------ - void PadTriggerValidationTree::fill_num_pad_triggers(size_t num) - { + void PadTriggerValidationTree::fill_num_pad_triggers(size_t num){ m_nPadTriggers = num; } //------------------------------------------------------------------------------ void PadTriggerValidationTree::fill_pad_trigger_basics(const std::vector<std::unique_ptr<PadTrigger>> &triggers) { - for(auto& trigger : triggers) { - m_padTriggerBCID ->push_back(trigger->bctag()); - m_padTriggerSectorID ->push_back(trigger->sectorId()); - m_padTriggerSectorType ->push_back((trigger->isSmall()+1)%2);//1 for L 0 for S - m_padTriggerSideID ->push_back(trigger->sideId()); - m_padTriggerBandID ->push_back(trigger->bandId()); - m_padTriggerEta ->push_back(trigger->eta()); - m_padTriggerPhi ->push_back(trigger->phi()); - m_padTriggerEtaID ->push_back(trigger->etaId()); - m_padTriggerPhiID ->push_back(trigger->phiId()); - m_padTriggerMultipletID->push_back(trigger->multipletId()); - m_padTriggerGasGapID ->push_back(trigger->gasGapId()); - m_padTriggerEtamin->push_back(trigger->etaMin()); - m_padTriggerEtamax->push_back(trigger->etaMax()); - m_padTriggerPhimin->push_back(trigger->phiMin()); - m_padTriggerPhimax->push_back(trigger->phiMax()); - m_padTriggerlocalminY->push_back(trigger->trglocalminY()); - m_padTriggerlocalmaxY->push_back(trigger->trglocalmaxY()); - - } + for(auto& trigger : triggers) { + m_padTriggerBCID ->push_back(trigger->bctag()); + m_padTriggerSectorID ->push_back(trigger->sectorId()); + m_padTriggerSectorType ->push_back((trigger->isSmall()+1)%2);//1 for L 0 for S + m_padTriggerSideID ->push_back(trigger->sideId()); + m_padTriggerIndex ->push_back(trigger->index()); + m_padTriggerBandID ->push_back(trigger->bandId()); + m_padTriggerEta ->push_back(trigger->eta()); + m_padTriggerPhi ->push_back(trigger->phi()); + m_padTriggerEtaID ->push_back(trigger->etaId()); + m_padTriggerPhiID ->push_back(trigger->phiId()); + m_padTriggerMultipletID->push_back(trigger->multipletId()); + m_padTriggerEtamin->push_back(trigger->etaMin()); + m_padTriggerEtamax->push_back(trigger->etaMax()); + m_padTriggerPhimin->push_back(trigger->phiMin()); + m_padTriggerPhimax->push_back(trigger->phiMax()); + m_padTriggerlocalminYInner->push_back(trigger->trglocalminYInner()); + m_padTriggerlocalmaxYInner->push_back(trigger->trglocalmaxYInner()); + m_padTriggerlocalminYOuter->push_back(trigger->trglocalminYOuter()); + m_padTriggerlocalmaxYOuter->push_back(trigger->trglocalmaxYOuter()); + m_padTriggerModuleIDinner->push_back(trigger->moduleIdInner()); + m_padTriggerModuleIDouter->push_back(trigger->moduleIdOuter()); + m_padTriggerSelectedLayersInner->push_back(trigger->trgSelectedLayersInner()); + m_padTriggerSelectedLayersOuter->push_back(trigger->trgSelectedLayersOuter()); + m_padTriggerSelectedBandsInner->push_back(trigger->trgSelectedBandsInner()); + m_padTriggerSelectedBandsOuter->push_back(trigger->trgSelectedBandsOuter()); + m_padTriggerPadEtaIndicesInner->push_back(trigger->trgPadEtaIndicesInner()); + m_padTriggerPadEtaIndicesOuter->push_back(trigger->trgPadEtaIndicesOuter()); + m_padTriggerPadPhiIndicesInner->push_back(trigger->trgPadPhiIndicesInner()); + m_padTriggerPadPhiIndicesOuter->push_back(trigger->trgPadPhiIndicesOuter()); + } } - } diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/PadUtil.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/PadUtil.cxx deleted file mode 100644 index 769925b61381965f24ed662780806395f01afb3b..0000000000000000000000000000000000000000 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/PadUtil.cxx +++ /dev/null @@ -1,183 +0,0 @@ -/* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration -*/ - -// Gaudi/Athena basic includes -#include "GaudiKernel/MsgStream.h" - -// local includes -#include "TrigT1NSWSimTools/sTGCenumeration.h" -#include "TrigT1NSWSimTools/sTGCgeometry.h" -#include "TrigT1NSWSimTools/PadOfflineData.h" - -#include "TMath.h" -#include "TVector3.h" - -#include <utility> -#include <cassert> - -#include "TrigT1NSWSimTools/PadUtil.h" - -namespace NSWL1 { - - //------------------------------------- - bool wedgeidIsInvalid(int wedgeid, MsgStream& msg){ - bool invalid(wedgeid!=LARGE && wedgeid!=SMALL); - if(invalid && msg.level()<=MSG::VERBOSE ) - msg << MSG::VERBOSE << "PadUtil::wedgeIsInvalid: invalid wedgeid " << wedgeid << endmsg; - return invalid; - } - //------------------------------------- - bool wedgetypeIsInvalid(int wedgetype, MsgStream& msg){ - bool invalid(wedgetype!=PIVOT && wedgetype!=CONFIRM); - if(invalid && msg.level()<=MSG::VERBOSE) - msg << MSG::VERBOSE << "PadUtil::wedgeTypeIsInvalid: invalid wedgetype " << wedgetype << endmsg; - return invalid; - } - //------------------------------------- - bool layerIsInvalid(int layer, MsgStream& msg){ - bool invalid(layer<1 || layer>4); - if(invalid && msg.level()<=MSG::VERBOSE) - msg << MSG::VERBOSE << "PadUtil::layerIsInvalid: invalid layer " << layer << endmsg; - return invalid; - } - //------------------------------------- - bool sectorIsInvalid(int sector, MsgStream& msg){ - bool invalid(sector<1 || sector>16); - if(invalid && msg.level()<=MSG::VERBOSE) - msg << MSG::VERBOSE << "PadUtil::sectorIsInvalid: invalid sector " << sector << endmsg; - return invalid; - } - //------------------------------------- - bool detectorNumberIsInvalid(int dn, MsgStream& msg){ - bool invalid(dn<0 || dn >STGC_DETECTOR_3); - if(invalid && msg.level()<=MSG::VERBOSE) - msg << MSG::VERBOSE << "PadUtil::detectorNumberIsInvalid: invalid detectorNumber " << dn << endmsg; - return invalid; - } - //------------------------------------- - int sideFromZ(float z) { return (z>0.0 ? 0:1); } - //------------------------------------- - float midSectorPhi(int sector, MsgStream& msg){ - float nSectors=16.0; - float sectorDphi(TMath::TwoPi()/nSectors); - if(sector<1 && msg.level()<=MSG::DEBUG) msg << MSG::DEBUG << "sector " << sector << std::endl; - assert(sector>0); // we are assuming that the sector N starts from 1 - return (sector-1)*sectorDphi; - } - //------------------------------------- - float adjustHforZdifference(const float &h, const STGCType &s, const int &l) - { - return h * Z_CURRENT_LAYOUT[s][l] / Z_DANIEL[s][l]; - } - - - bool determinePad(int layer, - int wedgeId, - int wedgeType, - int sector, - int detectorNumber, - TVector3 pos, - std::pair<int,int>& result, - MsgStream& msg) - { - if(layerIsInvalid (layer, msg)) return false; - if(sectorIsInvalid (sector, msg)) return false; - if(detectorNumberIsInvalid(detectorNumber, msg)) return false; - int la(layer-1); // layer is in [1,4], but indices start from 0 - int wi(wedgeId), wt(wedgeType), sn(sector), dn(detectorNumber); - // ==> used in the previos result int side( sideFromZ(pos.Z()) ); - STGCType st(STGC_TYPES); - // ==> used in the previos result STGCDetectorType sdt(STGC_DETECTORS); - LayerType lt(NO_LAYER); - // some conversion enum<-->int (should be implemented with the enum) - if (LARGE == wi && PIVOT == wt) st = LARGE_PIVOT; - else if(LARGE == wi && CONFIRM == wt) st = LARGE_CONFIRM; - else if(SMALL == wi && PIVOT == wt) st = SMALL_PIVOT; - else if(SMALL == wi && CONFIRM == wt) st = SMALL_CONFIRM; - else { - if (msg.level()<=MSG::VERBOSE) - msg << MSG::VERBOSE << "determinePad: invalid L/S (" << wi << "), P/C (" << wt << ") values " << endmsg; - return false; - } - - switch(la) { - case 0: lt = STGC_LAYER_1; break; - case 1: lt = STGC_LAYER_2; break; - case 2: lt = STGC_LAYER_3; break; - case 3: lt = STGC_LAYER_4; break; - default : - if( msg.level()<=MSG::VERBOSE) msg << MSG::VERBOSE << "determinePad: invalid layer index " << la << endmsg; - return false; - } - (void) lt; // unused variable - bool isInnerDetector(dn==STGC_DETECTOR_0 || dn==STGC_DETECTOR_1); - float phiPadSize(PAD_PHI_DIVISION); - if(isInnerDetector) phiPadSize /= PAD_PHI_SUBDIVISION; // inner dets have finer pads - float phiOrigin(PAD_COL_PHI0[st][dn][la]); - float hLowEdge(H_PAD_ROW_0[st][la]); - float padHeight(PAD_HEIGHT[st][la]); - //-- int leftmostCol(INDEX_LEFTMOST_COL[st][dn][la]); // see comment a few lines below - //-- int rightmostCol(INDEX_RIGHTMOST_COL[st][dn][la]); - float phiCenterSector(midSectorPhi(sn,msg)); - float phiSectorFive(midSectorPhi(5,msg)); // sector 5 is the one aligned with the ATLAS y axis - pos.RotateZ(phiSectorFive - phiCenterSector); - hLowEdge = adjustHforZdifference(hLowEdge, st, la); - padHeight = adjustHforZdifference(padHeight, st, la); - int ieta = TMath::Floor((pos.Y() - hLowEdge) / padHeight); - - int iphi = TMath::Floor((pos.Phi() - phiOrigin - phiSectorFive) / phiPadSize); - - float loHei(hLowEdge + ieta*padHeight); - float hiHei(loHei + padHeight); - float loPhi(phiOrigin + phiSectorFive + iphi*phiPadSize); - float hiPhi(loPhi + phiPadSize); - if((loHei > pos.Y()) || (pos.Y() > hiHei) || (loPhi > pos.Phi()) || (pos.Phi() > hiPhi)) - if (msg.level()<=MSG::DEBUG) - msg << MSG::DEBUG << "determinePad: Something wrong with pad edges? " // here we should assert, but there's 2pi ambiguity - << "height : " << loHei << " < " << pos.Y() << " < " << hiHei << std::endl - << "phi : " << loPhi << " < " << pos.Phi() << " < " << hiPhi << std::endl - << "loPhi=(" << phiOrigin << " + " << phiSectorFive << " + " << iphi << "*" << phiPadSize << ")" << std::endl - << "phiOrigin(PAD_COL_PHI0[" << st << "][" << dn << "][" << la << "]) : " << PAD_COL_PHI0[st][dn][la] << std::endl - ; - // DG not sure whether we should use this adjustment...ask Shikma - //-- if (iphi < 0 && iphi < leftmostCol ) iphi = leftmostCol; - //-- else if(iphi > 0 && iphi > rightmostCol) iphi = rightmostCol; - - - if(msg.level()<=MSG::VERBOSE) - msg << MSG::VERBOSE << "determine pad (" << pos.X() << ", " << pos.Y() << ", " << pos.Z() << ")" - << " sector " << sn << " layer " << (la+1) - << " (" << ieta << "," << iphi << ")" << endmsg; - - result.first = ieta; - result.second = iphi; - return true; - } - -bool determine_pad_indices_with_old_algo(const PadOfflineData& pod, const Amg::Vector3D &global_pos, - std::pair<int,int>& result, MsgStream& msg) - -{ - TVector3 pos(global_pos.x(), global_pos.y(), global_pos.z()); - - // NEW to OLD nomencleture - int layer = pod.gasGapId(); - int wedgeId = pod.sectorType(); - int wedgeType = -1; - if ( wedgeId == 0 ) wedgeType = pod.multipletId() == 1 ? 0 : 1; // SMALL P(0):C(1) - else wedgeType = pod.multipletId() == 1 ? 1 : 0; // LARGE C(1):P(0) - int sectorNumber = pod.sectorId(); - int detectorNumber = pod.moduleId(); - - return determinePad(layer, - wedgeId, - wedgeType, - sectorNumber, - detectorNumber, - pos, - result, - msg); -} - -} // end of namesape diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/PadWithHits.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/PadWithHits.cxx deleted file mode 100644 index 1fc82c121e148b0b2b9bdcb37903e9c8bc3577e4..0000000000000000000000000000000000000000 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/PadWithHits.cxx +++ /dev/null @@ -1,230 +0,0 @@ -/* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration -*/ - -#include "TrigT1NSWSimTools/PadWithHits.h" - -#include "TMath.h" -#include "TVector3.h" - -#include "TrigT1NSWSimTools/TriggerTypes.h" -#include "TrigT1NSWSimTools/vector_utils.h" - -#include <cassert> -#include <float.h> // FLT_MIN/FLT_MAX -#include <sstream> - -namespace NSWL1 { - std::string Pad::pickle() const - { - std::ostringstream oo; - oo<<"'ieta' : " <<ieta<< ", " - <<"'iphi' : " <<iphi<< ", " - <<"'multiplet' : " <<multiplet<< ", " - <<"'layer' : " <<layer<< ", " - <<"'sector' : " <<sector<< ", " - <<"'sectortype' : " <<sectortype<< ", " - <<"'side' : " <<side<< ", " - <<"'module' : " <<module<< ", "; - return oo.str(); - } - - //------------------------------------- - - //S.I : A lot of cleaning up can be done in this file. Most of the methods below are never used.. - float midSectorPhi(int sector){ - float nSectors=16.0; - float sectorDphi(TMath::TwoPi()/nSectors); - assert(sector>0); // we are assuming that the sector N starts from 1 - return (sector-1)*sectorDphi; - } - //-------------------------------------------------------------- - float phi_mpi_pi(const double &val) { - double value(val); - while(value <= -TMath::Pi()) value += 2.*TMath::Pi(); - while(value > +TMath::Pi()) value -= 2.*TMath::Pi(); - return value; - } - //-------------------------------------------------------------- - float phi_zero_2pi(const double &val) { - double value(val); - while(value <= 0. ) value += 2.*TMath::Pi(); - while(value > 2.*TMath::Pi()) value -= 2.*TMath::Pi(); - return value; - } - - bool layerIsInvalid(int layer){ - bool invalid(layer<1 || layer>4); - return invalid; - } - //------------------------------------- - bool sectorIsInvalid(int sector){ - bool invalid(sector<1 || sector>16); - return invalid; - } - - //------------------------------------- - Pad& Pad::fillCornerCoords(float corners[4][3]){ - std::vector<TVector3> points; - for(unsigned int i=0; i<4; i++) { - for(unsigned int j=0; j<3; j++) { - m_cornerXyz[i][j] = corners[i][j]; - } - TVector3 point(m_cornerXyz[i][0],m_cornerXyz[i][1],m_cornerXyz[i][2]); - points.push_back(point); - } - - return *this; - } - - //------------------------------------- - - PadWithHits::PadWithHits(const int &ieta, const int &iphi, - const int &multiplet, - const int &l, const int §or, const int §ortype, const int &side, const int &module) : - Pad(ieta, iphi, multiplet, l, sector, side, module), - m_totEnergy(0.), m_avgEta(0.), m_avgPhi(0.), - m_minEta(FLT_MAX), m_minPhi(FLT_MAX), m_maxEta(FLT_MIN), m_maxPhi(FLT_MIN) - {} - //------------------------------------- - PadWithHits::PadWithHits(std::shared_ptr<PadData> pData) : - Pad(pData), - m_totEnergy(0.), m_avgEta(0.), m_avgPhi(0.), - m_minEta(FLT_MAX), m_minPhi(FLT_MAX), m_maxEta(FLT_MIN), m_maxPhi(FLT_MIN) - {} - //------------------------------------- - PadWithHits::PadWithHits(const Pad &p) : - Pad(p), - m_totEnergy(0.), m_avgEta(0.), m_avgPhi(0.), - m_minEta(FLT_MAX), m_minPhi(FLT_MAX), m_maxEta(FLT_MIN), m_maxPhi(FLT_MIN) - {} - - - std::string PadWithHits::pickle() const - { - std::ostringstream oo; - oo<<Pad::pickle() - <<"'hitIndices' : " <<vec2str(m_hitIndices)<<", " - <<"'totEnergy' : " <<m_totEnergy<< ", " - <<"'avgEta' : " <<m_avgEta<< ", " - <<"'avgPhi' : " <<m_avgPhi<< ", " - <<"'minEta' : " <<m_minEta<< ", " - <<"'minPhi' : " <<m_minPhi<< ", " - <<"'maxEta' : " <<m_maxEta<< ", " - <<"'maxPhi' : " <<m_maxPhi<< ", " - <<"'cornerXyz' : " - <<"(" - <<"("<<m_cornerXyz[0][0]<<","<<m_cornerXyz[0][1]<<","<<m_cornerXyz[0][2]<<")," - <<"("<<m_cornerXyz[1][0]<<","<<m_cornerXyz[1][1]<<","<<m_cornerXyz[1][2]<<")," - <<"("<<m_cornerXyz[2][0]<<","<<m_cornerXyz[2][1]<<","<<m_cornerXyz[2][2]<<")," - <<"("<<m_cornerXyz[3][0]<<","<<m_cornerXyz[3][1]<<","<<m_cornerXyz[3][2]<<")," - <<")"<< ", "; - return oo.str(); - } - //------------------------------------- - void PadWithHits::updateWeightedCoord(const double &eta, const double &phi, const float &charge) - { - float weightOld(fabs(m_totEnergy)), weightNew(fabs(charge)); - float weightTot(weightOld+weightNew); - if(weightTot==0.0){ - m_avgEta = 0.5*(m_avgEta + eta); - m_avgPhi = 0.5*(m_avgPhi + phi); - } else { - float invWeightTot = 1.0 / weightTot; - m_avgEta = ((m_avgEta*weightOld + eta*weightNew) * invWeightTot); - m_avgPhi = ((m_avgPhi*weightOld + phi*weightNew) * invWeightTot); - } - } - //------------------------------------- - // a functor storing the indices of pads in a given sector - struct inSector: public std::unary_function<const Pad&, void>{ - int sector_; - size_t index_; - std::vector<size_t> indices_; - inSector(int sector) : sector_(sector), index_(0) {} - void operator() (const Pad &p) { if(sector_==p.sector) indices_.push_back(index_); ++index_; } - }; - //------------------------------------- - - - std::vector<size_t> filterBySector(const std::vector<Pad> &pads, int sector){ - return (std::for_each(pads.begin(), pads.end(), inSector(sector))).indices_; - } - //------------------------------------- - std::vector<size_t> filterBySector(const std::vector<PadWithHits> &pads, int sector){ - return (std::for_each(pads.begin(), pads.end(), inSector(sector))).indices_; - } - //------------------------------------- - std::vector<size_t> filterBySide(const std::vector<Pad> &pads, - const std::vector<size_t> &padSelectedIndices, - int side) - { // can this be done with std::algo without building a copy? (later) - std::vector<size_t> indices; - for(size_t i=0; i<padSelectedIndices.size(); i++){ - const size_t &idx=padSelectedIndices[i]; - if(side==pads[idx].side) indices.push_back(idx); - } - return indices; - } - //------------------------------------- - std::vector<size_t> filterBySide(const std::vector<PadWithHits> &pads, - const std::vector<size_t> &padSelectedIndices, - int side) - { // can this be done with std::algo without building a copy? (later) - std::vector<size_t> indices; - for(size_t i=0; i<padSelectedIndices.size(); i++){ - const size_t &idx=padSelectedIndices[i]; - if(side==pads[idx].side) indices.push_back(idx); - } - return indices; - } - //------------------------------------- - std::vector<size_t> filterByLayer(const std::vector<Pad> &pads, - const std::vector<size_t> &padSelectedIndices, - int layer) - { // can this be done with std::algo without building a copy? (later) - std::vector<size_t> indices; - for(size_t i=0; i<padSelectedIndices.size(); i++){ - const size_t &idx=padSelectedIndices[i]; - if(layer==pads[idx].layer) indices.push_back(idx); - } - return indices; - } - //------------------------------------- - std::vector<size_t> filterByLayer(const std::vector<PadWithHits> &pads, - const std::vector<size_t> &padSelectedIndices, - int layer) - { - std::vector<size_t> indices; - for(size_t i=0; i<padSelectedIndices.size(); i++){ - const size_t &idx=padSelectedIndices[i]; - if(layer==pads[idx].layer) indices.push_back(idx); - } - return indices; - } - //------------------------------------- - std::vector<size_t> filterByMultiplet(const std::vector<Pad> &pads, - const std::vector<size_t> &padSelectedIndices, - int multiplet) - { // can this be done with std::algo without building a copy? (later) - std::vector<size_t> indices; - for(size_t i=0; i<padSelectedIndices.size(); i++){ - const size_t &idx=padSelectedIndices[i]; - if(multiplet==pads[idx].multiplet) indices.push_back(idx); - } - return indices; - } - //------------------------------------- - std::vector<size_t> filterByMultiplet(const std::vector<PadWithHits> &pads, - const std::vector<size_t> &padSelectedIndices, - int multiplet) - { - std::vector<size_t> indices; - for(size_t i=0; i<padSelectedIndices.size(); i++){ - const size_t &idx=padSelectedIndices[i]; - if(multiplet==pads[idx].multiplet) indices.push_back(idx); - } - return indices; - } - //------------------------------------- -} // end nsw diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/SectorTriggerCandidate.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/SectorTriggerCandidate.cxx index 5bf3a352597ec311014a255fd84f502272228a74..9a2358cfe9aff1e1227512be09c903b0142d7f87 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/SectorTriggerCandidate.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/SectorTriggerCandidate.cxx @@ -1,11 +1,10 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TrigT1NSWSimTools/SectorTriggerCandidate.h" #include "TrigT1NSWSimTools/SingleWedgePadTrigger.h" -#include "TrigT1NSWSimTools/PadWithHits.h" // shouldn't be needed, need to fix it DG - +#include "TrigT1NSWSimTools/PadOfflineData.h" #include <cassert> #include <sstream> @@ -30,30 +29,14 @@ namespace NSWL1{ Polygon inner_overlap=SingleWedgePadTrigger::padOverlap3(inner.pads()); Polygon outer_overlap=SingleWedgePadTrigger::padOverlap3(outer.pads()); //project the outer overlap into first one's plane - float Z1=outer.pads()[0].m_cornerXyz[1][2]; - float Z0=inner.pads()[0].m_cornerXyz[1][2]; - //write the outer overlap in Z0 and overlap inner+outer to calculate the overall overlap + float Z1=outer.pads()[0]->m_cornerXyz[1][2]; + float Z0=inner.pads()[0]->m_cornerXyz[1][2]; - //mproject ? from Z1->Z0 return largestIntersection(inner_overlap,Project(outer_overlap,Z1,Z0)); - //end of S.I } else{ return SingleWedgePadTrigger::padOverlap3(m_wedgeTrigs[0].pads()); } } - std::string vec2pickle(const std::vector< SingleWedgePadTrigger > &trigs){ - std::ostringstream oo; - oo<<"["; - for(size_t i=0; i<trigs.size(); ++i) oo<<"{"<<trigs[i].pickle()<<"}, "; - oo<<"]"; - return oo.str(); - } - - std::string SectorTriggerCandidate::pickle() const{ - std::ostringstream oo; - oo<<"'wedgeTrigs' : "<<vec2pickle(m_wedgeTrigs)<<", "; - return oo.str(); - } } diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/SingleWedgePadTrigger.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/SingleWedgePadTrigger.cxx index 56cdfb8f51a5bdcc5514d37a76cb721b18a4c25d..2b242d2cdc11ab7e541ec955bb77b53dee393136 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/SingleWedgePadTrigger.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/SingleWedgePadTrigger.cxx @@ -1,21 +1,23 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TrigT1NSWSimTools/SingleWedgePadTrigger.h" -#include "TrigT1NSWSimTools/vector_utils.h" #include "TrigT1NSWSimTools/tdr_compat_enum.h" +#include "TrigT1NSWSimTools/PadOfflineData.h" #include <algorithm> #include <cassert> +#include <cmath> +#include <iostream> #include <sstream> namespace NSWL1{ - - bool sortByLayer(const PadWithHits &p0, const PadWithHits& p1) { - return p0.layer<p1.layer; + + bool sortByLayer(const std::shared_ptr<PadOfflineData> &p0, const std::shared_ptr<PadOfflineData>& p1) { + return p0->gasGapId()<p1->gasGapId(); } SingleWedgePadTrigger::SingleWedgePadTrigger(const std::string &pattern, - const std::vector<PadWithHits> &pads, + const std::vector<std::shared_ptr<PadOfflineData>> &pads, const std::vector<size_t> &padIndices) : m_pattern(pattern), m_halfPadIndices(-999,-999), m_padIndices(padIndices),m_alreadyCombined(false){ assert(m_padIndices.size()>0); // a trigger without pads doesn't make sense @@ -31,54 +33,54 @@ namespace NSWL1{ } SingleWedgePadTrigger::EtaPhiHalf SingleWedgePadTrigger::halfPadCoordinates() const { - const std::vector<PadWithHits> &pads = m_pads; - size_t nPads(pads.size()); - bool haveEnoughPads(nPads>2); - if(not haveEnoughPads) - ATH_MSG_ERROR("SingleWedgePadTrigger::halfPadCoordinates: need at least 3 pads"); - assert(haveEnoughPads); - - const PadWithHits &pad0=pads[0], &pad1=pads[1], &pad2=pads[2]; - int l0(pad0.layer), l1(pad1.layer), l2(pad2.layer); - // DG: Are we assuming that the pad indices are sorted? this assumption might not be always valid - // DG: Should we also cross-check the 4th pad if present? - bool missLast (l0==STGC_LAYER_1 && l1==STGC_LAYER_2); // missLast also includes 4 out of 4. + const std::vector<std::shared_ptr<PadOfflineData>> &pads = m_pads; + + const auto &pad0=pads[0], &pad1=pads[1], &pad2=pads[2]; + int l0(pad0->gasGapId()), l1(pad1->gasGapId()), l2(pad2->gasGapId()); + + bool missLast (l0==STGC_LAYER_1 && l1==STGC_LAYER_2); bool missMiddle(l0==STGC_LAYER_1 && l2==STGC_LAYER_4); bool missFirst (l0==STGC_LAYER_2 && l1==STGC_LAYER_3); - bool validLayerCombination(missLast || missMiddle || missFirst); - assert(validLayerCombination); // probably got a pattern we don't know how to interpret - (void) validLayerCombination; // to get rid of weird unused variable warning... //YR: the following is wrong but we keep it for phi as it isn't used much - for eta we use the simple calculation that follows. EtaPhiHalf pos(-999,-999); EtaPhi posA(-999,-999), posB(-999,-999); - if(missLast) { posA = EtaPhi(pad0.ieta, pad0.iphi); posB = EtaPhi(pad1.ieta, pad1.iphi); } - else if(missMiddle) { posA = EtaPhi(pad0.ieta, pad0.iphi); posB = EtaPhi(pad2.ieta, pad2.iphi); } - else if (missFirst) { posA = EtaPhi(pad1.ieta, pad1.iphi); posB = EtaPhi(pad0.ieta, pad0.iphi); } + if(missLast) { + posA = EtaPhi(pad0->padEtaId(), pad0->padPhiId()); + posB = EtaPhi(pad1->padEtaId(), pad1->padPhiId()); + } + else if(missMiddle) { + posA = EtaPhi(pad0->padEtaId(), pad0->padPhiId()); + posB = EtaPhi(pad2->padEtaId(), pad2->padPhiId()); + } + else if (missFirst) { + posA = EtaPhi(pad1->padEtaId(), pad1->padPhiId()); + posB = EtaPhi(pad0->padEtaId(), pad0->padPhiId()); + } + //S.I : else ??? :D + pos.ieta = ((posA.ieta==posB.ieta) ? (posA.ieta * 2) : (posA.ieta * 2 + 1)); pos.iphi = ((posA.iphi==posB.iphi) ? (posA.iphi * 2) : (posA.iphi * 2 + 1)); //S.I Shouldnt it be pad0.ieta+pad1.ieta ??? SI 13-06-2018 - pos.ieta = pad0.ieta+pad2.ieta -1; //YR 1-5-2018 any of the first two layers define the 2-bandids and any of the last two layers select the bandid from that pair + pos.ieta = pad0->padEtaId()+pad2->padEtaId() -1; //YR 1-5-2018 any of the first two layers define the 2-bandids and any of the last two layers select the bandid from that pair //YR Module specific corrections: - if(pad0.sectortype==1 && pad0.module==1) pos.ieta +=1; - if(pad0.sectortype==0 && pad0.module!=1) pos.ieta +=1; + if(pad0->sectorType()==1 && pad0->moduleId()==1) pos.ieta +=1; + if(pad0->sectorType()==0 && pad0->moduleId()!=1) pos.ieta +=1; return pos; } bool SingleWedgePadTrigger::isSmallSector() const{ - const PadWithHits &firstPad = m_pads[0]; - bool isEven = (firstPad.sectortype)==0; + const std::shared_ptr<PadOfflineData> &firstPad = m_pads[0]; + bool isEven = (firstPad->sectorType())==0; return isEven; } - float SingleWedgePadTrigger::avgEtaFromFirstPad() const{ - return m_pads[0].avgEta(); - } + bool SingleWedgePadTrigger::isInTransitionRegion() const{ Polygon ROI=padOverlap3(this->pads()); if(area(ROI)==0) return false; - float phi0=m_pads[0].sectortype==1 ? (PI/4)*(m_pads[0].sector-1) : (PI/8)+(PI/4)*(m_pads[0].sector-1); + float phi0=m_pads[0]->sectorType()==1 ? (PI/4)*(m_pads[0]->sectorId()-1) : (PI/8)+(PI/4)*(m_pads[0]->sectorId()-1); if(phi0>PI) phi0-=2*PI; float ROIx=centroid(ROI).x(); float ROIy=centroid(ROI).y(); //YR 8-18 using the center local Y of the ROI for the decision if in the TR @@ -89,7 +91,7 @@ namespace NSWL1{ bool isTr=false; float TransitonSmall[7] ={2104,2243,3248,3445,4216,4411,ROILocalY}; // YR should be taken from the XML (H1 active_max, H2 active min... projected from 7 to 1) float TransitonLarge[7] ={2144,2278,3294,3483,4406,4596,ROILocalY}; - if(m_pads[0].multiplet==2){ + if(m_pads[0]->multipletId()==2){ for(int i= 0; i<6; i++){ TransitonSmall[i] = TransitonSmall[i]*1.048; //Z5/Z1 ratio TransitonLarge[i] = TransitonLarge[i]*1.044; @@ -108,21 +110,22 @@ namespace NSWL1{ } //S.I 3 - Polygon SingleWedgePadTrigger::padOverlap3(const std::vector<PadWithHits> &pads){ // \todo some duplication with halfPadCoordinates()...refactor + Polygon SingleWedgePadTrigger::padOverlap3(const std::vector<std::shared_ptr<PadOfflineData>> &pads){ // \todo some duplication with halfPadCoordinates()...refactor size_t nPads(pads.size()); bool haveEnoughPads(nPads>2); if(not haveEnoughPads){ - std::cerr<<"SingleWedgePadTrigger::halfPadCoordinates: need at least 3 pads"<<std::endl; + std::cerr<<"SingleWedgePadTrigger::halfPadCoordinates: need at least 3 pads"<<std::endl; } assert(haveEnoughPads); - const PadWithHits &pad0=pads[0], &pad1=pads[1], &pad2=pads[2]; - int l0(pad0.layer), l1(pad1.layer), l2(pad2.layer); // DG: Are we assuming that the pad indices are sorted? this assumption might not be always valid + const std::shared_ptr<PadOfflineData> &pad0=pads[0], &pad1=pads[1], &pad2=pads[2]; + int l0(pad0->gasGapId()), l1(pad1->gasGapId()), l2(pad2->gasGapId()); // DG: Are we assuming that the pad indices are sorted? this assumption might not be always valid // identify the two staggered pads (see parameter book) bool hasL1L2(l0==STGC_LAYER_1 && l1==STGC_LAYER_2); // also includes 4 out of 4. bool hasL1L4(l0==STGC_LAYER_1 && l2==STGC_LAYER_4); bool hasL2L3(l0==STGC_LAYER_2 && l1==STGC_LAYER_3); bool validLayerCombination(hasL1L2 || hasL1L4 || hasL2L3); //S.I if buggy combination so ?? + //if(!validLayerCombination) cout<<"buggy layer combination? layers: "<<l0<<","<<l1<<","<<l2<<endl; assert(validLayerCombination); // probably got a pattern we don't know how to interpret (void) validLayerCombination;//not o.k @@ -135,49 +138,33 @@ namespace NSWL1{ //Do not play with the order array 0132. const static std::vector<int> vertexordering={0,1,3,2}; //project each pad polygon onto the first plane of the wedge - float Zproj=pads[0].m_cornerXyz[1][2];//second index x:0 y:1 z:2 + float Zproj=pads[0]->m_cornerXyz[1][2];//second index x:0 y:1 z:2 for(auto pad : pads){ Vertices vts; for(unsigned int i=0;i<4;i++){ int icorner=vertexordering[i]; - float x=pad.m_cornerXyz[icorner][0]; - float y=pad.m_cornerXyz[icorner][1]; + float x=pad->m_cornerXyz[icorner][0]; + float y=pad->m_cornerXyz[icorner][1]; vts.push_back(Vertex(x,y)); } Polygon padPolygon=buildPolygon(vts); - projected_pads.push_back(Project(padPolygon,pad.m_cornerXyz[2][2],Zproj)); + projected_pads.push_back(Project(padPolygon,pad->m_cornerXyz[2][2],Zproj)); } Polygon res=intersectionRegion(projected_pads); return res; } //eof S.I - std::string vec2pickle(const std::vector<PadWithHits> &pads){ - std::ostringstream oo; - oo<<"["; - for(size_t i=0; i<pads.size(); ++i) oo<<"{"<<pads[i].pickle()<<"}, "; - oo<<"]"; - return oo.str(); - } - std::string SingleWedgePadTrigger::pickle() const{ - std::ostringstream oo; - oo<<"'pattern' : "<< "'"<<m_pattern<<"'"<< ", " - <<"'padIndices' : " <<vec2str(m_padIndices)<< ", " - <<"'alreadyCombined' : " <<m_alreadyCombined<< ", " - <<"'pads' : " <<vec2pickle(m_pads)<< ", " - <<"'halfPadIndices' : " <<m_halfPadIndices.pickle()<<", "; - return oo.str(); - } - bool SingleWedgePadTrigger::areInnerOuterConsistent(const EtaPhiHalf &inner, const EtaPhiHalf &outer, bool verbose) { // ASM-2016-10-4 : Figure out the logic behind this, the staggering changed now relaxing this a bit //S.I : Relaxing? what is "this"? + // bool mismatchEta(outer.ieta < inner.ieta || outer.ieta > inner.ieta + 1); + // bool mismatchPhi(outer.iphi < inner.iphi || outer.iphi > inner.iphi + 1); bool mismatchEta(outer.ieta < inner.ieta - 4 || outer.ieta > inner.ieta + 4); bool mismatchPhi(outer.iphi < inner.iphi - 4 || outer.iphi > inner.iphi + 4); bool mismatch(mismatchEta || mismatchPhi); //S.I a remnant of verbose plague... will cleanup later (void) verbose; - return !mismatch; } diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/StripClusterOfflineData.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/StripClusterOfflineData.cxx index 261e75c9f8540143b0e979d1fab15901b68b7254..7a1cf107d9cb543754b4abcd5b712af35d74f1ce 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/StripClusterOfflineData.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/StripClusterOfflineData.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -9,6 +9,8 @@ namespace NSWL1 { StripClusterOfflineData::StripClusterOfflineData(int bandId, + int bcid, + int phiId, int isSmall, int moduleId, int sectorId, @@ -20,6 +22,8 @@ namespace NSWL1 { float globY, float globZ) : StripClusterData(), m_bandId(bandId), + m_bcid(bcid), + m_phiId(phiId), m_isSmall(isSmall), m_moduleId(moduleId), m_sectorId(sectorId), diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/StripClusterTool.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/StripClusterTool.cxx index 57549dfdb2d6b42b63d05b40a2bbd6ae592cfa4c..d00b74aa3aba8f4fe06810180982494bbf2d26c9 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/StripClusterTool.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/StripClusterTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Athena/Gaudi includes @@ -10,14 +10,32 @@ #include "TrigT1NSWSimTools/StripClusterTool.h" #include "TrigT1NSWSimTools/StripOfflineData.h" +//Event info includes +#include "EventInfo/EventInfo.h" +#include "EventInfo/EventID.h" + // Muon software includes #include "MuonReadoutGeometry/MuonDetectorManager.h" #include "MuonReadoutGeometry/sTgcReadoutElement.h" #include "MuonIdHelpers/sTgcIdHelper.h" +#include "MuonDigitContainer/sTgcDigitContainer.h" +#include "MuonDigitContainer/sTgcDigit.h" #include "MuonSimData/MuonSimDataCollection.h" #include "MuonSimData/MuonSimData.h" +// random numbers +#include "AthenaKernel/IAtRndmGenSvc.h" +#include "CLHEP/Random/RandFlat.h" +#include "CLHEP/Random/RandGauss.h" +// local includes #include "TTree.h" +#include "TVector3.h" + +#include <functional> +#include <algorithm> +#include <map> +#include <utility> + namespace NSWL1 { @@ -25,6 +43,8 @@ namespace NSWL1 { StripClusterTool::StripClusterTool( const std::string& type, const std::string& name, const IInterface* parent) : AthAlgTool(type,name,parent), m_incidentSvc("IncidentSvc",name), + m_rndmSvc("AtRndmGenSvc",name), + m_rndmEngine(0), m_detManager(0), m_sTgcIdHelper(0), m_tree(0), @@ -37,12 +57,6 @@ namespace NSWL1 { StripClusterTool::~StripClusterTool() { - // Clear Ntuple variables - // if(m_cl_charge) delete m_cl_charge; - //if(m_cl_eta) delete m_cl_eta; - //if(m_cl_phi) delete m_cl_phi; - - } @@ -94,6 +108,14 @@ namespace NSWL1 { } m_incidentSvc->addListener(this,IncidentType::BeginEvent); + // retrieve the Random Service + if( m_rndmSvc.retrieve().isFailure() ) { + ATH_MSG_FATAL("Failed to retrieve the Random Number Service"); + return StatusCode::FAILURE; + } else { + ATH_MSG_INFO("Random Number Service successfully retrieved"); + } + // retrieve the MuonDetectormanager if( detStore()->retrieve( m_detManager ).isFailure() ) { ATH_MSG_FATAL("Failed to retrieve the MuonDetectorManager"); @@ -152,44 +174,41 @@ namespace NSWL1 { m_cl_module= new std::vector<int>(); m_cl_layer= new std::vector<int>(); m_cl_bandId= new std::vector<int>(); - + m_cl_phiId= new std::vector<int>(); if (m_tree) { - std::string ToolName = name().substr( name().find("::")+2,std::string::npos ); + + std::string ToolName = name().substr( name().find("::")+2,std::string::npos ); const char* n = ToolName.c_str(); m_tree->Branch(TString::Format("%s_cl_n",n).Data(),&m_cl_n,TString::Format("%s_cl_n/i",n).Data()); - m_tree->Branch(TString::Format("%s_cl_charge",n).Data(),&m_cl_charge); - m_tree->Branch(TString::Format("%s_cl_x",n).Data(),&m_cl_x); - m_tree->Branch(TString::Format("%s_cl_y",n).Data(),&m_cl_y); - m_tree->Branch(TString::Format("%s_cl_z",n).Data(),&m_cl_z); - m_tree->Branch(TString::Format("%s_cl_lx",n).Data(),&m_cl_lx); - m_tree->Branch(TString::Format("%s_cl_ly",n).Data(),&m_cl_ly); - m_tree->Branch(TString::Format("%s_cl_lz",n).Data(),&m_cl_lz); - m_tree->Branch(TString::Format("%s_cl_ltgx",n).Data(),&m_cl_ltgx); - m_tree->Branch(TString::Format("%s_cl_ltgy",n).Data(),&m_cl_ltgy); - m_tree->Branch(TString::Format("%s_cl_ltgz",n).Data(),&m_cl_ltgz); - m_tree->Branch(TString::Format("%s_cl_size",n).Data(),&m_cl_size); - m_tree->Branch(TString::Format("%s_cl_isSmall",n).Data(),&m_cl_isSmall); - m_tree->Branch(TString::Format("%s_cl_side",n).Data(),&m_cl_side); - m_tree->Branch(TString::Format("%s_cl_wedge",n).Data(),&m_cl_wedge); - m_tree->Branch(TString::Format("%s_cl_sector",n).Data(),&m_cl_sector); - m_tree->Branch(TString::Format("%s_cl_module",n).Data(),&m_cl_module); - m_tree->Branch(TString::Format("%s_cl_layer",n).Data(),&m_cl_layer); - m_tree->Branch(TString::Format("%s_cl_bandId",n).Data(),&m_cl_bandId); - m_tree->Branch(TString::Format("%s_cl_truth_x",n).Data(),&m_cl_truth_x); - m_tree->Branch(TString::Format("%s_cl_truth_y",n).Data(),&m_cl_truth_y); - m_tree->Branch(TString::Format("%s_cl_truth_z",n).Data(),&m_cl_truth_z); - m_tree->Branch(TString::Format("%s_cl_truth_lx",n).Data(),&m_cl_truth_lx); - m_tree->Branch(TString::Format("%s_cl_truth_ly",n).Data(),&m_cl_truth_ly); - m_tree->Branch(TString::Format("%s_cl_truth_lz",n).Data(),&m_cl_truth_lz); - m_tree->Branch(TString::Format("%s_cl_truth_E",n).Data(),&m_cl_truth_E); - m_tree->Branch(TString::Format("%s_cl_truth_n",n).Data(),&m_cl_truth_n); - - - - - + m_tree->Branch(TString::Format("%s_cl_charge",n).Data(),&m_cl_charge); + m_tree->Branch(TString::Format("%s_cl_x",n).Data(),&m_cl_x); + m_tree->Branch(TString::Format("%s_cl_y",n).Data(),&m_cl_y); + m_tree->Branch(TString::Format("%s_cl_z",n).Data(),&m_cl_z); + m_tree->Branch(TString::Format("%s_cl_lx",n).Data(),&m_cl_lx); + m_tree->Branch(TString::Format("%s_cl_ly",n).Data(),&m_cl_ly); + m_tree->Branch(TString::Format("%s_cl_lz",n).Data(),&m_cl_lz); + m_tree->Branch(TString::Format("%s_cl_ltgx",n).Data(),&m_cl_ltgx); + m_tree->Branch(TString::Format("%s_cl_ltgy",n).Data(),&m_cl_ltgy); + m_tree->Branch(TString::Format("%s_cl_ltgz",n).Data(),&m_cl_ltgz); + m_tree->Branch(TString::Format("%s_cl_size",n).Data(),&m_cl_size); + m_tree->Branch(TString::Format("%s_cl_isSmall",n).Data(),&m_cl_isSmall); + m_tree->Branch(TString::Format("%s_cl_side",n).Data(),&m_cl_side); + m_tree->Branch(TString::Format("%s_cl_wedge",n).Data(),&m_cl_wedge); + m_tree->Branch(TString::Format("%s_cl_sector",n).Data(),&m_cl_sector); + m_tree->Branch(TString::Format("%s_cl_module",n).Data(),&m_cl_module); + m_tree->Branch(TString::Format("%s_cl_layer",n).Data(),&m_cl_layer); + m_tree->Branch(TString::Format("%s_cl_bandId",n).Data(),&m_cl_bandId); + m_tree->Branch(TString::Format("%s_cl_phiId",n).Data(),&m_cl_phiId); + m_tree->Branch(TString::Format("%s_cl_truth_x",n).Data(),&m_cl_truth_x); + m_tree->Branch(TString::Format("%s_cl_truth_y",n).Data(),&m_cl_truth_y); + m_tree->Branch(TString::Format("%s_cl_truth_z",n).Data(),&m_cl_truth_z); + m_tree->Branch(TString::Format("%s_cl_truth_lx",n).Data(),&m_cl_truth_lx); + m_tree->Branch(TString::Format("%s_cl_truth_ly",n).Data(),&m_cl_truth_ly); + m_tree->Branch(TString::Format("%s_cl_truth_lz",n).Data(),&m_cl_truth_lz); + m_tree->Branch(TString::Format("%s_cl_truth_E",n).Data(),&m_cl_truth_E); + m_tree->Branch(TString::Format("%s_cl_truth_n",n).Data(),&m_cl_truth_n); } else { @@ -202,7 +221,6 @@ namespace NSWL1 { void StripClusterTool::reset_ntuple_variables() { // if ntuple is not booked nothing to do if ( m_tree==0 ) return; - //reset the ntuple variables clear_ntuple_variables(); } @@ -232,8 +250,6 @@ namespace NSWL1 { m_cl_truth_lx->clear(); m_cl_truth_ly->clear(); m_cl_truth_lz->clear(); - - m_cl_side->clear(); m_cl_isSmall->clear(); m_cl_wedge->clear(); @@ -241,6 +257,7 @@ namespace NSWL1 { m_cl_module->clear(); m_cl_layer->clear(); m_cl_bandId->clear(); + m_cl_phiId->clear(); m_clusters.clear(); } void StripClusterTool::fill_strip_validation_id(std::vector<std::unique_ptr<StripClusterData>>& clusters) { @@ -248,9 +265,6 @@ void StripClusterTool::fill_strip_validation_id(std::vector<std::unique_ptr<Stri ATH_MSG_DEBUG("M_Clusters recieved " << m_clusters.size()); - - - bool first_strip=true; const MuonSimDataCollection* sdo_container = 0; StatusCode sc = evtStore()->retrieve( sdo_container, m_sTgcSdoContainer.value().c_str() ); @@ -310,15 +324,8 @@ void StripClusterTool::fill_strip_validation_id(std::vector<std::unique_ptr<Stri double truth_globalPosX = hit_gpos.x(); double truth_globalPosY = hit_gpos.y(); double truth_globalPosZ = hit_gpos.z(); - float truth_energy = strip_sdo.word(); - //Amg::Vector2D lpos; - //Amg::Vector3D hit_gpos(truth_globalPosX, truth_globalPosY,truth_globalPosZ); - //Amg::Vector3D orig(0,0,0); - // This orig arugment dosen't appear to do anything - //rdoEl->surface(Id).globalToLocal(hit_gpos, orig, lpos); - if(fabs(locx-lpos.x())>.001 || fabs(locy - lpos.y())>.001){ ATH_MSG_DEBUG("OLD locx " << locx <<" new locx "<<lpos.x() <<" b " << int(locx!=lpos.x())); ATH_MSG_DEBUG("OLD locy " << locy <<" new locy "<<lpos.y() << " b " << int(locy!=lpos.y())); @@ -326,10 +333,10 @@ void StripClusterTool::fill_strip_validation_id(std::vector<std::unique_ptr<Stri ATH_MSG_DEBUG("Cluster hit, truth globalPosX=" << truth_globalPosX << ", truth globalPosY=" << truth_globalPosY << ", truth globalPosZ=" << truth_globalPosZ - << ", truth enegy deposit =" << truth_energy); + << ", truth enegy deposit =" << truth_energy << std::endl); ATH_MSG_DEBUG("Cluster hit, truth localPosX=" << lpos.x() << ", truth localPosY=" << lpos.y() - << ", truth enegy deposit =" << truth_energy); + << ", truth enegy deposit =" << truth_energy << std::endl); m_cl_truth_x->push_back( hit_gpos.x() ); m_cl_truth_y->push_back( hit_gpos.y() ); @@ -338,17 +345,10 @@ void StripClusterTool::fill_strip_validation_id(std::vector<std::unique_ptr<Stri m_cl_truth_lx->push_back( lpos.x() ); m_cl_truth_ly->push_back( lpos.y() ); m_cl_truth_lz->push_back( 0 ); - m_cl_truth_E->push_back( truth_energy ); - //m_cl_truth_n->push_back(n_clus ); - - /// locx=lpos.x(); - // locy=lpos.y(); } } - //ATH_MSG_DEBUG("Cluster " << this_cl << " strip: " << this_cl->at(s_i)); - //ATH_MSG_DEBUG("Cluster " << this_cl << " strip: " << this_cl->at(s_i) <<" charge: " << this_cl->at(s_i)->strip_charge_6bit()); float s_charge=this_cl->at(s_i)->strip_charge_6bit(); charge+=s_charge; x_pos+=this_cl->at(s_i)->globX()*s_charge; @@ -388,50 +388,24 @@ void StripClusterTool::fill_strip_validation_id(std::vector<std::unique_ptr<Stri m_cl_lx->push_back(x_lpos); m_cl_ly->push_back(y_lpos); m_cl_lz->push_back(z_lpos); - - - // Identifier Id = this_cl->at(0)->Identity(); - //Trk::LocalPosition cl_lo(x_pos,y_pos); - // const MuonGM::sTgcReadoutElement* rdoEl = m_detManager->getsTgcReadoutElement(Id); - //const Trk::GlobalPosition* hit_gpos = rdoEl->surface(Id).localToGlobal(cl_lo); - //m_cl_ltgx->push_back(hit_gpos->x()); - //m_cl_ltgy->push_back(hit_gpos->y()); - //m_cl_ltgz->push_back(hit_gpos->z()); - - - - - m_cl_charge->push_back(charge); - m_cl_size->push_back(n_strip); - - m_cl_side->push_back(m_clusters.at(cl_i)->at(0)->sideId() ); - m_cl_isSmall->push_back(m_clusters.at(cl_i)->at(0)->isSmall() ); - m_cl_wedge->push_back(m_clusters.at(cl_i)->at(0)->wedge()); - m_cl_sector->push_back(m_clusters.at(cl_i)->at(0)->sectorId()); - m_cl_module->push_back(m_clusters.at(cl_i)->at(0)->moduleId() ); - m_cl_layer->push_back(m_clusters.at(cl_i)->at(0)->layer()); - m_cl_bandId->push_back(m_clusters.at(cl_i)->at(0)->bandId()); - - ATH_MSG_DEBUG("Cluster dump with X:" << x_pos << " Y: " << y_pos << " Z: " << z_pos << " cluster charge: " << charge); - ATH_MSG_DEBUG("Cluster dump with lX:" << x_lpos << " lY: " << y_lpos << " lZ: " << z_lpos << " cluster charge: " << charge); - - //S.I - /* - auto scod=new NSWL1::StripClusterOfflineData(m_clusters.at(cl_i)->at(0)->bandId(), - m_clusters.at(cl_i)->at(0)->isSmall(), - m_clusters.at(cl_i)->at(0)->moduleId(), - m_clusters.at(cl_i)->at(0)->sectorId(), - m_clusters.at(cl_i)->at(0)->wedge(), - m_clusters.at(cl_i)->at(0)->layer(), - n_strip, - charge, - x_pos, - y_pos, - z_pos); - */ - - auto stripClOfflData=std::make_unique<StripClusterOfflineData>( + m_cl_charge->push_back(charge); + m_cl_size->push_back(n_strip); + + m_cl_side->push_back(m_clusters.at(cl_i)->at(0)->sideId() ); + m_cl_isSmall->push_back(m_clusters.at(cl_i)->at(0)->isSmall() ); + m_cl_wedge->push_back(m_clusters.at(cl_i)->at(0)->wedge()); + m_cl_sector->push_back(m_clusters.at(cl_i)->at(0)->sectorId()); + m_cl_module->push_back(m_clusters.at(cl_i)->at(0)->moduleId() ); + m_cl_layer->push_back(m_clusters.at(cl_i)->at(0)->layer()); + m_cl_bandId->push_back(m_clusters.at(cl_i)->at(0)->bandId()); + m_cl_phiId->push_back(m_clusters.at(cl_i)->at(0)->phiId()); + ATH_MSG_DEBUG("Cluster dump with X:" << x_pos << " Y: " << y_pos << " Z: " << z_pos << " cluster charge: " << charge); + ATH_MSG_DEBUG("Cluster dump with lX:" << x_lpos << " lY: " << y_lpos << " lZ: " << z_lpos << " cluster charge: " << charge); + + auto stripClOfflData=std::make_unique<StripClusterOfflineData>( m_clusters.at(cl_i)->at(0)->bandId(), + m_clusters.at(cl_i)->at(0)->trig_BCID(), + m_clusters.at(cl_i)->at(0)->phiId(), m_clusters.at(cl_i)->at(0)->isSmall(), m_clusters.at(cl_i)->at(0)->moduleId(), m_clusters.at(cl_i)->at(0)->sectorId(), @@ -443,109 +417,106 @@ void StripClusterTool::fill_strip_validation_id(std::vector<std::unique_ptr<Stri y_pos, z_pos ); - clusters.push_back(std::move(stripClOfflData)); - //S.I - - + clusters.push_back(std::move(stripClOfflData)); + }//of m_clusters loop ATH_MSG_DEBUG("Finished Fill"); } - bool StripClusterTool::MatchModule(const std::unique_ptr<StripData>& one, const StripData* two){ - return one->sideId() == two->sideId() // side - && one->wedge()==two->wedge() // Wedge - && one->sectorId()==two->sectorId() // Sector - && one->moduleId()==two->moduleId() //Eta station - && one->layer()==two->layer() ; //layer - } - StatusCode StripClusterTool::cluster_strip_data( std::vector<std::unique_ptr<StripData>>& strips, std::vector< std::unique_ptr<StripClusterData> >& clusters){ - std::vector<std::unique_ptr<StripData>>::iterator hit=strips.begin(); - std::vector<std::unique_ptr<StripData>>::iterator hit_end=strips.end(); - //auto hit std::make_move_iterator(strips.begin()); - //auto hit_end std::make_move_iterator(strips.end()); - if (hit==hit_end)return StatusCode::SUCCESS; + + if(strips.size()==0){ + ATH_MSG_WARNING("Received 0 strip hits... Skip event"); + return StatusCode::SUCCESS; + } + + //S.I sort strip w.r.t channelId in ascending order + std::sort(strips.begin(),strips.end(), + [](const auto& s1,const auto& s2){return s1->channelId()<s2->channelId();} + ); + + /*S.I remove duplicate strip channels ... + The rightmost way is to define an == operator for stripdata// not sure if we need to include charge+time and such though + Im sure somehow we get duplicated strip channels. Need to check if all the other aspects like charge, time, etc are exactly the same for those ... + */ + auto pos = std::unique(strips.begin(), strips.end(), + [](const auto& s1, const auto& s2){ + return s1->channelId()==s2->channelId() && s1->channelId()==s2->channelId(); + } + ); + + strips.resize(std::distance(strips.begin(), pos)); + auto hit=strips.begin(); auto cr_cluster=std::make_shared< std::vector<std::unique_ptr<StripData>> >(); - // cr_cluster->push_back((*hit)); - StripData* p_hit=nullptr; - int c_ch=(*hit)->channelId(); + StripData* prev_hit=nullptr; + int first_ch=(*hit)->channelId();//channel id of the first strip ATH_MSG_DEBUG("Cluster Hits :" << (*hit)->channelId() << " " << m_sTgcIdHelper->gasGap( (*hit)->Identity()) << " " << (*hit)->moduleId() << " " << (*hit)->sectorId() << " " <<(*hit)->wedge() << " "<< (*hit)->sideId() ); - //S.I I dont understand this is this necesary ?? - hit++; - - //for(hit=strips.begin();hit!=hit_end;hit++){ - //for(auto const& hit=strips.begin();hit!=hit_end;hit++){ - for(auto & hit : strips){ - if(!(hit)->readStrip() )continue; - if( ((hit)->bandId()==-1) ){ // Someone from sTGC should really check this... - ATH_MSG_WARNING("Read Strip without BandId :" << (hit)->channelId() << " " << m_sTgcIdHelper->gasGap( (hit)->Identity()) - << " " << (hit)->moduleId() << " " << (hit)->sectorId() << " " <<(hit)->wedge() - << " "<< (hit)->sideId() ); + hit++;//S.I is this ncessary ? + + for(auto & this_hit : strips){ + if(!(this_hit)->readStrip() )continue; + if( ((this_hit)->bandId()==-1 || this_hit->phiId()==-1) ){ + ATH_MSG_WARNING("Read Strip without BandId :" << (this_hit)->channelId() << " " << m_sTgcIdHelper->gasGap( (this_hit)->Identity()) + << " " << (this_hit)->moduleId() << " " << (this_hit)->sectorId() << " " <<(this_hit)->wedge() + << " "<< (this_hit)->sideId() ); continue; } - //Identifier hit_id=(*hit)->Identity(); bool sameMod=false; - if (!p_hit){ - //S.I that should be ok as we dont manually delete p_hit - p_hit=hit.get(); - cr_cluster->push_back(std::move(hit)); + if (!prev_hit){//for the first time... + prev_hit=this_hit.get(); + cr_cluster->push_back(std::move(this_hit)); continue; } - else{ - sameMod=MatchModule((hit),p_hit); + else{ //executed when we are in the second strip and so on... + static auto MatchHits=[](const auto& a1,const auto& a2){ + if( a1->sideId() != a2->sideId() || + a1->sectorId() !=a2->sectorId() || + a1->isSmall() !=a2->isSmall() || + a1->moduleId() !=a2->moduleId() || + a1->wedge() !=a2->wedge() || + a1->layer() !=a2->layer() + ) return false; + + return true; + }; + sameMod=MatchHits(this_hit,prev_hit); } - //S.I - p_hit=hit.get(); - int chid=(hit)->channelId(); - //S.I - if (!((hit)->channelId()>c_ch && sameMod)) ATH_MSG_ERROR("Hits Ordered incorrectly!!!" ) ; // Someone from sTGC should really check this... - if ((hit)->channelId()==c_ch+1 && sameMod){ - cr_cluster->push_back(std::move(hit)); - } - else if ((hit)->channelId()==c_ch && sameMod){ - // Keep this for now - //cr_cluster->push_back((*hit)); - ATH_MSG_ERROR("Hits entered twice Discarding!!! ChannelId: " << (hit)->channelId() ); + prev_hit=this_hit.get(); + int this_chid=(this_hit)->channelId(); + if ( (this_hit->channelId()<first_ch) && sameMod ) { + ATH_MSG_ERROR("Hits Ordered incorrectly!!!" ); + return StatusCode::FAILURE; } + if ((this_hit)->channelId()==first_ch && sameMod){ + ATH_MSG_FATAL("Hits entered twice !!! ChannelId: " << (this_hit)->channelId() ); + return StatusCode::FAILURE; + } + + if ((this_hit)->channelId()==first_ch+1 && sameMod){ + cr_cluster->push_back(std::move(this_hit)); + } + else{ - // if (cr_cluster->size() >= 5)ATH_MSG_DEBUG("Large Cluster" << cr_cluster->size() << "hits cutting"); - // cr_cluster=new std::vector<StripData*>(); - // else { - m_clusters.push_back(std::move(cr_cluster)); + m_clusters.push_back(std::move(cr_cluster));//put the current cluster into the clusters buffer ATH_MSG_DEBUG("Adding Cluster with " << cr_cluster->size() << "hits" << m_clusters.size() << " m_clusters so far"); - - cr_cluster=std::make_shared<std::vector<std::unique_ptr<StripData>>>(); - cr_cluster->push_back(std::move(hit)); - // } + cr_cluster=std::make_shared<std::vector<std::unique_ptr<StripData>>>();//create a new empty cluster and assign this hit as the first hit + cr_cluster->push_back(std::move(this_hit)); } - //**************************************************** - //S.I from now on "hit" is nulled never access it here .. - //move these statements somewhere before we move "hit" - //p_hit=hit.get(); - c_ch=chid; - //***************************************************** + first_ch=this_chid; } if(cr_cluster->size() != 0)m_clusters.push_back(std::move(cr_cluster));//don't forget the last cluster in the loop - // No sector implemented yet!!! ATH_MSG_DEBUG("Found :" << m_clusters.size() << " M_Clusters "); - - - fill_strip_validation_id(clusters); return StatusCode::SUCCESS; } - - - - + } -// LocalWords: pos lpos diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/StripData.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/StripData.cxx index d8b9cc158cd4ac92a1dda43a394e90a45359f49c..10b80897761471aa7016fab9269006d5c754a7ef 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/StripData.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/StripData.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "TrigT1NSWSimTools/StripData.h" diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/StripOfflineData.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/StripOfflineData.cxx index 71e0024d897ed1e77da99e91bb87de5f6a2e1d05..6a3be29c697b43cd0ec2130c901db78bacf441a4 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/StripOfflineData.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/StripOfflineData.cxx @@ -1,16 +1,19 @@ /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ //Local includes #include "TrigT1NSWSimTools/StripOfflineData.h" +#include <string> + + namespace NSWL1 { StripOfflineData::StripOfflineData(Identifier id, const sTgcIdHelper* helper, const sTgcDigit* digit) : StripData(), - m_id(id), m_helper(helper),m_trig_bcid(0),m_band_id(-1) + m_id(id), m_helper(helper),m_trig_bcid(0),m_band_id(-1),m_phi_id(-1) { m_strip_charge_6bit=digit-> charge_6bit(); m_strip_charge_10bit= digit-> charge_10bit(); @@ -25,7 +28,9 @@ namespace NSWL1 { void StripOfflineData::setTrigBCID(int bcid) { m_trig_bcid = bcid; } - + void StripOfflineData::setTrigIndex(int idx){ + m_padTrigIndex=idx; + } void StripOfflineData::setStripCharge_6bit(int charge) { m_strip_charge_6bit = charge; } @@ -54,6 +59,8 @@ namespace NSWL1 { float StripOfflineData::time() const { return m_strip_time; } Identifier StripOfflineData::Identity() const { return m_id; } int StripOfflineData::trig_BCID() const { return m_trig_bcid; } + int StripOfflineData:: trigIndex() const { return m_padTrigIndex;} + float StripOfflineData::strip_charge() const {return m_strip_charge;} int StripOfflineData::strip_charge_6bit() const {return m_strip_charge_6bit;} int StripOfflineData::strip_charge_10bit() const {return m_strip_charge_10bit;} @@ -74,7 +81,7 @@ namespace NSWL1 { int StripOfflineData::sectorId() const { if (m_helper) { - return m_helper->stationPhi(m_id); + return m_helper->stationPhi(m_id); } return -1; } @@ -100,11 +107,11 @@ namespace NSWL1 { int StripOfflineData::isSmall() const { if (m_helper) { - std::string stName = m_helper->stationNameString(m_helper->stationName(m_id)); - bool isSmall = stName[2]=='S'; - return isSmall; - } - return -1; + std::string stName = m_helper->stationNameString(m_helper->stationName(m_id)); + bool isSmall = stName[2]=='S'; + return isSmall; + } + return 0; } @@ -158,20 +165,20 @@ namespace NSWL1 { return m_read_strip; } - void StripOfflineData::set_readStrip(bool readStrip) { - m_read_strip=readStrip; - } + void StripOfflineData::set_readStrip(bool readStrip){ + m_read_strip=readStrip; + } void StripOfflineData::set_locX(float pos) { m_lx=pos; - } + } void StripOfflineData::set_locY(float pos) { m_ly=pos; - } + } void StripOfflineData::set_locZ(float pos) { m_lz=pos; - } + } diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/StripSegmentTool.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/StripSegmentTool.cxx index 29317638c5f3e8faf8f6cdc346ecfae4e8e30228..3038d6309372944f52f6407947ebc6434e1d6a59 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/StripSegmentTool.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/StripSegmentTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // Athena/Gaudi includes @@ -11,34 +11,75 @@ #include "TrigT1NSWSimTools/StripOfflineData.h" #include "TrigT1NSWSimTools/tdr_compat_enum.h" +//Event info includes +#include "EventInfo/EventInfo.h" +#include "EventInfo/EventID.h" + + + +// Muon software includes +#include "MuonAGDDDescription/sTGCDetectorHelper.h" +#include "MuonAGDDDescription/sTGCDetectorDescription.h" +#include "MuonReadoutGeometry/MuonDetectorManager.h" +#include "MuonReadoutGeometry/sTgcReadoutElement.h" +#include "MuonIdHelpers/sTgcIdHelper.h" +#include "MuonDigitContainer/sTgcDigitContainer.h" +#include "MuonDigitContainer/sTgcDigit.h" +#include "MuonSimData/MuonSimDataCollection.h" +#include "MuonSimData/MuonSimData.h" +// random numbers +#include "AthenaKernel/IAtRndmGenSvc.h" +#include "CLHEP/Random/RandFlat.h" +#include "CLHEP/Random/RandGauss.h" + +// local includes #include "TTree.h" +#include "TVector3.h" +#include <functional> +#include <algorithm> #include <map> +#include <utility> +#include <math.h> namespace NSWL1 { StripSegmentTool::StripSegmentTool( const std::string& type, const std::string& name, const IInterface* parent) : AthAlgTool(type,name,parent), m_incidentSvc("IncidentSvc",name), - m_tree(0) - + m_tree(0), + m_rIndexBits(0), + m_dThetaBits(0), + m_zbounds({-1,1}), + m_etabounds({-1,1}), + m_rbounds({-1,-1}), + m_ridxScheme(0), + m_dtheta_min(0), + m_dtheta_max(0), + m_lutCreatorToolsTGC ("sTGC_RegionSelectorTable")//name can be made configurable through JO just in case storegate config. changes in the future { declareInterface<NSWL1::IStripSegmentTool>(this); declareProperty("DoNtuple", m_doNtuple = true, "input the StripTds branches into the analysis ntuple"); + declareProperty("sTGC_SdoContainerName", m_sTgcSdoContainer = "sTGC_SDO", "the name of the sTGC SDO container"); + declareProperty("rIndexBits", m_rIndexBits = 8, "number bits in R-index calculation"); + declareProperty("dthetaBits", m_dThetaBits = 5, "number bits in dTheta calculation"); + declareProperty("dthetaMin", m_dtheta_min = -15, "minimum allowed value for dtheta in mrad"); + declareProperty("dthetaMax", m_dtheta_max = 15, "maximum allowed value for dtheta in mrad"); + declareProperty("rIndexScheme", m_ridxScheme = 1, "rIndex slicing scheme/ 0-->R / 1-->eta"); + declareProperty("NSWTrigRDOContainerName", m_trigRdoContainer = "NSWTRGRDO"," Give a name to NSW trigger rdo container"); + } StripSegmentTool::~StripSegmentTool() { } - +// StatusCode StripSegmentTool::initialize() { - ATH_MSG_INFO( "initializing " << name() ); - - ATH_MSG_INFO( name() << " configuration:"); - + ATH_MSG_INFO("initializing " << name() ); + ATH_MSG_INFO(name() << " configuration:"); const IInterface* parent = this->parent(); const INamedInterface* pnamed = dynamic_cast<const INamedInterface*>(parent); std::string algo_name = pnamed->name(); @@ -52,6 +93,7 @@ namespace NSWL1 { } char ntuple_name[40]={'\0'}; + //memset(ntuple_name,'\0',40*sizeof(char)); sprintf(ntuple_name,"%sTree",algo_name.c_str()); m_tree = 0; @@ -60,7 +102,8 @@ namespace NSWL1 { if (sc.isFailure()) { ATH_MSG_FATAL("Could not retrieve the analysis ntuple from the THistSvc"); return sc; - } else { + } + else { ATH_MSG_INFO("Analysis ntuple succesfully retrieved"); sc = this->book_branches(); if (sc.isFailure()) { @@ -80,6 +123,12 @@ namespace NSWL1 { } m_incidentSvc->addListener(this,IncidentType::BeginEvent); + + ATH_CHECK( m_trigRdoContainer.initialize() ); + + ATH_CHECK(m_lutCreatorToolsTGC.retrieve()); + + ATH_CHECK( FetchDetectorEnvelope()); return StatusCode::SUCCESS; } @@ -88,135 +137,304 @@ namespace NSWL1 { this->reset_ntuple_variables(); } } + + StatusCode StripSegmentTool::FetchDetectorEnvelope(){//S.I : Sufficient to call this only once. probably inside init() + const MuonGM::MuonDetectorManager* p_det; + ATH_CHECK(detStore()->retrieve(p_det)); + const auto p_IdHelper =p_det->stgcIdHelper(); + const auto ModuleContext = p_IdHelper->module_context(); + auto regSelector = m_lutCreatorToolsTGC->getLUT(); + float rmin=-1.; + float rmax=-1.; + float zfar=-1.; + float znear=-1; + float etamin=-1; + float etamax=-1; + int ctr=0; + for(const auto& i : p_IdHelper->idVector()){// all modules + IdentifierHash moduleHashId; + p_IdHelper->get_hash( i, moduleHashId, &ModuleContext ); + auto module=regSelector->Module(moduleHashId); + if(module->zMax()<0) continue; + if(ctr==0){ + rmin=module->rMin(); + rmax=module->rMax(); + etamin=module->_etaMin(); + etamax=module->_etaMax(); + /* + we shouldnt care whether it's side A/C. However keep in mind that we always return positive nrs here. + So you may have to handle it later depending on what you want to calculate + */ + zfar=module->zMax(); + znear=module->zMin(); + + } + ctr++; + if(etamin>module->_etaMin() ) etamin=module->_etaMin(); + if(etamax<module->_etaMax() ) etamax=module->_etaMax(); + if(zfar<module->zMax()) zfar=module->zMax(); + if(znear>module->zMin()) znear=module->zMin(); + if(rmin>module->rMin()) rmin=module->rMin(); + if(rmax<module->rMax()) rmax=module->rMax(); + } + + if(rmin<=0 || rmax<=0){ + ATH_MSG_FATAL("Unable to fetch NSW r/z boundaries"); + return StatusCode::FAILURE; + } + m_rbounds= std::make_pair(rmin,rmax); + m_etabounds=std::make_pair(etamin,etamax); + m_zbounds=std::make_pair(znear,zfar); + ATH_MSG_INFO("rmin="<<m_rbounds.first<<" rmax="<<m_rbounds.second<<" zfar="<<zfar<<" znear="<<znear); + return StatusCode::SUCCESS; + } + uint8_t StripSegmentTool::findRIdx(const float& val){ + unsigned int nSlices=(1<<m_rIndexBits); + std::pair<float,float> range; + switch(m_ridxScheme){ + case 0: + range=m_rbounds; + break; + case 1: + range=m_etabounds; + break; + + default: + break; + } + + float step=(range.second-range.first)/nSlices; + if(val<=range.first) return 0; + if(val>=range.second) return nSlices-1; + for(uint8_t i=0;i<nSlices;i++){ + if(range.first+i*step>=val){ + return i; + } + } + return 0; + } + + + uint8_t StripSegmentTool::findDtheta(const float& val){ + uint8_t nbins_dtheta=1<<m_dThetaBits; + float step_dtheta=(m_dtheta_max-m_dtheta_min)/nbins_dtheta; + for(uint8_t i=0;i<nbins_dtheta;i++){ + if(val<m_dtheta_min+i*step_dtheta) return i; + } + return 0; + } + + StatusCode StripSegmentTool::find_segments(std::vector< std::unique_ptr<StripClusterData> >& clusters){ + /** S.I If you worry(you should) about events with no clusters why dont we add this at the very beginning ? ***/ + if (clusters.size()==0){ + ATH_MSG_WARNING("Received event with no clusters. Skipping..."); + return StatusCode::SUCCESS; + } + /*********************************************************/ + auto trgContainer=std::make_unique<Muon::NSW_TrigRawDataContainer>();//to be posted to the SG - std::map<int, std::vector<std::unique_ptr<StripClusterData>>[2] > cluster_map; // gather clusters by bandID and seperate in wedge - + int bcid=-1; + int sectorid=-1; + for( auto& cl : clusters){ - auto item =cluster_map.find(cl->bandId()); - if (item != cluster_map.end()){ - item->second[cl->wedge()-1].push_back(std::move(cl)); - } - else{ - cluster_map[cl->bandId()][cl->wedge()-1].push_back(std::move(cl)); - } + bcid=cl->BCID(); + /* + S.I : For the sector logic I guess we need sector Ids from 1 to 16 / per side + The convention followed by different people throghout this simulation chain (starting from padTDs Tool upto here) is : + sector Id ranges from 1 to 8 + combined with the info Small or Large. + */ + sectorid=cl->sectorId(); + if(cl->isSmall()) sectorid*=2; + else sectorid=sectorid*2-1; + /*****************************************************************************************************/ + auto item =cluster_map.find(cl->bandId()); + if (item != cluster_map.end()){ + item->second[cl->wedge()-1].push_back(std::move(cl)); + } + else{ + cluster_map[cl->bandId()][cl->wedge()-1].push_back(std::move(cl)); + } } + auto trgRawData=std::make_unique< Muon::NSW_TrigRawData>((uint16_t)(sectorid), (uint16_t)(bcid)); - for(const auto& band : cluster_map){ - int bandId=band.first; - if ((band.second[0].size() == 0) || (band.second[1].size() == 0)) continue; - - float glx1=0; - float gly1=0; - float glx2=0; - float gly2=0; - float glx=0; - float gly=0; - float phi=0; - float eta=0; - float charge1=0; - float charge2=0; - - //first measuement - float r1=0; - float z1=0; - for( const auto& cl : band.second[0] ){ - r1+=sqrt(pow(cl->globX()*cl->charge(),2)+pow(cl->globY()*cl->charge(),2)); - z1+=cl->globZ()*cl->charge(); - glx1+=cl->globX()*cl->charge(); - gly1+=cl->globY()*cl->charge(); - charge1+=cl->charge(); - } - - //first measuement - float r2=0; - float z2=0; - for( const auto& cl : band.second[1] ){ - r2+=sqrt(pow(cl->globX()*cl->charge(),2)+pow(cl->globY()*cl->charge(),2)); - z2+=cl->globZ()*cl->charge(); - glx2+=cl->globX()*cl->charge(); - gly2+=cl->globY()*cl->charge(); - charge2+=cl->charge(); - } - if(charge1!=0){ - r1=r1/charge1; - z1=z1/charge1; - glx1=glx1/charge1; - gly1=gly1/charge1; - } - if(charge2!=0){ - r2=r2/charge2; - z2=z2/charge2; - glx2=glx2/charge2; - gly2=gly2/charge2; - } - glx=(glx1+glx2)/2.; - gly=(gly1+gly2)/2.; - - float slope=(r2-r1)/(z2-z1); - float avg_r=(r1+r2)/2.; - float avg_z=(z1+z2)/2.; - float inf_slope=(avg_r/avg_z); - float theta_inf=atan(inf_slope); - float theta=atan(slope); - float dtheta=(theta_inf-theta)*1000;//In Milliradian - if(avg_z>0){ - eta=-log(tan(theta/2)); - } - else if(avg_z<0){ - eta=log(tan(-theta/2)); - } - else{ - ATH_MSG_ERROR("Segment Global Z at IP"); - } - if(glx>=0 && gly>=0){ - phi=atan(gly/glx); - } - else if(glx<0 && gly>0){ - phi=PI-atan(abs(gly/glx)); - } - else if(glx<0 && gly<0){ - phi=-1*PI+atan(gly/glx); - } - else if(glx>0 && gly<0){ - phi=-atan(abs(gly/glx)); - } - else{ - ATH_MSG_ERROR("Unexpected error, global x or global y are not a number"); - } - - m_seg_wedge1_size->push_back(band.second[0].size()); - m_seg_wedge2_size->push_back(band.second[1].size()); - - m_seg_bandId->push_back(bandId); - m_seg_theta->push_back(theta); - m_seg_dtheta->push_back(dtheta); - m_seg_eta->push_back(eta); - m_seg_phi->push_back(phi); - m_seg_global_r->push_back(avg_r); - m_seg_global_x->push_back(glx); - m_seg_global_y->push_back(gly); - m_seg_global_z->push_back(avg_z); - m_seg_dir_r->push_back(slope); - m_seg_dir_y->push_back(-99); - m_seg_dir_z->push_back(-99); - } - - + for(const auto& band : cluster_map){//main band loop + int bandId=band.first; + if (band.second[0].size() == 0){ + ATH_MSG_WARNING("Cluster size is zero for inner wedge trg with bandId "<<bandId<<"...skipping"); + continue; + } + + if(band.second[1].size() == 0){ + ATH_MSG_WARNING("Cluster size is zero for outer wedge trg with bandId "<<bandId<<"...skipping"); + continue; + } + + float glx1=0; + float gly1=0; + float glx2=0; + float gly2=0; + float glx=0; + float gly=0; + float phi=0; + float eta_inf=0; + float eta=0; + float charge1=0; + float charge2=0; + + //first measuement + float r1=0; + float z1=0; + for( const auto& cl : band.second[0] ){//inner + r1+=sqrt(pow(cl->globX()*cl->charge(),2)+pow(cl->globY()*cl->charge(),2)); + z1+=cl->globZ()*cl->charge(); + glx1+=cl->globX()*cl->charge(); + gly1+=cl->globY()*cl->charge(); + charge1+=cl->charge(); + } + + //first measurement + //S.I : This is SECOND measurement, not the 1st. Please be careful while copy/pasting + float r2=0; + float z2=0; + for( const auto& cl : band.second[1] ){//outer + r2+=sqrt(pow(cl->globX()*cl->charge(),2)+pow(cl->globY()*cl->charge(),2)); + z2+=cl->globZ()*cl->charge(); + glx2+=cl->globX()*cl->charge(); + gly2+=cl->globY()*cl->charge(); + charge2+=cl->charge(); + } + if(charge1!=0){ + r1=r1/charge1; + z1=z1/charge1; + glx1=glx1/charge1; + gly1=gly1/charge1; + } + if(charge2!=0){ + r2=r2/charge2; + z2=z2/charge2; + glx2=glx2/charge2; + gly2=gly2/charge2; + } + glx=(glx1+glx2)/2.; + gly=(gly1+gly2)/2.; + float slope=(r2-r1)/(z2-z1); + float avg_r=(r1+r2)/2.; + float avg_z=(z1+z2)/2.; + float inf_slope=(avg_r/avg_z); + //float dR=slope-inf_slope; + float theta_inf=atan(inf_slope); + float theta=atan(slope); + float dtheta=(theta_inf-theta)*1000;//In Milliradian + if(avg_z>0){ + eta_inf=-log(tan(theta_inf/2)); + eta=-log(tan(theta/2)); + } + else if(avg_z<0){ + eta_inf=log(tan(-theta_inf/2)); + eta=log(tan(theta/2)); + } + else{ + ATH_MSG_ERROR("Segment Global Z at IP");//S.I : Error so ? + } + + + //S.I instead of doing all these stuff like below, which is quite error prone why dont we use TVectors? + if(glx>=0 && gly>=0){ + phi=atan(gly/glx); + } + + else if(glx<0 && gly>0){ + phi=PI-atan(abs(gly/glx)); + } + else if(glx<0 && gly<0){ + phi=-1*PI+atan(gly/glx); + } + else if(glx>0 && gly<0){ + phi=-atan(abs(gly/glx)); + } + else{ + ATH_MSG_ERROR("Unexpected error, global x or global y are not a number");//S.I does this even necessary ? then what ? + } + + //However it needs to be kept an eye on... will be something in between 7 and 15 mrad needs to be decided + //if(fabs(dtheta)>15) return StatusCode::SUCCESS; + + //do not get confused. this one is trigger phiId + int phiId=band.second[0].at(0)->phiId(); + float delta_z=fabs(m_zbounds.second-avg_z); + float delta_r=delta_z*tan(theta_inf); + float rfar=avg_r+delta_r; + + if(r1>m_rbounds.second || r2>m_rbounds.second ){ + ATH_MSG_WARNING("measured r is out of detector envelope! r1="<<r1<<" r2="<<r2<<" rmax="<<m_rbounds.second); + } + + + uint8_t rIndex=0; + switch(m_ridxScheme){ + case 0: + rIndex=findRIdx(rfar); + break; + case 1: + rIndex=findRIdx(eta_inf); + break; + default: + break; + } + + + bool phiRes=true; + bool lowRes=false;//we do not have a recipe for a singlewedge trigger. so lowres is always false for now + uint8_t dtheta_int=findDtheta(dtheta); + auto rdo_segment= std::make_unique<Muon::NSW_TrigRawDataSegment>( dtheta_int, (uint8_t)phiId, (rIndex), lowRes, phiRes); + trgRawData->push_back(std::move(rdo_segment)); + + //Fill ntuple info + m_seg_wedge1_size->push_back(band.second[0].size()); + m_seg_wedge2_size->push_back(band.second[1].size()); + m_seg_bandId->push_back(bandId); + m_seg_phiId->push_back(phiId); + m_seg_rIdx->push_back(rIndex); + m_seg_theta->push_back(theta); + m_seg_dtheta->push_back(dtheta); + m_seg_dtheta_int->push_back(dtheta_int); + m_seg_eta->push_back(eta); + m_seg_eta_inf->push_back(eta_inf); + m_seg_phi->push_back(phi); + m_seg_global_r->push_back(avg_r); + m_seg_global_x->push_back(glx); + m_seg_global_y->push_back(gly); + m_seg_global_z->push_back(avg_z); + m_seg_dir_r->push_back(slope); + m_seg_dir_y->push_back(-99); + m_seg_dir_z->push_back(-99); + + }//end of clmap loop + + + //save rdo to the SG + trgContainer->push_back(std::move(trgRawData)); + auto rdohandle = SG::makeHandle( m_trigRdoContainer ); + ATH_CHECK( rdohandle.record( std::move(trgContainer))); return StatusCode::SUCCESS; } StatusCode StripSegmentTool::book_branches() { + // m_cl_n= 0; + // m_cl_charge = new std::vector< int >(); m_seg_theta = new std::vector< float >(); m_seg_dtheta = new std::vector< float >(); - m_seg_eta = new std::vector< float >(); + m_seg_dtheta_int = new std::vector< uint8_t >(); + m_seg_eta = new std::vector< float >(); + m_seg_eta_inf=new std::vector< float >(); m_seg_phi = new std::vector< float >(); m_seg_global_r = new std::vector< float >(); m_seg_global_x = new std::vector< float >(); @@ -226,6 +444,8 @@ namespace NSWL1 { m_seg_dir_y = new std::vector< float >(); m_seg_dir_z = new std::vector< float >(); m_seg_bandId = new std::vector< int >(); + m_seg_phiId = new std::vector< int >(); + m_seg_rIdx=new std::vector< int >(); m_seg_wedge1_size = new std::vector< int >(); m_seg_wedge2_size = new std::vector< int >(); @@ -234,8 +454,10 @@ namespace NSWL1 { const char* n = ToolName.c_str(); m_tree->Branch(TString::Format("%s_seg_theta",n).Data(),&m_seg_theta); m_tree->Branch(TString::Format("%s_seg_dtheta",n).Data(),&m_seg_dtheta); + m_tree->Branch(TString::Format("%s_seg_dtheta_int",n).Data(),&m_seg_dtheta_int); m_tree->Branch(TString::Format("%s_seg_eta",n).Data(),&m_seg_eta); + m_tree->Branch(TString::Format("%s_seg_eta_inf",n).Data(),&m_seg_eta_inf); m_tree->Branch(TString::Format("%s_seg_phi",n).Data(),&m_seg_phi); m_tree->Branch(TString::Format("%s_seg_global_r",n).Data(),&m_seg_global_r); @@ -248,11 +470,14 @@ namespace NSWL1 { m_tree->Branch(TString::Format("%s_seg_dir_y",n).Data(),&m_seg_dir_y); m_tree->Branch(TString::Format("%s_seg_dir_z",n).Data(),&m_seg_dir_z); m_tree->Branch(TString::Format("%s_seg_bandId",n).Data(),&m_seg_bandId); + m_tree->Branch(TString::Format("%s_seg_phiId",n).Data(),&m_seg_phiId); + m_tree->Branch(TString::Format("%s_seg_rIdx",n).Data(),&m_seg_rIdx); m_tree->Branch(TString::Format("%s_seg_wedge1_size",n).Data(),&m_seg_wedge1_size); m_tree->Branch(TString::Format("%s_seg_wedge2_size",n).Data(),&m_seg_wedge2_size); - - } + // else { + // return StatusCode::FAILURE; + // } return StatusCode::SUCCESS; } @@ -268,7 +493,9 @@ namespace NSWL1 { void StripSegmentTool::clear_ntuple_variables() { m_seg_theta->clear(); m_seg_dtheta->clear(); - m_seg_eta->clear(); + m_seg_dtheta_int->clear(); + m_seg_eta->clear(); + m_seg_eta_inf->clear(); m_seg_phi->clear(); m_seg_global_r->clear(); m_seg_global_x->clear(); @@ -278,6 +505,8 @@ namespace NSWL1 { m_seg_dir_y->clear(); m_seg_dir_z->clear(); m_seg_bandId->clear(); + m_seg_phiId->clear(); + m_seg_rIdx->clear(); m_seg_wedge2_size->clear(); m_seg_wedge1_size->clear(); } @@ -289,3 +518,5 @@ namespace NSWL1 { } + +// LocalWords: pos lpos diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/StripTdsOfflineTool.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/StripTdsOfflineTool.cxx index 99a1c93a1196e6f732473a9a761e45cc1f6cd4ea..a18dbe854fe1453283e3a5b0c1764045b384f7c4 100644 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/StripTdsOfflineTool.cxx +++ b/Trigger/TrigT1/TrigT1NSWSimTools/src/StripTdsOfflineTool.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ #include "GaudiKernel/ITHistSvc.h" @@ -7,6 +7,8 @@ #include "TrigT1NSWSimTools/StripTdsOfflineTool.h" #include "TrigT1NSWSimTools/StripOfflineData.h" +#include "TrigT1NSWSimTools/PadOfflineData.h" + #include "EventInfo/EventInfo.h" #include "EventInfo/EventID.h" @@ -21,8 +23,15 @@ #include "MuonAGDDDescription/sTGCDetectorDescription.h" #include "MuonAGDDDescription/sTGCDetectorHelper.h" +#include "AthenaKernel/IAtRndmGenSvc.h" +#include "CLHEP/Random/RandFlat.h" +#include "CLHEP/Random/RandGauss.h" + #include "TTree.h" +#include "TVector3.h" +#include <functional> +#include <algorithm> #include <map> #include <utility> @@ -45,6 +54,8 @@ namespace NSWL1 { StripTdsOfflineTool::StripTdsOfflineTool( const std::string& type, const std::string& name, const IInterface* parent) : AthAlgTool(type,name,parent), m_incidentSvc("IncidentSvc",name), + m_rndmSvc("AtRndmGenSvc",name), + m_rndmEngine(0), m_detManager(0), m_sTgcIdHelper(0), m_strip_cache_runNumber(-1), @@ -55,10 +66,14 @@ namespace NSWL1 { { declareInterface<NSWL1::IStripTdsTool>(this); + declareProperty("RndmEngineName", m_rndmEngineName = "StripTdsOfflineTool", "the name of the random engine"); declareProperty("sTGC_DigitContainerName", m_sTgcDigitContainer = "sTGC_DIGITS", "the name of the sTGC digit container"); declareProperty("sTGC_SdoContainerName", m_sTgcSdoContainer = "sTGC_SDO", "the name of the sTGC SDO container"); declareProperty("DoNtuple", m_doNtuple = false, "input the StripTds branches into the analysis ntuple"); + // reserve enough slots for the trigger sectors and fills empty vectors + // std::vector< std::vector<StripData*> >::iterator it = m_strip_cache.begin(); + //std::vector<std::unique_ptr<StripData>>::iterator it = m_strip_cache.begin(); } StripTdsOfflineTool::~StripTdsOfflineTool() { @@ -74,6 +89,8 @@ namespace NSWL1 { void StripTdsOfflineTool::clear_cache() { ATH_MSG_INFO( "Clearing Strip Cache"); + for(unsigned int i = 0; i < m_strip_cache.size(); ++i) + //delete m_strip_cache[i]; m_strip_cache.clear(); } @@ -81,6 +98,7 @@ namespace NSWL1 { ATH_MSG_INFO( "initializing " << name() ); ATH_MSG_INFO( name() << " configuration:"); + ATH_MSG_INFO(" " << std::setw(32) << std::setfill('.') << std::setiosflags(std::ios::left) << m_rndmEngineName.name() << m_rndmEngineName.value()); ATH_MSG_INFO(" " << std::setw(32) << std::setfill('.') << std::setiosflags(std::ios::left) << m_sTgcDigitContainer.name() << m_sTgcDigitContainer.value()); ATH_MSG_INFO(" " << std::setw(32) << std::setfill('.') << std::setiosflags(std::ios::left) << m_sTgcSdoContainer.name() << m_sTgcSdoContainer.value()); ATH_MSG_INFO(" " << std::setw(32) << std::setfill('.') << std::setiosflags(std::ios::left) << m_doNtuple.name() << ((m_doNtuple)? "[True]":"[False]") @@ -94,13 +112,14 @@ namespace NSWL1 { if ( m_doNtuple && algo_name=="NSWL1Simulation" ) { ITHistSvc* tHistSvc; - StatusCode sc = service("THistSvc", tHistSvc); + StatusCode sc = service("THistSvc", tHistSvc); if(sc.isFailure()) { ATH_MSG_FATAL("Unable to retrieve THistSvc"); return sc; } char ntuple_name[40]={'\0'}; + //memset(ntuple_name,'\0',40*sizeof(char)); sprintf(ntuple_name,"%sTree",algo_name.c_str()); m_tree = 0; @@ -124,10 +143,25 @@ namespace NSWL1 { ATH_MSG_FATAL("Failed to retrieve the Incident Service"); return StatusCode::FAILURE; } else { - ATH_MSG_INFO("Incident Service successfully rertieved"); + ATH_MSG_INFO("Incident Service successfully retrieved"); } m_incidentSvc->addListener(this,IncidentType::BeginEvent); + // retrieve the Random Service + if( m_rndmSvc.retrieve().isFailure() ) { + ATH_MSG_FATAL("Failed to retrieve the Random Number Service"); + return StatusCode::FAILURE; + } else { + ATH_MSG_INFO("Random Number Service successfully retrieved"); + } + + // retrieve the random engine + m_rndmEngine = m_rndmSvc->GetEngine(m_rndmEngineName); + if (m_rndmEngine==0) { + ATH_MSG_FATAL("Could not retrieve the random engine " << m_rndmEngineName); + return StatusCode::FAILURE; + } + // retrieve the MuonDetectormanager if( detStore()->retrieve( m_detManager ).isFailure() ) { ATH_MSG_FATAL("Failed to retrieve the MuonDetectorManager"); @@ -180,28 +214,28 @@ namespace NSWL1 { if (m_tree) { - std::string ToolName = name().substr( name().find("::")+2,std::string::npos ); + std::string ToolName = name().substr( name().find("::")+2,std::string::npos ); const char* n = ToolName.c_str(); m_tree->Branch(TString::Format("%s_nStripHits",n).Data(),&m_nStripHits,TString::Format("%s_nStripHits/i",n).Data()); - ATH_MSG_INFO("StripTdsOfflineTool Booking variable" << TString::Format("%s_nStripHits",n).Data()); - m_tree->Branch(TString::Format("%s_charge",n).Data(),&m_stripCharge); - m_tree->Branch(TString::Format("%s_charge_6bit",n).Data(),&m_stripCharge_6bit); - m_tree->Branch(TString::Format("%s_charge_10bit",n).Data(),&m_stripCharge_10bit); - m_tree->Branch(TString::Format("%s_global_X",n).Data(),&m_strip_global_X); - m_tree->Branch(TString::Format("%s_global_Y",n).Data(),&m_strip_global_Y); - m_tree->Branch(TString::Format("%s_global_Z",n).Data(),&m_strip_global_Z); - m_tree->Branch(TString::Format("%s_local_X",n).Data(),&m_strip_local_X); - m_tree->Branch(TString::Format("%s_local_Y",n).Data(),&m_strip_local_Y); - m_tree->Branch(TString::Format("%s_layer",n).Data(),&m_strip_layer); - m_tree->Branch(TString::Format("%s_isSmall",n).Data(),&m_strip_isSmall); - m_tree->Branch(TString::Format("%s_eta",n).Data(),&m_strip_eta); - m_tree->Branch(TString::Format("%s_phi",n).Data(),&m_strip_phi); - m_tree->Branch(TString::Format("%s_readStrip",n).Data(),&m_strip_readStrip); - - m_tree->Branch(TString::Format("%s_channel",n).Data(),&m_strip_channel); - m_tree->Branch(TString::Format("%s_BCID",n).Data(),&m_strip_BCID); - m_tree->Branch(TString::Format("%s_wedge",n).Data(),&m_strip_wedge); - m_tree->Branch(TString::Format("%s_time",n).Data(),&m_strip_time); + ATH_MSG_INFO("StripTdsOfflineTool Booking variable" << TString::Format("%s_nStripHits",n).Data()); + m_tree->Branch(TString::Format("%s_charge",n).Data(),&m_stripCharge); + m_tree->Branch(TString::Format("%s_charge_6bit",n).Data(),&m_stripCharge_6bit); + m_tree->Branch(TString::Format("%s_charge_10bit",n).Data(),&m_stripCharge_10bit); + m_tree->Branch(TString::Format("%s_global_X",n).Data(),&m_strip_global_X); + m_tree->Branch(TString::Format("%s_global_Y",n).Data(),&m_strip_global_Y); + m_tree->Branch(TString::Format("%s_global_Z",n).Data(),&m_strip_global_Z); + m_tree->Branch(TString::Format("%s_local_X",n).Data(),&m_strip_local_X); + m_tree->Branch(TString::Format("%s_local_Y",n).Data(),&m_strip_local_Y); + m_tree->Branch(TString::Format("%s_layer",n).Data(),&m_strip_layer); + m_tree->Branch(TString::Format("%s_isSmall",n).Data(),&m_strip_isSmall); + m_tree->Branch(TString::Format("%s_eta",n).Data(),&m_strip_eta); + m_tree->Branch(TString::Format("%s_phi",n).Data(),&m_strip_phi); + m_tree->Branch(TString::Format("%s_readStrip",n).Data(),&m_strip_readStrip); + + m_tree->Branch(TString::Format("%s_channel",n).Data(),&m_strip_channel); + m_tree->Branch(TString::Format("%s_BCID",n).Data(),&m_strip_BCID); + m_tree->Branch(TString::Format("%s_wedge",n).Data(),&m_strip_wedge); + m_tree->Branch(TString::Format("%s_time",n).Data(),&m_strip_time); } else { return StatusCode::FAILURE; @@ -216,6 +250,7 @@ namespace NSWL1 { this->clear_ntuple_variables(); //reset the ntuple variables m_nStripHits = 0; + return; } void StripTdsOfflineTool::clear_ntuple_variables() { @@ -241,7 +276,8 @@ namespace NSWL1 { m_strip_BCID->clear(); m_strip_time->clear(); m_strip_wedge->clear(); - + + return; } void StripTdsOfflineTool::fill_strip_validation_id() { @@ -258,11 +294,8 @@ namespace NSWL1 { m_strip_BCID->push_back(m_strip_cache.at(p)->trig_BCID()); m_strip_time->push_back(m_strip_cache.at(p)->time()); m_strip_wedge->push_back(m_strip_cache.at(p)->wedge()); - - } - - + return; } @@ -298,11 +331,10 @@ namespace NSWL1 { // delivering the required collection - for (unsigned int i=0; i< m_strip_cache.size(); i++) - { - // Check if a stip should be read according to pad triggers - strips.push_back(std::move(m_strip_cache.at(i))); - } + for (unsigned int i=0; i< m_strip_cache.size(); i++) { + // Check if a stip should be read according to pad triggers + strips.push_back(std::move(m_strip_cache.at(i))); + } ATH_MSG_DEBUG( "delivered n. " << strips.size() << " STRIP hits." ); return StatusCode::SUCCESS; @@ -337,40 +369,46 @@ namespace NSWL1 { for(; it!=it_e; ++it) { const sTgcDigitCollection* coll = *it; - ATH_MSG_DEBUG( "processing collection with size " << coll->size() ); + ATH_MSG_DEBUG( "processing collection with size " << coll->size() ); - for (unsigned int item=0; item<coll->size(); item++) { - const sTgcDigit* digit = coll->at(item); - Identifier Id = digit->identify(); - - const MuonGM::sTgcReadoutElement* rdoEl = m_detManager->getsTgcReadoutElement(Id); - - Amg::Vector2D strip_lpos; - Amg::Vector3D strip_gpos; - rdoEl->stripPosition(Id,strip_lpos); - Amg::Vector3D pos(strip_lpos.x(),strip_lpos.y(),0.0); + for (unsigned int item=0; item<coll->size(); item++) { + const sTgcDigit* digit = coll->at(item); + Identifier Id = digit->identify(); + + const MuonGM::sTgcReadoutElement* rdoEl = m_detManager->getsTgcReadoutElement(Id); + int channel_type = m_sTgcIdHelper->channelType(Id); + // process only Strip data + if (channel_type!=1) continue; + + Amg::Vector2D strip_lpos; + Amg::Vector3D strip_gpos; + rdoEl->stripPosition(Id,strip_lpos); + //Amg::Vector3D pos(strip_lpos.x(),strip_lpos.y(),0.0); - rdoEl->surface(Id).localToGlobal(strip_lpos, strip_gpos, strip_gpos); - - - std::string stName = m_sTgcIdHelper->stationNameString(m_sTgcIdHelper->stationName(Id)); - int stationEta = m_sTgcIdHelper->stationEta(Id); - int stationPhi = m_sTgcIdHelper->stationPhi(Id); - int wedge = m_sTgcIdHelper->multilayer(Id); - int layer = m_sTgcIdHelper->gasGap(Id); - int channel_type = m_sTgcIdHelper->channelType(Id); - int channel = m_sTgcIdHelper->channel(Id); - int bctag = digit->bcTag(); + // ATH_MSG_DEBUG( "Grabbed local pos" ); + auto stripSurface=rdoEl->surface(Id); + + stripSurface.localToGlobal(strip_lpos, strip_gpos, strip_gpos); + //strip_gpos = rdoEl->localToGlobalCoords(pos,Id); + + + std::string stName = m_sTgcIdHelper->stationNameString(m_sTgcIdHelper->stationName(Id)); + int stationEta = m_sTgcIdHelper->stationEta(Id); + int stationPhi = m_sTgcIdHelper->stationPhi(Id); + int wedge = m_sTgcIdHelper->multilayer(Id); + int layer = m_sTgcIdHelper->gasGap(Id); + + int channel = m_sTgcIdHelper->channel(Id); + int bctag = digit->bcTag(); - // process only Strip data - if (channel_type!=1) continue; - strip_hit_number++; - int strip_eta = 0;// m_sTgcIdHelper->stripEta(Id); - int strip_phi = 0;// m_sTgcIdHelper->stripPhi(Id); + strip_hit_number++; + + int strip_eta = 0;// m_sTgcIdHelper->stripEta(Id); + int strip_phi = 0;// m_sTgcIdHelper->stripPhi(Id); - ATH_MSG_DEBUG( "sTGC Strip hit " << strip_hit_number << ": Station Name [" << stName << "]" + ATH_MSG_DEBUG( "sTGC Strip hit " << strip_hit_number << ": Station Name [" << stName << "]" << " Station Eta [" << stationEta << "]" << " Station Phi [" << stationPhi << "]" << " Wedge [" << wedge << "]" @@ -381,117 +419,91 @@ namespace NSWL1 { << " Strip Phi [" << strip_phi << "]" << " Strip bcTAg [" << bctag << "]" ); - int isSmall = stName[2] == 'S'; + int isSmall = stName[2] == 'S'; - int trigger_sector = (isSmall)? stationPhi*2-1 : stationPhi*2-2; - int cache_index = (stationEta>0)? trigger_sector + 16 : trigger_sector; + int trigger_sector = (isSmall)? stationPhi*2-1 : stationPhi*2-2; + int cache_index = (stationEta>0)? trigger_sector + 16 : trigger_sector; - ATH_MSG_DEBUG( "sTGC Strip hit " << strip_hit_number << ": Trigger Sector [" << trigger_sector << "]" + ATH_MSG_DEBUG( "sTGC Strip hit " << strip_hit_number << ": Trigger Sector [" << trigger_sector << "]" << " Cache Index [" << cache_index << "]" ); - // process STRIP hit time: apply the time delay, set the BC tag for the hit according to the trigger capture window + // process STRIP hit time: apply the time delay, set the BC tag for the hit according to the trigger capture window - //ATH_MSG_INFO("Strip at GposZ=" << strip_gpos->z() << " belongs to multiplet "); - if(m_doNtuple){ - ATH_MSG_DEBUG( "Fill Stuff" ); - m_strip_global_X->push_back(strip_gpos.x()); - m_strip_global_Y->push_back(strip_gpos.y()); - m_strip_global_Z->push_back(strip_gpos.z()); - m_strip_local_X->push_back(strip_lpos.x()); - m_strip_local_Y->push_back(strip_lpos.y()); - m_strip_layer->push_back(layer); - m_strip_isSmall->push_back(isSmall); - m_strip_eta->push_back(stationEta); - m_strip_phi->push_back(stationPhi); - ATH_MSG_DEBUG( "Fill Stuff more" ); - } + //ATH_MSG_INFO("Strip at GposZ=" << strip_gpos->z() << " belongs to multiplet "); + if(m_doNtuple){ + ATH_MSG_DEBUG( "Fill Stuff" ); + m_strip_global_X->push_back(strip_gpos.x()); + m_strip_global_Y->push_back(strip_gpos.y()); + m_strip_global_Z->push_back(strip_gpos.z()); + m_strip_local_X->push_back(strip_lpos.x()); + m_strip_local_Y->push_back(strip_lpos.y()); + m_strip_layer->push_back(layer); + m_strip_isSmall->push_back(isSmall); + m_strip_eta->push_back(stationEta); + m_strip_phi->push_back(stationPhi); + ATH_MSG_DEBUG( "Fill Stuff more" ); + } - //S.I - auto strip=std::make_unique<StripOfflineData>(Id,m_sTgcIdHelper,digit); - //S.I - strip->set_locX(strip_lpos.x()); - strip->set_locY(strip_lpos.y()); - - - bool read_strip=false; - bool _tmp=false; - for( const auto& p : padTriggers){ - - if(p->sideId()!=strip->sideId()){ - ATH_MSG_DEBUG(" ReadStrip Trigger Candidate in different side " << p->sideId() << " " <<strip->sideId() ); - continue; - } - _tmp=readStrip(p->bandId(),strip.get(),p->m_pad_strip_info); //this readStrip is the function - if( _tmp and read_strip) ATH_MSG_DEBUG("Multiple pad trigger candidate in a single wedge for strip "<<read_strip ); - read_strip=read_strip || _tmp; - } + //S.I + //StripOfflineData* strip = new StripOfflineData(Id,m_sTgcIdHelper,digit); + auto strip=std::make_unique<StripOfflineData>(Id,m_sTgcIdHelper,digit); + //S.I + strip->set_locX(strip_lpos.x()); + strip->set_locY(strip_lpos.y()); + + - if (read_strip && strip->bandId() ==-1){ - ATH_MSG_DEBUG("StripTdsOfflineTool:NO MATCH ALL \n" << - "wedge:" << strip->wedge() << "\n" - <<"layer:"<< strip->layer() << "\n" - <<"loc_x:"<< strip->locX()<< "\n"); - } + bool read_strip=readStrip(strip.get(),padTriggers); + if (read_strip && (strip->bandId() ==-1 || strip->phiId()==-1 ) ){ + ATH_MSG_FATAL("StripTdsOfflineTool:NO MATCH ALL \n" << + "wedge:" << strip->wedge() << "\n" + <<"layer:"<< strip->layer() << "\n" + <<"loc_x:"<< strip->locX()<< "\n"); + return cStatus::FILL_ERROR; + } - strip->set_readStrip(read_strip); + strip->set_readStrip(read_strip); - strip->set_globX(strip_gpos.x()); - strip->set_globY(strip_gpos.y()); - strip->set_globZ(strip_gpos.z()); + strip->set_globX(strip_gpos.x()); + strip->set_globY(strip_gpos.y()); + strip->set_globZ(strip_gpos.z()); - strip->set_locX(strip_lpos.x()); - strip->set_locY(strip_lpos.y()); - strip->set_locZ(0 ); - m_strip_cache.push_back(std::move(strip)); - } + strip->set_locX(strip_lpos.x()); + strip->set_locY(strip_lpos.y()); + strip->set_locZ(0 ); + m_strip_cache.push_back(std::move(strip)); + }//collections - } + }//items if (m_doNtuple) this->fill_strip_validation_id(); ATH_MSG_DEBUG( "fill_strip_cache: end of processing" ); return OK; - } + } - bool StripTdsOfflineTool::readStrip(unsigned int bandID,StripData* strip,const std::vector<std::vector<float>>& pad_strip_info) - { + bool StripTdsOfflineTool::readStrip(StripData* strip,const std::vector<std::unique_ptr<PadTrigger>>& padTriggers){ /*! * ReadStrip(uint16_t bandID,StripData* strip): Simple function to return wether a fired strip should *be readout base on a pad trigger bandID * Inputs: Pad bandID (uint16_t), and StripData strip. */ - // test - // sTGCDetectorHelper detHelper; - // for (int i=0;i<8;i++) //loop on phi sectors - // { - // for (int j=0;j<3;j++) //loop on eta (=R) index - // { - // sTGCDetectorDescription* L_sTGC=detHelper.Get_sTGCDetector('L',j+1,i+1); - // std::cout<<"\t sTGC detector type "<<L_sTGC->GetName()<<std::endl; - // std::cout<<"\t chamber dimensions "<<L_sTGC->small_x()<<" "<<L_sTGC->large_x()<<" "<<L_sTGC->y()<<std::endl; - // std::cout<<"\t sPadWidth, lPadWidth "<<L_sTGC->roParameters.sPadWidth<<" "<<L_sTGC->roParameters.lPadWidth<<std::endl; - - // sTGCDetectorDescription* S_sTGC=detHelper.Get_sTGCDetector('S',j+1,i+1); - // std::cout<<"\t sTGC detector type "<<S_sTGC->GetName()<<std::endl; - // std::cout<<"\t chamber dimensions "<<S_sTGC->small_x()<<" "<<S_sTGC->large_x()<<" "<<S_sTGC->y()<<std::endl; - // std::cout<<"\t sPadWidth, lPadWidth "<<S_sTGC->roParameters.sPadWidth<<" "<<S_sTGC->roParameters.lPadWidth<<std::endl; - - // } - // } - //End test if (strip->bandId() !=-1){ ATH_MSG_DEBUG("StripTdsOfflineTool:ReadStrip: BandId already set\n" <<"moduleID:"<< strip->moduleId() +1 << "\n" <<"sectiorID:"<< strip->sectorId() + 1<< "\n" <<"layer:"<<strip->wedge()<< "\n"); } - + if (strip->phiId() !=-1){ + ATH_MSG_DEBUG("StripTdsOfflineTool:ReadStrip: PhiId already set\n" <<"moduleID:"<< strip->moduleId() +1 << "\n" + <<"sectiorID:"<< strip->sectorId() + 1<< "\n" <<"layer:"<<strip->wedge()<< "\n"); + } char side= strip->sideId() ? 'A' : 'C'; char type= strip->type(); @@ -502,6 +514,7 @@ namespace NSWL1 { //Get_sTGCDetector's 2nd input value can range from eta=1 to eta=3 //moduleID() provides the values -1 to -3 and 1 to 3, so we need abs value sTGC = sTGC_helper.Get_sTGCDetector(type,std::abs(strip->moduleId()),strip->sectorId(),strip->wedge(),side); + //sTGCDetectorDescription *sTGC = sTGC_helper.Get_sTGCDetector(strip->stationName()); if (!sTGC){ ATH_MSG_WARNING("StripTdsOfflineTool:ReadStrip: Could not find detector with:\n" << @@ -518,91 +531,64 @@ namespace NSWL1 { <<"layer:"<< strip->layer() << "\n" <<"loc_x:"<< strip->locX()<< "\n"); - for( auto pad_data: pad_strip_info){ - if (pad_data.size()!=4){ - ATH_MSG_WARNING("StripTdsOfflineTool:ReadStrip: pad data of incorrect size:\n"); - continue; - } - float wedge = pad_data.at(0); - float layer = pad_data.at(1); - int loc_min_y = pad_data.at(2); - int loc_max_y = pad_data.at(3); - - ATH_MSG_DEBUG("StripTdsOfflineTool:Pad: \n" << - "wedge:" << wedge << "\n" - <<"layer:"<< layer << "\n" - <<"loc_y:"<< loc_min_y << ":"<<loc_max_y << "\n"); - - - - if (wedge != strip->wedge()) continue; - if (layer != strip->layer()) continue; - if (strip->locX() > loc_max_y || strip->locX()< loc_min_y) continue; - strip->setBandId((int) bandID); - - ATH_MSG_DEBUG("StripTdsOfflineTool:MATCH"); - return true; - } - ATH_MSG_DEBUG("StripTdsOfflineTool:NoMATCH"); + for(const auto& trig :padTriggers){ + + const auto& innerbandsLocMinY=trig->m_trglocalminYInner; + const auto& innerbandsLocMaxY=trig->m_trglocalmaxYInner; + const auto& outerbandsLocMinY=trig->m_trglocalminYOuter; + const auto& outerbandsLocMaxY=trig->m_trglocalmaxYOuter; + const auto& innerLayers=trig->m_trgSelectedLayersInner; + const auto& outerLayers=trig->m_trgSelectedLayersOuter; + int idxinner=0; + for(const auto& lyr : innerLayers){ + int loc_min_y = innerbandsLocMinY.at(idxinner); + int loc_max_y = innerbandsLocMaxY.at(idxinner); + auto pad=trig->m_padsInner.at(idxinner); + int trgwedge=pad->multipletId(); + if (trgwedge != strip->wedge()|| + lyr != strip->layer() || + strip->sideId()!=pad->sideId() || + strip->isSmall()==pad->sectorType() || //strip returns 1 pad returns 0 for small + strip->sectorId()!=pad->sectorId() || + strip->moduleId() !=pad->moduleId() || + strip->locX() > loc_max_y+3.2 || + strip->locX() < loc_min_y-3.2 ) + + { + idxinner++; + continue; + } + strip->setBandId(trig->m_bandid); + strip->setPhiId(trig->m_phi_id); + return true; + }//inner layers loop + + int idxouter=0; + for(const auto& lyr : outerLayers){ + int loc_min_y = outerbandsLocMinY.at(idxouter); + int loc_max_y = outerbandsLocMaxY.at(idxouter); + + auto pad=trig->m_padsOuter.at(idxouter); + int trgwedge=pad->multipletId(); + + if (trgwedge != strip->wedge() || + lyr != strip->layer() || + strip->sideId()!=pad->sideId() || + strip->isSmall()==pad->sectorType() || //strip returns 1 pad returns 0 for small + strip->sectorId()!=pad->sectorId() || + strip->moduleId() !=pad->moduleId() || + strip->locX() > loc_max_y+3.2 || + strip->locX() < loc_min_y-3.2 ) + { + idxouter++; + continue; + } + strip->setBandId(trig->m_bandid); + strip->setPhiId(trig->m_phi_id); + return true; + }//outer layer loop + + }//padtriggers loop return false; } - - /* Code for when pand id is fixed*/ - - // sTGCReadoutParameters roParams=sTGC->GetReadoutParameters(); - - - // if (layer_index < 0 || layer_index >= roParams.firstTriggerBand.size()+1){ - // ATH_MSG_DEBUG("StripClusterTool:ReadStrip: Asked for layer that dosen't exist:" << layer_index+1); - // return false; - // } - // ATH_MSG_DEBUG("BandID" << " " << unsigned(bandID) << " ["<<roParams.firstTriggerBand.at(layer_index) <<","<< roParams.firstTriggerBand.at(layer_index)+ roParams.nTriggerBands.at(layer_index) << "]"); - - // if (unsigned(bandID) <= roParams.firstTriggerBand.at(layer_index)) { - // ATH_MSG_DEBUG("Module not in Trigger Band: low"); - // return false; - // } - // if (unsigned(bandID) >= roParams.firstTriggerBand.at(layer_index)+ roParams.nTriggerBands.at(layer_index)) { - // ATH_MSG_DEBUG("Module not in Trigger Band: high"); - // return false; } - - // int band_index=bandID-roParams.firstTriggerBand.at(layer_index); - // /* Strip where counting starts */ - // int start_strip=roParams.firstStripInTrigger.at(layer_index); - - // /* Grab correct layer */ - // std::vector<int>* stripsInBands=0; - // if (layer_index==0) stripsInBands= &(roParams.StripsInBandsLayer1); - // else if (layer_index==1) stripsInBands= &(roParams.StripsInBandsLayer2); - // else if (layer_index==2) stripsInBands= &(roParams.StripsInBandsLayer3); - // else if (layer_index==3) stripsInBands= &(roParams.StripsInBandsLayer4); - // else{ - // ATH_MSG_DEBUG("StripClusterTool:ReadStrip: Asked for layer that dosen't exist"); - // return false; - // } - // /* Sum over all other strips to get the starting strip for this band id */ - - // if (band_index >= stripsInBands->size() or band_index<0) { - // ATH_MSG_DEBUG("StripClusterTool:ReadStrip: band_index is out of range:"<< band_index <<" of " << stripsInBands->size()); - // return false; - // } - - // for( int i=1; i <band_index; i++) start_strip+=stripsInBands->at(i-1); - - // /* Check to see if this strip falls in this band Range */ - // if (strip->channelId() < start_strip){ - // ATH_MSG_DEBUG("Strip not in Trigger Band: low "<< strip->channelId() <<" "<<start_strip); - // return false;} - // if (strip->channelId() > start_strip+stripsInBands->at(band_index)){ - // ATH_MSG_DEBUG("Strip not in Trigger Band: high "<< strip->channelId() <<" "<<start_strip+stripsInBands->at(band_index)); - // return false; - // } - - // /* Some code here to cache this results */ - // strip->setBandId((int) bandID); - // return true; - - // } - - } diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/src/vector_utils.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/src/vector_utils.cxx deleted file mode 100644 index 807663f08e3f73390d1e1da10384b3021968ec16..0000000000000000000000000000000000000000 --- a/Trigger/TrigT1/TrigT1NSWSimTools/src/vector_utils.cxx +++ /dev/null @@ -1,24 +0,0 @@ -/* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration -*/ - -#include "TrigT1NSWSimTools/vector_utils.h" - -#include "TrigT1NSWSimTools/PadWithHits.h" -#include <sstream> -#include <iterator> - -namespace NSWL1 { - -std::string vec2str(const std::vector< size_t > &vec){ - std::ostringstream oss; - oss<<"["; - if(!vec.empty()) { - std::copy(vec.begin(), vec.end()-1, std::ostream_iterator<int>(oss, ",")); - oss << vec.back(); // avoid trailing ',' - } - oss<<"]"; - return oss.str(); -} - -} // nsw diff --git a/Trigger/TrigT1/TrigT1NSWSimTools/util/ut_polygons.cxx b/Trigger/TrigT1/TrigT1NSWSimTools/util/ut_polygons.cxx deleted file mode 100644 index 1b80dd178976600eaf4c26cb7d5b042f1bee0b0a..0000000000000000000000000000000000000000 --- a/Trigger/TrigT1/TrigT1NSWSimTools/util/ut_polygons.cxx +++ /dev/null @@ -1,72 +0,0 @@ -/* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration -*/ -#include "TrigT1NSWSimTools/GeoUtils.h" - -int main(){ - - using namespace NSWL1; - - Vertices vts1; - //a trapezoid - vts1.push_back(Vertex(0,0)); - vts1.push_back(Vertex(0,10)); - vts1.push_back(Vertex(10,10)); - vts1.push_back(Vertex(10,0)); - vts1.push_back(Vertex(0,0)); - - //a rectangle - std::vector<Vertex> vts2={ - Vertex(3,3), - Vertex(3,12), - Vertex(12,12), - Vertex(12,3), - Vertex(3,3) - }; - - std::vector<Vertex> vts3={ - Vertex(8,8), - Vertex(8,15), - Vertex(16,15), - Vertex(16,8), - Vertex(8,8) - }; - - - Polygon pol1=buildPolygon(vts1); - Polygon pol2=buildPolygon(vts2); - Polygon pol3=buildPolygon(vts3); - print(pol1); - print(pol2); - print(pol3); - - std::cout<<"polygon 1 has "<<nVertices(pol1)<<" vertices"<<std::endl; - Vertex v=getVertex(pol1,3); - std::cout<<"Whose fourth vertex coordinate of x is :"<<coordinate<0>(v)<<std::endl; - std::cout<<"Whose fourth vertex coordinate of y is :"<<coordinate<1>(v)<<std::endl; - - - std::vector<Polygon> overlaps=allIntersections(pol1,pol3); - //test the firstoverlap method - Polygon overlap0_13=firstIntersection(pol1,pol3); - std::cout<<"There are "<<overlaps.size()<<" intersections in between polygon1-3"<<std::endl; - print(overlap0_13); - - std::vector<Polygon> polygons={pol1,pol2,pol3}; - - Polygon overallintersection=intersectionRegion(polygons); - - unsigned int nvtx=nVertices(overallintersection); - std::cout<<"The resulting overlap between (1)/(2)/(3) : "<<std::endl; - print(overallintersection); - - std::cout<<"X-Y Coordinates of the overlapping region polygons 1-2-3 are : "<<std::endl; - for(unsigned int i=0;i<nvtx;i++){ - Vertex v=getVertex(overallintersection,i); - std::cout<<coordinate<0>(v)<<" "<<coordinate<1>(v)<<std::endl; - } - - std::cout<<"Area of the overlap (1)/(2)/(3) : "<<area(overallintersection)<<std::endl; - - return 0; -} diff --git a/Trigger/TriggerCommon/TriggerMenu/python/combined/generateCombinedChainDefs.py b/Trigger/TriggerCommon/TriggerMenu/python/combined/generateCombinedChainDefs.py index 1af96f4cdcb4bbcd16a68499b004d594090b9f13..133d7bd80363249510856ed95c27441a5ccce881 100644 --- a/Trigger/TriggerCommon/TriggerMenu/python/combined/generateCombinedChainDefs.py +++ b/Trigger/TriggerCommon/TriggerMenu/python/combined/generateCombinedChainDefs.py @@ -516,12 +516,18 @@ def _adddR(theChainDef,chainDicts,listOfChainDefs): for iS in range(0, len(theChainDef.signatureList) ): inputTE_taus_tmp=[] for TE in theChainDef.signatureList[iS]['listOfTriggerElements'] : - if 'EF_e' in TE or 'EF_mu' in TE: + el_TE = re.compile('_e[0-9]') + mu_TE = re.compile('_mu[0-9]') + tau_TE = re.compile('_tau[0-9]') + if 'EF_' in TE and ('_e' in TE or '_mu' in TE): # last lepton TE - inputTE_lepton=TE - if 'EF_e' in TE: chain_type = "eltau" - if 'EF_mu' in TE: chain_type = "mutau" - if 'EF_tau' in TE: + if len(re.findall(el_TE, TE)): + inputTE_lepton=TE + chain_type = "eltau" + elif len(re.findall(mu_TE, TE)): + inputTE_lepton=TE + chain_type = "mutau" + if 'EF_' in TE and len(re.findall(tau_TE, TE)): inputTE_taus_tmp+=[TE] if len(inputTE_taus_tmp)>0: # last set of tau TEs @@ -535,6 +541,7 @@ def _adddR(theChainDef,chainDicts,listOfChainDefs): if len(inputTEsEF)!=2: log.error("dRtt: found %d TEs instead of 2", len(inputTEsEF)) + log.error(inputTEsEF) maxdR=-1 mindR=-1 @@ -554,17 +561,19 @@ def _adddR(theChainDef,chainDicts,listOfChainDefs): log.error("No dRtt chain part found in tau-tau / tau-mu / tau-e dR Topo cut") from TrigTauHypo.TrigTauHypoConfig2012 import EFTauTopoHypo - from TrigTauHypo.TrigTauHypoConf import EFTauTopoFex + from TrigTauHypo.TrigTauHypoConfig2012 import EFTauTopoFex log.info('Topo picks up:') log.info(chainDicts[0]) log.info("Chain {} is of type {}".format(chainDicts[0]['chainName'], chain_type)) - EFFex = EFTauTopoFex(comb=chain_type) + EFFex = EFTauTopoFex( + 'EFTauTopoFex_{0}'.format(chain_type), + chain_type) theVars = ['DRMin', 'DRMax'] theThresh = [mindR * 0.1, maxdR * 0.1] # treshold specified as integers -> change them to e.g. 0.3, 3.0 TauTaudR_Hypo = EFTauTopoHypo( - 'EFTauTopo_{0}dRtt{1}_{2}'.format( + 'EFTauTopoHypo_{0}dRtt{1}_{2}'.format( str(mindR).replace('.', ''), str(maxdR).replace('.', ''), chain_type), theVars, theThresh) log.debug("Input TEs to dRtt algorithm: %s", inputTEsEF) diff --git a/Trigger/TriggerCommon/TriggerMenu/python/jet/AlgFactory.py b/Trigger/TriggerCommon/TriggerMenu/python/jet/AlgFactory.py index 4aa2707320b9a20b646deaef99c6417184639d58..61d57ac76905040a23a7264cc8d866b95393b152 100644 --- a/Trigger/TriggerCommon/TriggerMenu/python/jet/AlgFactory.py +++ b/Trigger/TriggerCommon/TriggerMenu/python/jet/AlgFactory.py @@ -433,6 +433,28 @@ class AlgFactory(object): algType = 'TrigHLTJetHypo_JetAttrs' kargs = self.jetattrs_kargs(algType, hypo) return [Alg(algType,(), kargs)] + + # Jona Bossio, February 2019 + def jvt_kargs(self, algType, hypo): + + kargs = {} + + kargs['name'] = '"%s_%s"' % (algType, hypo.jvt_string.replace('!', '-')) + + kargs['njet'] = hypo.njet + kargs['wp'] = hypo.wp + kargs['etmin'] = hypo.etmin + + kargs['chain_name'] = "'%s'" % self.chain_config.chain_name + + return kargs + + def hlthypo2_jvt(self, hypo): + + algType = 'TrigHLTJetHypo_JVT' + kargs = self.jvt_kargs(algType, hypo) + return [Alg(algType,(), kargs)] + def dijet_kargs(self, algType, hypo): diff --git a/Trigger/TriggerCommon/TriggerMenu/python/jet/ChainConfigMaker.py b/Trigger/TriggerCommon/TriggerMenu/python/jet/ChainConfigMaker.py index 7ab346d5567f60d2a73e540850d1e0ac8e844de3..edb77fa4ed8fc127044e18b8de7bb63eb76ec8f4 100644 --- a/Trigger/TriggerCommon/TriggerMenu/python/jet/ChainConfigMaker.py +++ b/Trigger/TriggerCommon/TriggerMenu/python/jet/ChainConfigMaker.py @@ -17,6 +17,8 @@ from dijet_parser3 import (dijet_parser, #import singlejmom_parser import jetattrs_parser +from jvt_parser import jvt_parser + # from lxml import etree as et from ChainConfig import ChainConfig from MenuData import MenuData @@ -315,6 +317,18 @@ def _get_dijet_string3(parts): return dijet_string return '' +def _get_jvt_string(parts): + """get the information for jvt chains""" + + vals = set([part['jvt'] for part in parts]) + if len(vals) == 1: + s = vals.pop() + _update_cache('jvt_string', s) + if s == 'nojvt': return '' + return s + + msg = '%s: multiple single jet moment string set' % err_hdr + raise RuntimeError(msg) def _get_cluster_calib(parts): @@ -423,6 +437,7 @@ def _get_hypo_type(parts): tla_flag = bool(_get_tla_string(parts)) dijet_flag = bool(_get_dijet_string3(parts)) jetattrs_flag = bool(_get_jetattrs_string(parts)) + jvt_flag = bool(_get_jvt_string(parts)) invm_string = _get_invm_string(parts) deta_string = _get_deta_string(parts) @@ -459,7 +474,8 @@ def _get_hypo_type(parts): 'dmass_deta_dphi': 'HLThypo2_dimass_deta_dphi', 'dijet': 'HLThypo2_dijet', 'test': 'HLThypo2_test', - 'jetattrs': 'HLThypo2_jetattrs'}[key] + 'jetattrs': 'HLThypo2_jetattrs', + 'jvt': 'HLThypo2_jvt'}[key] except: msg = err_hdr + ' unknown hypo key ' + key raise RuntimeError(msg) @@ -488,6 +504,7 @@ def _get_hypo_type(parts): 'dimass_deta_dphi': dimass_deta_dphi_flag, 'dijet': dijet_flag, 'test':test_flag, + 'jvt':jvt_flag, 'jetattrs':jetattrs_flag,}) # if htype is None: @@ -998,7 +1015,20 @@ def _setup_dijet_vars(parts): hypo = hypo_factory('HLThypo2_dijet', args) return hypo + +def _setup_jvt_vars(parts): + + jvt_string = _get_jvt_string(parts) + + args = {} + if jvt_parser(jvt_string, args): + raise RuntimeError('error passing jvt string ' + jvt_string) + + args['chain_name'] = cache['chain_name'] + args['jvt_string'] = jvt_string + hypo = hypo_factory('HLThypo2_jvt', args) + return hypo def _get_hypo_params(parts): @@ -1013,7 +1043,8 @@ def _get_hypo_params(parts): 'HLThypo2_tla': _setup_tla_vars, 'HLThypo2_ht': _setup_ht_vars, 'HLThypo2_dijet': _setup_dijet_vars, - 'HLThypo2_jetattrs': _setup_jetattrs_vars,}.get(hypo_type, None) + 'HLThypo2_jetattrs': _setup_jetattrs_vars, + 'HLThypo2_jvt': _setup_jvt_vars,}.get(hypo_type, None) if hypo_setup_fn is None: msg = '%s: unknown hypo type (JetDef bug) %s' % ( @@ -1082,7 +1113,7 @@ def chainConfigMaker(d): md.second_fex_params = _get_recl_params(parts) md.hypo_params = _get_hypo_params(parts) - + return cc @@ -1130,6 +1161,9 @@ if __name__ == '__main__': + _j0_ftk_jvt011et45 = { + 'run_rtt_diags':False, + 'EBstep': -1, 'signatures': '', 'stream': ['Main'], 'chainParts': [{'trigType': 'j', 'extra': '', 'trkopt': 'ftk', 'etaRange': '0eta320', 'jetattrs': 'nojetattrs', 'jvt': 'jvt011et45', 'threshold': '0', 'chainPartName': 'j0_ftk', 'recoAlg': 'a4', 'bTag': '', 'scan': 'FS', 'dataType': 'tc', 'calib': 'em', 'smc': 'nosmc', 'bMatching': [], 'L1item': '', 'bTracking': '', 'recoCutCalib': 'rccDefault', 'jetCalib': 'subjesIS', 'recoCutUncalib': 'rcuDefault', 'topo': [], 'TLA': '', 'cleaning': 'noCleaning', 'bConfig': [], 'multiplicity': '1', 'signature': 'Jet', 'addInfo': [], 'dataScouting': ''}], 'topo': [], 'chainCounter': 1001, 'groups': ['RATE:SingleJet', 'BW:Jet'], 'signature': 'Jet', 'topoThreshold': None, 'topoStartFrom': False, 'L1item': 'L1_MJJ-500-NFF', 'chainName': 'j0_ftk_jvt011et45'} # cc = chainConfigMaker(j460_a10r) # cc = chainConfigMaker(j85) @@ -1147,7 +1181,9 @@ if __name__ == '__main__': # cc = chainConfigMaker(j440_a10r_L1J100_2) # cc = chainConfigMaker(j0_0i1c200m400TLA_1) # cc = chainConfigMaker(j0_0i1c200m400TLA_2) - cc = chainConfigMaker(_j70_j50_0eta490_invm900j50_dPhi24_L1MJJ_500_NFF) + # cc = chainConfigMaker(_j70_j50_0eta490_invm900j50_dPhi24_L1MJJ_500_NFF) + cc = chainConfigMaker(_j0_ftk_jvt011et45) + print cc def do_all(): diff --git a/Trigger/TriggerCommon/TriggerMenu/python/jet/JetSequencesBuilder.py b/Trigger/TriggerCommon/TriggerMenu/python/jet/JetSequencesBuilder.py index 84d0dd83e01193592d447dcb5f0fd090fd77fab2..90a8430dadc42f93bc0b1a74bed1eb6442280a52 100644 --- a/Trigger/TriggerCommon/TriggerMenu/python/jet/JetSequencesBuilder.py +++ b/Trigger/TriggerCommon/TriggerMenu/python/jet/JetSequencesBuilder.py @@ -103,6 +103,7 @@ class JetSequencesBuilder(object): 'jh_tla': self.make_jh_tla, # TLA hypo 'jh_dijet': self.make_jh_dijet, # dijet hypo 'jh_jetattrs': self.make_jh_jetattrs, #jet attributes, including moments + 'jh_jvt': self.make_jh_jvt, # JVT hypo 'jh_dimass_deta': self.make_jh_dimass_deta, # dijets 'jh_dimass_deta_dphi': self.make_jh_dimass_deta_dphi, # dijets 'ps': self.make_ps, # partial scan Roi maker @@ -233,6 +234,8 @@ class JetSequencesBuilder(object): seq_order.append(('jh_dijet', h)) elif hypo_type in ('HLThypo2_jetattrs',): seq_order.append(('jh_jetattrs', h)) + elif hypo_type in ('HLThypo2_jvt',): + seq_order.append(('jh_jvt', h)) else: msg = '%s._make_sequence_list: unknown hypo type %s ' % ( self.__class__.__name__, str(hypo_type)) @@ -563,6 +566,15 @@ class JetSequencesBuilder(object): return AlgList(f(hypo), alias) + # Jona Bossio, February 2019 + def make_jh_jvt(self, hypo): + + f = self.alg_factory.hlthypo2_jvt + + alias = '%s_%s' % (hypo.hypo_type, self.chain_name_esc) + + return AlgList(f(hypo), alias) + def make_tt(self, arg): """Create an alg_list for the trigger tower unpacker""" diff --git a/Trigger/TriggerCommon/TriggerMenu/python/jet/hypo_factory.py b/Trigger/TriggerCommon/TriggerMenu/python/jet/hypo_factory.py index db353e7b0193cea519223a6dffba633a1faa461e..c5e0f904809711c59601e8b5410881702ebbb50a 100644 --- a/Trigger/TriggerCommon/TriggerMenu/python/jet/hypo_factory.py +++ b/Trigger/TriggerCommon/TriggerMenu/python/jet/hypo_factory.py @@ -13,6 +13,7 @@ def hypo_factory(key, args): 'HLThypo2_dimass_deta_dphi': HLThypo2_dimass_deta_dphi, 'HLThypo2_dijet': HLThypo2_dijet, 'HLThypo2_jetattrs': HLThypo2_jetattrs, + 'HLThypo2_jvt': HLThypo2_jvt, }.get(key) if klass == None: @@ -410,6 +411,26 @@ class HLThypo2_jetattrs(HypoAlg): return self.momentstr +# Jona Bossio, February 2019 +class HLThypo2_jvt(HypoAlg): + # Store parameters for a jvt scenario + + def __init__(self, ddict): + print "JVT hypo_factory dictionary "+str(ddict) + HypoAlg.__init__(self, ddict) + self.hypo_type = 'HLThypo2_jvt' + + def _check_args(self, ddict): + #check the constructor args + + must_have = ( + 'njet', + 'etmin', + 'wp', + ) + + HypoAlg.check_missing_args(self, must_have, ddict) + if __name__ == '__main__': d = {'m_mins': [900.0], 'm_maxs': [-1.0], 'beta_maxs': [-1.0], @@ -423,4 +444,8 @@ if __name__ == '__main__': d = {'jetVars': ['ktdr'], 'momentstr': 'subj360Iktdr', 'limit_maxs': ['10'], 'E': [360], 'limit_mins': ['0'], 'chain_name': 'j0_subj360Iktdr', 'has': ['yes'], 'jetattrs_string': 'subj360Iktdr'} - print hypo_factory('HLThypo2_jetattrs', d) + #print hypo_factory('HLThypo2_jetattrs', d) + + d = {'njet': [1], 'etmin': [45], 'wp': [11], 'jetvt_string': 'jvt011et45'} + + print hypo_factory('HLThypo2_jvt', d) diff --git a/Trigger/TriggerCommon/TriggerMenu/python/jet/jetDefInstantiator.py b/Trigger/TriggerCommon/TriggerMenu/python/jet/jetDefInstantiator.py index bde4d47bab0764013e35a9d395ce585060f45474..eded0da11546a5fa0abde64f2bf16a7677d64c44 100644 --- a/Trigger/TriggerCommon/TriggerMenu/python/jet/jetDefInstantiator.py +++ b/Trigger/TriggerCommon/TriggerMenu/python/jet/jetDefInstantiator.py @@ -53,6 +53,7 @@ from TrigHLTJetHypo.TrigHLTJetHypoConfig import (TrigHLTJetHypo2, # TrigHLTJetHypo_SMC, # noqa: F401 TrigHLTJetHypo_Dijet, TrigHLTJetHypo_JetAttrs, + TrigHLTJetHypo_JVT, ) from TrigDetCalib.TrigDetCalibConf import ScoutingStreamWriter # noqa: F401 diff --git a/Trigger/TriggerCommon/TriggerMenu/python/jet/jvt_parser.py b/Trigger/TriggerCommon/TriggerMenu/python/jet/jvt_parser.py new file mode 100644 index 0000000000000000000000000000000000000000..417be31cfd2493fda3373080c037f8fc2d36b00d --- /dev/null +++ b/Trigger/TriggerCommon/TriggerMenu/python/jet/jvt_parser.py @@ -0,0 +1,71 @@ +# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration + +import re +jvt_re = re.compile(r'((?P<njet>[1-9]))?jvt(?P<workingpoint>\d{3})?\et(?P<etmin>\d{2,3})$') + +def _jvt_parse(s): + """Parse the incoming string to find the working point, number of jets and minimum et""" + + result = {} + m = jvt_re.match(s) + if m is None: return(True, {}) # error + d = m.groupdict() + + key_map = { + 'njet': ('njet','n'), + 'wp': ('workingpoint','value'), + 'etmin': ('etmin','min'), + } + + for k, v in key_map.items(): + if d[v[0]] is not None: result[k] = {v[1]: d[v[0]]} + + return (False, result) + +def _jvt_decode(s): + result = { + 'njet': {'n':'1'}, + 'wp': {'value':'011'}, # other options are medium and tight + 'etmin': {'min':'15'}, + } + error, d = _jvt_parse(s) + if error: return(error, {}) + + for k in d: result[k] = d[k] + + return (False, result) + +def jvt_parser(s, args): + assert 'jvt' in s + err, jvt_params = _jvt_decode(s) + if err: return True # error + + args['njet'] = jvt_params['njet']['n'] + args['wp'] = jvt_params['wp']['value'][1:] + args['etmin'] = jvt_params['etmin']['min'] + + return False + +# For testing purposes +if __name__ == '__main__': + examples = [ + 'jvt1', + 'jvt1et15', + 'jvt11', + 'jvt11et15', + 'jvt011', + '4jvt011', + 'jvt011et', + '4jvt011et', + 'jvt011et15', + '4jvt011et15', + ] + + # Testing jvt_parser + for s in examples: + args = {} + err = jvt_parser(s,args) + if err: print 'ERROR, '+s+' chain not supported' + else: + print s+":" + for k in args.keys(): print k, args[k] diff --git a/Trigger/TriggerCommon/TriggerMenu/python/l1/Cabling.py b/Trigger/TriggerCommon/TriggerMenu/python/l1/Cabling.py index f6a713b838bfb904afa60ea0cfd5f66147446f18..8fe5516721531844ef2b66fc8926a1fc549d0556 100644 --- a/Trigger/TriggerCommon/TriggerMenu/python/l1/Cabling.py +++ b/Trigger/TriggerCommon/TriggerMenu/python/l1/Cabling.py @@ -86,6 +86,15 @@ class Cabling: from TriggerMenu.l1.Lvl1Flags import Lvl1Flags run1 = Lvl1Flags.CTPVersion()<=3 + + if thrtype == 'EM' and mapping >= 16: + mapping = 15 + elif thrtype == 'TAU' and mapping >= 16: + mapping = 15 + elif thrtype == 'JET' and mapping >= 25: + mapping = 24 + elif thrtype == 'XE' and mapping >=16: + mapping = 15 if run1: type2cablename = { 'MUON' : [(0,6,'MUCTPI')], @@ -199,6 +208,17 @@ class InputCable: else: self.thrtype = threshold.ttype self.mapping = int(threshold.mapping) + thrtype = self.thrtype + mapping = self.mapping + if thrtype == 'EM' and mapping >= 16: + mapping = 15 + elif thrtype == 'TAU' and mapping >= 16: + mapping = 15 + elif thrtype == 'JET' and mapping >= 25: + mapping = 24 + elif thrtype == 'XE' and mapping >=16: + mapping = 15 + self.mapping = mapping self.isDirectIn = False # True for TOPO and ALFA which go into CTPCore self.slot = None # input cable slot, possible values 7..9 diff --git a/Trigger/TriggerCommon/TriggerMenu/python/l1menu/ItemDef.py b/Trigger/TriggerCommon/TriggerMenu/python/l1menu/ItemDef.py index 8864464e389a28fb0e0e4b9cce3a8ffe94f80991..d6cfc35380f60604ce275afd8156fb45cbd41b55 100755 --- a/Trigger/TriggerCommon/TriggerMenu/python/l1menu/ItemDef.py +++ b/Trigger/TriggerCommon/TriggerMenu/python/l1menu/ItemDef.py @@ -91,6 +91,9 @@ class ItemDef: if not '_v6' in TriggerFlags.triggerMenuSetup() and not '_HI' in TriggerFlags.triggerMenuSetup(): LVL1MenuItem('L1_EM15VHI' ).setLogic( EM15VHI & physcond).setTriggerType( TT.calo ) # noqa: F821 LVL1MenuItem('L1_EM22VH' ).setLogic( EM22VH & physcond).setTriggerType( TT.calo ) # noqa: F821 + LVL1MenuItem('L1_eEM22' ).setLogic( eEM22 & physcond).setTriggerType( TT.calo ) # noqa: F821 + LVL1MenuItem('L1_eEM22VHI' ).setLogic( eEM22VHI & physcond).setTriggerType( TT.calo ) # noqa: F821 + LVL1MenuItem('L1_eEM20VHI' ).setLogic( eEM20VHI & physcond).setTriggerType( TT.calo ) # noqa: F821 LVL1MenuItem('L1_EM24VHIM' ).setLogic( EM24VHIM & physcond).setTriggerType( TT.calo ) # noqa: F821 else: LVL1MenuItem('L1_EM15HI' ).setLogic( EM15HI & physcond).setTriggerType( TT.calo ) # noqa: F821 @@ -122,6 +125,8 @@ class ItemDef: LVL1MenuItem('L1_2EM7' ).setLogic( EM7.x(2) & physcond).setTriggerType( TT.calo ) # noqa: F821 LVL1MenuItem('L1_2EM10' ).setLogic( EM10.x(2) & physcond).setTriggerType( TT.calo ) # noqa: F821 LVL1MenuItem('L1_2EM10VH' ).setLogic( EM10VH.x(2) & physcond).setTriggerType( TT.calo ) # noqa: F821 + LVL1MenuItem('L1_2eEM15VHI' ).setLogic( eEM15VHI.x(2) & physcond).setTriggerType( TT.calo ) # noqa: F821 + LVL1MenuItem('L1_2eEM20VH' ).setLogic( eEM20VH.x(2) & physcond).setTriggerType( TT.calo ) # noqa: F821 if not '_v8' in TriggerFlags.triggerMenuSetup(): LVL1MenuItem('L1_2EM8I').setLogic( EM8I.x(2) & physcond).setTriggerType(TT.calo) # noqa: F821 if '_v6' in TriggerFlags.triggerMenuSetup() or '_HI' in TriggerFlags.triggerMenuSetup(): @@ -152,11 +157,27 @@ class ItemDef: LVL1MenuItem('L1_EM15VH_3EM8VH' ).setLogic( EM15VH & EM8VH.x(3) & physcond).setTriggerType( TT.calo ) # noqa: F821 LVL1MenuItem('L1_EM15VH_3EM10VH' ).setLogic( EM15VH & EM10VH.x(3) & physcond).setTriggerType( TT.calo ) # noqa: F821 LVL1MenuItem('L1_EM15VH_2EM10VH_3EM7' ).setLogic( EM15VH & EM10VH.x(2) & EM7.x(3) & physcond).setTriggerType( TT.calo ) # noqa: F821 + LVL1MenuItem('L1_eEM20VH_3eEM10VH' ).setLogic( eEM20VH & eEM10VH.x(3) & physcond).setTriggerType( TT.calo ) # noqa: F821 if '_v6' in TriggerFlags.triggerMenuSetup() or '_HI' in TriggerFlags.triggerMenuSetup(): LVL1MenuItem('L1_EM18VH_3EM8VH' ).setLogic( EM18VH & EM8VH.x(3) & physcond).setTriggerType( TT.calo ) # noqa: F821 LVL1MenuItem('L1_EM18VH_2EM10VH_3EM7' ).setLogic( EM18VH & EM10VH.x(2) & EM7.x(3) & physcond).setTriggerType( TT.calo ) # noqa: F821 + # EM and MU + LVL1MenuItem('L1_2eEM8VH_MU10' ).setLogic( eEM8VH.x(2) & MU10 & physcond).setTriggerType( TT.calo ) # noqa: F821 + LVL1MenuItem('L1_eEM15VH_MU10' ).setLogic( eEM15VH & MU10 & physcond).setTriggerType( TT.calo ) # noqa: F821 + LVL1MenuItem('L1_eEM7_MU20' ).setLogic( eEM7 & MU20 & physcond).setTriggerType( TT.calo ) # noqa: F821 + # EM, tau and jet + LVL1MenuItem('L1_eEM15VHI_2eTAU12IM_4jJ12' ).setLogic( eEM15VHI & eTAU12IM.x(2) & jJ12.x(4) & physcond).setTriggerType( TT.calo ) # noqa: F821 + LVL1MenuItem('L1_eEM15VHI_2eTAU12IM_jJ25_3jJ12' ).setLogic( eEM15VHI & eTAU12IM.x(2) & jJ25 & jJ12.x(3) & physcond).setTriggerType( TT.calo ) # noqa: F821 + LVL1MenuItem('L1_eEM20VHI_eTAU20IM_2eTAU20_jJ25_3jJ20' ).setLogic( eEM20VHI & eTAU20IM & eTAU20.x(2) & jJ25 & jJ20.x(3) & physcond).setTriggerType( TT.calo ) # noqa: F821 + # EM, tau and XE + LVL1MenuItem('L1_eEM15VHI_2eTAU12IM_gXERHO35' ).setLogic( eEM15VHI & eTAU12IM.x(2) & gXERHO35 & physcond).setTriggerType( TT.calo ) # noqa: F821 + + + # EM and jet + LVL1MenuItem('L1_eEM18VHI_3jJ20' ).setLogic( eEM18VHI & jJ20.x(3) & physcond).setTriggerType( TT.calo ) # noqa: F821 + # LVL1MenuItem('L1_JJ15.23ETA49' ).setLogic( JJ1523ETA49 & physcond).setTriggerType(TT.calo) # noqa: F821 LVL1MenuItem('L1_J15.23ETA49' ).setLogic( J1523ETA49 & physcond).setTriggerType(TT.calo) # noqa: F821 LVL1MenuItem('L1_J15.24ETA49' ).setLogic( J1524ETA49 & physcond).setTriggerType(TT.calo) # noqa: F821 @@ -383,6 +404,8 @@ class ItemDef: #LVL1MenuItem('L1_TAU10IM').setLogic( HA10IM & physcond).setTriggerType( TT.calo ) # noqa: F821 LVL1MenuItem('L1_TAU12' ).setLogic( HA12 & physcond).setTriggerType( TT.calo ) # noqa: F821 + LVL1MenuItem('L1_eTAU12' ).setLogic( eTAU12 & physcond).setTriggerType( TT.calo ) # noqa: F821 + LVL1MenuItem('L1_eTAU100' ).setLogic( eTAU100 & physcond).setTriggerType( TT.calo ) # noqa: F821 LVL1MenuItem('L1_TAU12IL').setLogic( HA12IL & physcond).setTriggerType( TT.calo ) # noqa: F821 LVL1MenuItem('L1_TAU12IM').setLogic( HA12IM & physcond).setTriggerType( TT.calo ) # noqa: F821 @@ -527,6 +550,11 @@ class ItemDef: LVL1MenuItem('L1_MU10_TAU12IT_XE35' ).setLogic( MU10 & HA12IT & XE35 & physcond).setTriggerType( TT.calo ) # noqa: F821 LVL1MenuItem('L1_MU10_TAU12IM_XE40' ).setLogic( MU10 & HA12IM & XE40 & physcond).setTriggerType( TT.calo ) # noqa: F821 LVL1MenuItem('L1_TAU20I_2TAU12I_XE35' ).setLogic( HA20I & HA12I.x(2) & XE35 & physcond).setTriggerType( TT.calo ) # noqa: F821 + LVL1MenuItem('L1_eTAU20IM_2jJ20_gXERHO45' ).setLogic( eTAU20IM & jJ20.x(2) & gXERHO45 & physcond).setTriggerType( TT.calo ) # noqa: F821 + LVL1MenuItem('L1_eTAU20IM_2eTAU12IM_4jJ12.0ETA23' ).setLogic( eTAU20IM & eTAU12IM.x(2) & jJ120ETA23.x(4) & physcond).setTriggerType( TT.calo ) # noqa: F821 + LVL1MenuItem('L1_eTAU25IM_2eTAU20IM_2jJ25_3jJ20' ).setLogic( eTAU25IM & eTAU20IM.x(2) & jJ25.x(2) & jJ20.x(3) & physcond).setTriggerType( TT.calo ) # noqa: F821 + LVL1MenuItem('L1_eTAU40_2eTAU12IM_gXERHO40' ).setLogic( eTAU40 & eTAU12IM.x(2) & gXERHO40 & physcond).setTriggerType( TT.calo ) # noqa: F821 + LVL1MenuItem('L1_eTAU60_2eTAU40' ).setLogic( eTAU60 & eTAU40.x(2) & physcond).setTriggerType( TT.calo ) # noqa: F821 if not '_v6' in TriggerFlags.triggerMenuSetup() and not '_HI' in TriggerFlags.triggerMenuSetup(): LVL1MenuItem('L1_EM15VHI_TAU20IM_2TAU15_J25_2J20_3J15' ).setLogic( EM15VHI & HA20IM & HA15.x(2) & J25 & J20.x(2) & J15.x(3) & physcond).setTriggerType( TT.calo ) # noqa: F821 @@ -569,6 +597,8 @@ class ItemDef: LVL1MenuItem('L1_J175' ).setLogic( J175 & physcond).setTriggerType(TT.calo) # noqa: F821 LVL1MenuItem('L1_J250' ).setLogic( J250 & physcond).setTriggerType(TT.calo) # noqa: F821 LVL1MenuItem('L1_J400' ).setLogic( J400 & physcond).setTriggerType(TT.calo) # noqa: F821 + + LVL1MenuItem('L1_jJ100' ).setLogic( jJ100 & physcond).setTriggerType(TT.calo) # noqa: F821 LVL1MenuItem('L1_J10.31ETA49').setLogic( J1031ETA49 & physcond).setTriggerType(TT.calo) # noqa: F821 #LVL1MenuItem('L1_J20.31ETA49').setLogic( J2031ETA49 & physcond).setTriggerType(TT.calo) # noqa: F821 @@ -650,6 +680,18 @@ class ItemDef: LVL1MenuItem('L1_3J15.0ETA25' ).setLogic( J150ETA25.x(3) & physcond).setTriggerType(TT.calo) # noqa: F821 LVL1MenuItem('L1_4J15.0ETA25' ).setLogic( J150ETA25.x(4) & physcond).setTriggerType(TT.calo) # noqa: F821 LVL1MenuItem('L1_5J15.0ETA25' ).setLogic( J150ETA25.x(5) & physcond).setTriggerType(TT.calo) # noqa: F821 + + LVL1MenuItem('L1_3jJ35.0ETA23' ).setLogic( jJ350ETA23.x(3) & physcond).setTriggerType(TT.calo) # noqa: F821 + LVL1MenuItem('L1_3jJ50' ).setLogic( jJ50.x(3) & physcond).setTriggerType(TT.calo) # noqa: F821 + LVL1MenuItem('L1_4jJ15' ).setLogic( jJ15.x(4) & physcond).setTriggerType(TT.calo) # noqa: F821 + LVL1MenuItem('L1_4jJ15.0ETA25' ).setLogic( jJ150ETA25.x(3) & physcond).setTriggerType(TT.calo) # noqa: F821 + LVL1MenuItem('L1_jJ25.0ETA23_2jJ15.31ETA49' ).setLogic( jJ250ETA23 & jJ1531ETA49.x(2) & physcond).setTriggerType(TT.calo) # noqa: F821 + LVL1MenuItem('L1_jJ40.0ETA25_2jJ25_jJ20.31ETA49' ).setLogic( jJ400ETA25 & jJ25.x(2) & jJ2031ETA49 & physcond).setTriggerType(TT.calo) # noqa: F821 + LVL1MenuItem('L1_jJ85_3jJ30' ).setLogic( jJ85 & jJ30.x(3) & physcond).setTriggerType(TT.calo) # noqa: F821 + + # jet and XE + LVL1MenuItem('L1_2jJ50_gXERHO40' ).setLogic( jJ50.x(2) & gXERHO40 & physcond).setTriggerType(TT.calo) # noqa: F821 + LVL1MenuItem('L1_3jJ15.0ETA25_gXERHO40' ).setLogic( jJ150ETA25.x(3) & gXERHO40 & physcond).setTriggerType(TT.calo) # noqa: F821 #FTK items LVL1MenuItem('L1_4J20_FTK' ).setLogic( J20.x(4) & physcond).setTriggerType(TT.ftk) # noqa: F821 @@ -706,6 +748,13 @@ class ItemDef: LVL1MenuItem('L1_MU10_3J20' ).setLogic( MU10 & J20.x(3) & physcond).setTriggerType(TT.calo) # noqa: F821 LVL1MenuItem('L1_MU10_2J20' ).setLogic( MU10 & J20.x(2) & physcond).setTriggerType(TT.calo) # noqa: F821 LVL1MenuItem('L1_MU10_2J15_J20' ).setLogic( MU10 & J15.x(2) & J20 & physcond).setTriggerType(TT.calo) # noqa: F821 + + LVL1MenuItem('L1_MU10_2jJ15_jJ20' ).setLogic( MU10 & jJ15.x(2) & jJ20 & physcond).setTriggerType(TT.calo) # noqa: F821 + LVL1MenuItem('L1_MU10_2jJ20' ).setLogic( MU10 & jJ20.x(2) & physcond).setTriggerType(TT.calo) # noqa: F821 + LVL1MenuItem('L1_MU10_2jJ40' ).setLogic( MU10 & jJ40.x(2) & physcond).setTriggerType(TT.calo) # noqa: F821 + LVL1MenuItem('L1_MU20_2jJ40' ).setLogic( MU20 & jJ40.x(2) & physcond).setTriggerType(TT.calo) # noqa: F821 + LVL1MenuItem('L1_MU20_gXERHO30' ).setLogic( MU20 & gXERHO30 & physcond).setTriggerType(TT.calo) # noqa: F821 + LVL1MenuItem('L1_MU4_J50_XE40' ).setLogic( MU4 & J50 & XE40 & physcond).setTriggerType(TT.calo) # noqa: F821 LVL1MenuItem('L1_2MU4_J40_XE20' ).setLogic( MU4.x(2) & J40 & XE20 & physcond).setTriggerType(TT.calo) # noqa: F821 LVL1MenuItem('L1_MU20_J40' ).setLogic( MU20 & J40 & physcond).setTriggerType(TT.calo) ## ATR-14377 # noqa: F821 @@ -726,6 +775,11 @@ class ItemDef: LVL1MenuItem('L1_XE60').setLogic( XE60 & physcond).setTriggerType(TT.calo) # noqa: F821 LVL1MenuItem('L1_XE70').setLogic( XE70 & physcond).setTriggerType(TT.calo) # noqa: F821 LVL1MenuItem('L1_XE80').setLogic( XE80 & physcond).setTriggerType(TT.calo) # noqa: F821 + + LVL1MenuItem('L1_gXERHO20').setLogic( gXERHO20 & physcond).setTriggerType(TT.calo) # noqa: F821 + LVL1MenuItem('L1_gXERHO50').setLogic( gXERHO50 & physcond).setTriggerType(TT.calo) # noqa: F821 + LVL1MenuItem('L1_gXEPUFIT20').setLogic( gXEPUFIT20 & physcond).setTriggerType(TT.calo) # noqa: F821 + LVL1MenuItem('L1_gXEPUFIT50').setLogic( gXEPUFIT50 & physcond).setTriggerType(TT.calo) # noqa: F821 LVL1MenuItem('L1_XE10').setLogic( XE10 & physcond).setTriggerType(TT.calo) # noqa: F821 @@ -1966,8 +2020,6 @@ class ItemDef: LVL1MenuItem('L1_TAU60_DR-TAU20ITAU12I' ).setLogic( HA60 & TOPO_0DR28_TAU20abi_TAU12abi & physcond) # noqa: F821 - - except Exception, ex: print "Creation of L1Topo item failed, will abort! Exception is : " , ex raise RuntimeError("Creation of L1Topo item failed, will not continue") diff --git a/Trigger/TriggerCommon/TriggerMenu/python/l1menu/Menu_MC_pp_v8.py b/Trigger/TriggerCommon/TriggerMenu/python/l1menu/Menu_MC_pp_v8.py index 4d59def50ff9e30c302b47bea374f3f5153ee358..489452562524d3440ca99ab65e6f5d98cc8e576c 100644 --- a/Trigger/TriggerCommon/TriggerMenu/python/l1menu/Menu_MC_pp_v8.py +++ b/Trigger/TriggerCommon/TriggerMenu/python/l1menu/Menu_MC_pp_v8.py @@ -57,7 +57,11 @@ def defineMenu(): 'EM10VHI', 'EM10VH', 'EM12', 'EM15', 'EM15VH', 'EM15VHI', - 'EM18VHI', 'EM20VH', 'EM20VHI', 'EM22VH', 'EM22VHI', 'EM24VHI', 'EM24VHIM', + 'EM18VHI', 'EM20VH', 'EM20VHI', 'EM22VH', 'EM22VHI', 'EM24VHI', 'EM24VHIM', + # ATR-19437 + 'eEM7', 'eEM22', + 'eEM8VH', 'eEM10VH', 'eEM15VH', 'eEM20VH', + 'eEM15VHI', 'eEM18VHI', 'eEM20VHI', 'eEM22VHI', # 1 x ZB/ 'ZB_EM15', @@ -67,7 +71,10 @@ def defineMenu(): #-------------------------- # 16 x TAU - 'HA5', 'HA8', 'HA12', 'HA12IL', 'HA12IM', 'HA12IT', 'HA15', 'HA20', 'HA20IL', 'HA20IM', 'HA25', 'HA25IM', 'HA30', 'HA40', 'HA60', 'HA100', + 'HA5', 'HA8', 'HA12', 'HA12IL', 'HA12IM', 'HA12IT', 'HA15', 'HA20', 'HA20IL', 'HA20IM', 'HA25', 'HA25IM', 'HA30', 'HA40', 'HA60', 'HA100', + # ATR-19437 + 'eTAU12', 'eTAU20', 'eTAU40', 'eTAU60', 'eTAU100', + 'eTAU12IM', 'eTAU20IM', 'eTAU25IM', #---------------------- # SLOT 8 / CON 0 (JET1) @@ -87,14 +94,20 @@ def defineMenu(): # 3 x Central Jet 'J35.0ETA23','J40.0ETA25', 'J20.28ETA31', + # ATR-19437 + 'jJ12.0ETA23', 'jJ15.0ETA25', 'jJ25.0ETA23', 'jJ35.0ETA23', 'jJ40.0ETA25', # 6 Jets # replace J400 with J45.0ETA20 - ATR-19309 'J40', 'J50', 'J75', 'J85', 'J100', 'J45.0ETA20', 'J120', # 'J40', 'J50', 'J75', 'J85', 'J100', 'J120', 'J400', + # ATR-19437 + 'jJ12', 'jJ15', 'jJ20', 'jJ25', 'jJ30', 'jJ40', 'jJ50', 'jJ85', 'jJ100', # 6 x FJ 'J15.31ETA49', 'J20.31ETA49', 'J30.31ETA49', 'J50.31ETA49', 'J75.31ETA49', #'JJ15.23ETA49', 'J100.31ETA49', + # ATR-19437 + 'jJ15.31ETA49', 'jJ20.31ETA49', 'jJ75.31ETA49', #--------------------- # SLOT 8 / CON 2 (EN1) @@ -115,6 +128,10 @@ def defineMenu(): 'XE10', 'XE20', 'XE25', 'XE30', 'XE35', 'XE40', 'XE45', 'XE50', 'XE55', 'XE60', 'XE65', 'XE70', 'XE75', 'XE80', 'XE150', 'XE300', + # ATR-19437 + 'gXERHO20', 'gXERHO30', 'gXERHO35', 'gXERHO40', 'gXERHO45', 'gXERHO50', + 'gXEPUFIT20', 'gXEPUFIT50', + # 8 x XS 'XS20', 'XS30', 'XS40', 'XS45', 'XS50', 'XS55', 'XS60', 'XS65', @@ -834,7 +851,7 @@ def defineMenu(): # Run this file as python python/l1menu/Menu_MC_pp_v7.py to print out available IDs # 463-464 are reserved for L1_RD2_BGRP14 and L1_RD3_BGRP15 (in MC_Physics_pp_v7) # 509-511 are reserved for CALREQ - + Lvl1Flags.CtpIdMap = { 'L1_EM3' : 0, @@ -852,6 +869,20 @@ def defineMenu(): 'L1_EM22VH' : 295, 'L1_EM3_EMPTY' : 12, 'L1_EM7_EMPTY' : 13, + 'L1_eEM22' : 25, + 'L1_2eEM15VHI' : 42, + 'L1_2eEM20VH' : 49, + 'L1_2eEM8VH_MU10' : 50, + 'L1_eEM15VHI_2eTAU12IM_4jJ12' : 59, + 'L1_eEM15VHI_2eTAU12IM_jJ25_3jJ12' : 180, + 'L1_eEM15VHI_2eTAU12IM_gXERHO35' : 73, + 'L1_eEM15VH_MU10' : 82, + 'L1_eEM18VHI_3jJ20' : 86, + 'L1_eEM20VHI_eTAU20IM_2eTAU20_jJ25_3jJ20' : 87, + 'L1_eEM20VH_3eEM10VH' : 91, + 'L1_eEM22VHI' : 107, + 'L1_eEM20VHI' : 178, + 'L1_eEM7_MU20' : 110, 'L1_MU4' : 14, 'L1_MU6' : 15, 'L1_MU10' : 16, @@ -898,6 +929,7 @@ def defineMenu(): 'L1_TAU8' : 56, 'L1_TAU8_EMPTY' : 57, 'L1_TAU20IM_2TAU12IM' : 58, + 'L1_eTAU12' : 29, 'L1_2TAU5' : 365, 'L1_2TAU8' : 370, 'L1_EM15VHI_2TAU12IM' : 60, @@ -935,6 +967,19 @@ def defineMenu(): 'L1_MU6_J75' : 90, 'L1_MU20_J40' : 428, 'L1_MU20_XE30' : 433, + 'L1_MU10_2jJ15_jJ20' : 133, + 'L1_MU10_2jJ20' : 136, + 'L1_MU10_eTAU12IM_3jJ12' : 138, + 'L1_MU10_eTAU12IM_jJ25_2jJ12' : 139, + 'L1_MU10_eTAU12IM_gXERHO35' : 143, + 'L1_MU10_eTAU20IM' : 152, + 'L1_MU20_jJ40' : 157, + 'L1_MU20_gXERHO30' : 158, + 'L1_eTAU20IM_2jJ20_gXERHO45' : 159, + 'L1_eTAU20IM_2eTAU12IM_4jJ12.0ETA23' : 160, + 'L1_eTAU25IM_2eTAU20IM_2jJ25_3jJ20' : 162, + 'L1_eTAU40_2eTAU12IM_gXERHO40' : 164, + 'L1_eTAU60_2eTAU40' : 165, 'L1_J15' : 92, 'L1_J20' : 93, 'L1_J25' : 94, @@ -947,6 +992,17 @@ def defineMenu(): 'L1_J100' : 100, 'L1_J120' : 101, #'L1_J400' : 102, + 'L1_jJ100' : 36, + 'L1_2jJ50_gXERHO40' : 166, + 'L1_3jJ15.0ETA25_gXERHO40' : 167, + 'L1_3jJ35.0ETA23' : 168, + 'L1_3jJ50' : 169, + 'L1_4jJ15' : 170, + 'L1_4jJ15.0ETA25' : 171, + 'L1_jJ25.0ETA23_2jJ15.31ETA49' : 125, + 'L1_jJ40.0ETA25_2jJ25_jJ20.31ETA49' : 126, + 'L1_jJ75.31ETA49' : 127, + 'L1_jJ85_3jJ30' : 128, 'L1_J20.31ETA49' : 103, 'L1_J30.31ETA49' : 104, 'L1_J50.31ETA49' : 105, @@ -1003,6 +1059,10 @@ def defineMenu(): 'L1_XE60' : 149, 'L1_XE70' : 150, 'L1_XE80' : 151, + 'L1_gXERHO20' : 177, + 'L1_gXERHO50' : 30, + 'L1_gXEPUFIT20' : 174, + 'L1_gXEPUFIT50' : 31, 'L1_EM12_XS20' : 154, 'L1_EM15_XS30' : 155, @@ -1255,7 +1315,7 @@ def defineMenu(): 'L1_CALREQ2' : 511, # never use 509-511 for anything else than CALREQ triggers #ATR-19302 - 'L1_2EM10VHI' : 59, + 'L1_2EM10VHI' : 179, #ATR-19355 'L1_BPH-0M10-3MU4' : 68, diff --git a/Trigger/TriggerCommon/TriggerMenu/python/l1menu/ThresholdDef.py b/Trigger/TriggerCommon/TriggerMenu/python/l1menu/ThresholdDef.py index 47507c3394f9ee1b1b5564e4cda30eff568f6e2f..3c39328e4b9320cc467dd1dc49dc5b689ec5a1d4 100644 --- a/Trigger/TriggerCommon/TriggerMenu/python/l1menu/ThresholdDef.py +++ b/Trigger/TriggerCommon/TriggerMenu/python/l1menu/ThresholdDef.py @@ -30,6 +30,9 @@ class ThresholdDef: for thrV in [3, 4, 5, 6, 7, 8, 10, 12, 14, 15, 16, 18, 20, 22, 30, 50]: tc.registerThr('EM%i' % thrV, 'EM').addThrValue(thrV) + for thrV in [7, 22]: + tc.registerThr('eEM%i' % thrV, 'EM').addThrValue(thrV) + # for beam splashes: #ThresholdValue.setDefaults('EM', {'etamin' : 16,'etamax' : 20, 'phimin' : 0,'phimax' : 64, 'isobits' : '00000', 'use_relIso' : True }) @@ -65,6 +68,14 @@ class ThresholdDef: .addThrValue(7, -18, -15, priority=2).addThrValue(7, 15, 18, priority=2)\ .addThrValue(8, -25, -18, priority=2).addThrValue(8, 18, 25, priority=2) + tc.registerThr( 'eEM8VH', type='EM').addThrValue(9, priority=1)\ + .addThrValue(9, -8, 0, priority=2).addThrValue(9, 0, 8, priority=2)\ + .addThrValue(7, -11, -8, priority=2).addThrValue(7, 8, 11, priority=2)\ + .addThrValue(6, -14, -11, priority=2).addThrValue(6, 11, 14, priority=2)\ + .addThrValue(5, -15, -14, priority=2).addThrValue(5, 14, 15, priority=2)\ + .addThrValue(7, -18, -15, priority=2).addThrValue(7, 15, 18, priority=2)\ + .addThrValue(8, -25, -18, priority=2).addThrValue(8, 18, 25, priority=2) + tc.registerThr( 'EM10VH', type='EM').addThrValue(11, priority=1)\ .addThrValue(11, -8, 0, priority=2).addThrValue(11, 0, 8, priority=2)\ .addThrValue(9, -11, -8, priority=2).addThrValue(9, 8, 11, priority=2)\ @@ -83,6 +94,14 @@ class ThresholdDef: .addThrValue(9, -18, -15, priority=2).addThrValue(9, 15, 18, priority=2)\ .addThrValue(10, -25, -18, priority=2).addThrValue(10, 18, 25, priority=2) + tc.registerThr( 'eEM10VH', type='EM').addThrValue(11, priority=1)\ + .addThrValue(11, -8, 0, priority=2).addThrValue(11, 0, 8, priority=2)\ + .addThrValue(9, -11, -8, priority=2).addThrValue(9, 8, 11, priority=2)\ + .addThrValue(8, -14, -11, priority=2).addThrValue(8, 11, 14, priority=2)\ + .addThrValue(7, -15, -14, priority=2).addThrValue(7, 14, 15, priority=2)\ + .addThrValue(9, -18, -15, priority=2).addThrValue(9, 15, 18, priority=2)\ + .addThrValue(10, -25, -18, priority=2).addThrValue(10, 18, 25, priority=2) + tc.registerThr( 'EM13VH', type='EM').addThrValue(15, priority=1)\ .addThrValue(15, -7, 0, priority=2).addThrValue(15, 0, 7, priority=2)\ .addThrValue(14, -9, -7, priority=2).addThrValue(14, 7, 9, priority=2)\ @@ -101,6 +120,15 @@ class ThresholdDef: .addThrValue(15, -17, -15, priority=2).addThrValue(15, 15, 17, priority=2)\ .addThrValue(16, -25, -17, priority=2).addThrValue(16, 17, 25, priority=2) + tc.registerThr( 'eEM15VH', type='EM').addThrValue(17, priority=1)\ + .addThrValue(17, -7, 0, priority=2).addThrValue(17, 0, 7, priority=2)\ + .addThrValue(16, -9, -7, priority=2).addThrValue(16, 7, 9, priority=2)\ + .addThrValue(15, -12, -9, priority=2).addThrValue(15, 9, 12, priority=2)\ + .addThrValue(14, -14, -12, priority=2).addThrValue(14, 12, 14, priority=2)\ + .addThrValue(13, -15, -14, priority=2).addThrValue(13, 14, 15, priority=2)\ + .addThrValue(15, -17, -15, priority=2).addThrValue(15, 15, 17, priority=2)\ + .addThrValue(16, -25, -17, priority=2).addThrValue(16, 17, 25, priority=2) + tc.registerThr( 'EM18VH', type='EM').addThrValue(20, priority=1)\ .addThrValue(20, -7, 0, priority=2).addThrValue(20, 0, 7, priority=2)\ .addThrValue(19, -8, -7, priority=2).addThrValue(19, 7, 8, priority=2)\ @@ -121,6 +149,16 @@ class ThresholdDef: .addThrValue(19, -17, -15, priority=2).addThrValue(19, 15, 17, priority=2)\ .addThrValue(21, -25, -17, priority=2).addThrValue(21, 17, 25, priority=2) + tc.registerThr( 'eEM20VH', type='EM').addThrValue(22, priority=1)\ + .addThrValue(22, -7, 0, priority=2).addThrValue(22, 0, 7, priority=2)\ + .addThrValue(21, -8, -7, priority=2).addThrValue(21, 7, 8, priority=2)\ + .addThrValue(20, -11, -8, priority=2).addThrValue(20, 8, 11, priority=2)\ + .addThrValue(19, -13, -11, priority=2).addThrValue(19, 11, 13, priority=2)\ + .addThrValue(18, -14, -13, priority=2).addThrValue(18, 13, 14, priority=2)\ + .addThrValue(17, -15, -14, priority=2).addThrValue(17, 14, 15, priority=2)\ + .addThrValue(19, -17, -15, priority=2).addThrValue(19, 15, 17, priority=2)\ + .addThrValue(21, -25, -17, priority=2).addThrValue(21, 17, 25, priority=2) + # I section ThresholdValue.setDefaults('EM', {'isobits' : '00010', 'use_relIso' : True }) @@ -170,6 +208,15 @@ class ThresholdDef: .addThrValue(15, -17, -15, priority=2).addThrValue(15, 15, 17, priority=2)\ .addThrValue(16, -25, -17, priority=2).addThrValue(16, 17, 25, priority=2) + tc.registerThr( 'eEM15VHI', type='EM').addThrValue(17, priority=1)\ + .addThrValue(17, -7, 0, priority=2).addThrValue(17, 0, 7, priority=2)\ + .addThrValue(16, -9, -7, priority=2).addThrValue(16, 7, 9, priority=2)\ + .addThrValue(15, -12, -9, priority=2).addThrValue(15, 9, 12, priority=2)\ + .addThrValue(14, -14, -12, priority=2).addThrValue(14, 12, 14, priority=2)\ + .addThrValue(13, -15, -14, priority=2).addThrValue(13, 14, 15, priority=2)\ + .addThrValue(15, -17, -15, priority=2).addThrValue(15, 15, 17, priority=2)\ + .addThrValue(16, -25, -17, priority=2).addThrValue(16, 17, 25, priority=2) + for thrV in [15]: tc.registerThr('EM%iHI' % thrV, 'EM').addThrValue(thrV) @@ -183,6 +230,16 @@ class ThresholdDef: .addThrValue(17, -17, -15, priority=2).addThrValue(17, 15, 17, priority=2)\ .addThrValue(19, -25, -17, priority=2).addThrValue(19, 17, 25, priority=2) + tc.registerThr( 'eEM18VHI', type='EM').addThrValue(20, priority=1)\ + .addThrValue(20, -7, 0, priority=2).addThrValue(20, 0, 7, priority=2)\ + .addThrValue(19, -8, -7, priority=2).addThrValue(19, 7, 8, priority=2)\ + .addThrValue(18, -11, -8, priority=2).addThrValue(18, 8, 11, priority=2)\ + .addThrValue(17, -13, -11, priority=2).addThrValue(17, 11, 13, priority=2)\ + .addThrValue(16, -14, -13, priority=2).addThrValue(16, 13, 14, priority=2)\ + .addThrValue(15, -15, -14, priority=2).addThrValue(15, 14, 15, priority=2)\ + .addThrValue(17, -17, -15, priority=2).addThrValue(17, 15, 17, priority=2)\ + .addThrValue(19, -25, -17, priority=2).addThrValue(19, 17, 25, priority=2) + tc.registerThr( 'EM20VHI', type='EM').addThrValue(22, priority=1)\ .addThrValue(22, -7, 0, priority=2).addThrValue(22, 0, 7, priority=2)\ .addThrValue(21, -8, -7, priority=2).addThrValue(21, 7, 8, priority=2)\ @@ -193,6 +250,16 @@ class ThresholdDef: .addThrValue(19, -17, -15, priority=2).addThrValue(19, 15, 17, priority=2)\ .addThrValue(21, -25, -17, priority=2).addThrValue(21, 17, 25, priority=2) + tc.registerThr( 'eEM20VHI', type='EM').addThrValue(22, priority=1)\ + .addThrValue(22, -7, 0, priority=2).addThrValue(22, 0, 7, priority=2)\ + .addThrValue(21, -8, -7, priority=2).addThrValue(21, 7, 8, priority=2)\ + .addThrValue(20, -11, -8, priority=2).addThrValue(20, 8, 11, priority=2)\ + .addThrValue(19, -13, -11, priority=2).addThrValue(19, 11, 13, priority=2)\ + .addThrValue(18, -14, -13, priority=2).addThrValue(18, 13, 14, priority=2)\ + .addThrValue(17, -15, -14, priority=2).addThrValue(17, 14, 15, priority=2)\ + .addThrValue(19, -17, -15, priority=2).addThrValue(19, 15, 17, priority=2)\ + .addThrValue(21, -25, -17, priority=2).addThrValue(21, 17, 25, priority=2) + tc.registerThr( 'EM22VHI', type='EM').addThrValue(24, priority=1)\ .addThrValue(24, -7, 0, priority=2).addThrValue(24, 0, 7, priority=2)\ .addThrValue(23, -8, -7, priority=2).addThrValue(23, 7, 8, priority=2)\ @@ -203,6 +270,16 @@ class ThresholdDef: .addThrValue(21, -17, -15, priority=2).addThrValue(21, 15, 17, priority=2)\ .addThrValue(23, -25, -17, priority=2).addThrValue(23, 17, 25, priority=2) + tc.registerThr( 'eEM22VHI', type='EM').addThrValue(24, priority=1)\ + .addThrValue(24, -7, 0, priority=2).addThrValue(24, 0, 7, priority=2)\ + .addThrValue(23, -8, -7, priority=2).addThrValue(23, 7, 8, priority=2)\ + .addThrValue(22, -11, -8, priority=2).addThrValue(22, 8, 11, priority=2)\ + .addThrValue(21, -13, -11, priority=2).addThrValue(21, 11, 13, priority=2)\ + .addThrValue(20, -14, -13, priority=2).addThrValue(20, 13, 14, priority=2)\ + .addThrValue(19, -15, -14, priority=2).addThrValue(19, 14, 15, priority=2)\ + .addThrValue(21, -17, -15, priority=2).addThrValue(21, 15, 17, priority=2)\ + .addThrValue(23, -25, -17, priority=2).addThrValue(23, 17, 25, priority=2) + tc.registerThr( 'EM24VHI', type='EM').addThrValue(24, priority=1)\ .addThrValue(26, -7, 0, priority=2).addThrValue(26, 0, 7, priority=2)\ .addThrValue(25, -8, -7, priority=2).addThrValue(25, 7, 8, priority=2)\ @@ -245,6 +322,9 @@ class ThresholdDef: for thrV in [1, 2, 3, 5, 6, 8, 12, 15, 20, 25, 30, 35, 40, 50, 60,100]: tc.registerThr('HA%i' % thrV, 'TAU').addThrValue(thrV) + for thrV in [12, 20, 40, 60, 100]: + tc.registerThr('eTAU%i' % thrV, 'TAU').addThrValue(thrV) + # beam splashes for thrV in [20]: tc.registerThr('HA%iA' % thrV, 'TAU').addThrValue(255, priority=1).addThrValue( thrV, etamin = 12, etamax = 16, priority=2) @@ -270,6 +350,9 @@ class ThresholdDef: else: for thrV in [12,20,25]: tc.registerThr('HA%iIM' % thrV, 'TAU').addThrValue(thrV) + + for thrV in [12,20, 25]: + tc.registerThr('eTAU%iIM' % thrV, 'TAU').addThrValue(thrV) ThresholdValue.setDefaults('TAU', {'isobits' : '00100', 'use_relIso' : True }) if '_v6' in TriggerFlags.triggerMenuSetup() or '_HI' in TriggerFlags.triggerMenuSetup(): @@ -293,6 +376,9 @@ class ThresholdDef: for thrV in [5, 10, 12, 15, 20, 25, 30, 35, 40, 50, 60, 70, 75, 85, 100, 120, 150,175, 250, 400]: tc.registerThr('J%i' % thrV, 'JET').addThrValue(JetOff).addThrValue(thrV, etamin=-31, etamax=31, priority=1) # jets are between -31 and 31 -ATR-11526 + for thrV in [12, 15, 20, 25, 30, 40, 50, 85, 100]: + tc.registerThr('jJ%i' % thrV, 'JET').addThrValue(JetOff).addThrValue(thrV, etamin=-31, etamax=31, priority=1) # jets are between -31 and 31 -ATR-11526 + ThresholdValue.setDefaults('JET', {}) @@ -313,11 +399,16 @@ class ThresholdDef: # Central jet for (thrV, etamax) in [(12,23), (15,25), (17,22), (20,28), (25,23), (35,23), (20,49), (30,49), (40,25), (45,20)]: tc.registerThr('J%i.0ETA%i' % (thrV, etamax), 'JET').addThrValue(JetOff).addThrValue( thrV, etamin = -etamax, etamax = etamax, priority=1) + for (thrV, etamax) in [(12,23), (15,25), (25,23), (35,23), (40,25)]: + tc.registerThr('jJ%i.0ETA%i' % (thrV, etamax), 'JET').addThrValue(JetOff).addThrValue( thrV, etamin = -etamax, etamax = etamax, priority=1) # Standard forward jet for thrV in [10, 15, 20, 25, 30, 35, 45, 50, 70, 75, 100]: tc.registerThr('J%i.31ETA49' % thrV, 'JET').addThrValue(JetOff).addThrValue( thrV, etamin=31, etamax=49, priority=1).addThrValue( thrV, etamin=-49, etamax=-31, priority=1) + for thrV in [15, 20, 75]: + tc.registerThr('jJ%i.31ETA49' % thrV, 'JET').addThrValue(JetOff).addThrValue( thrV, etamin=31, etamax=49, priority=1).addThrValue( thrV, etamin=-49, etamax=-31, priority=1) + # Custom Forward jet and VBF jets for (thrV, etamin, etamax) in [ (15,23,49), (15,24,49), (20,28,31) ]: tc.registerThr('J%i.%iETA%i' % (thrV, etamin,etamax), 'JET').addThrValue(JetOff).addThrValue( thrV, etamin = etamin, etamax=etamax, priority=1).addThrValue( thrV, etamin = -etamax, etamax = -etamin, priority=1) @@ -356,6 +447,12 @@ class ThresholdDef: for thrV in [10, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 150, 300]: tc.registerThr('XE%i' % thrV, 'XE').addThrValue(thrV) + for thrV in [20, 50]: + tc.registerThr('gXEPUFIT%i' % thrV, 'XE').addThrValue(thrV) + + for thrV in [20, 30, 35, 40, 45, 50]: + tc.registerThr('gXERHO%i' % thrV, 'XE').addThrValue(thrV) + # XS for thrV in [20, 25, 30, 35, 40, 45, 50, 55, 60, 65]: tc.registerThr('XS%i' % thrV, 'XS').addThrValue(thrV) diff --git a/Trigger/TriggerCommon/TriggerMenu/python/l1topomenu/Menu_MC_pp_v8.py b/Trigger/TriggerCommon/TriggerMenu/python/l1topomenu/Menu_MC_pp_v8.py index 712cc3495e96ba3f90e4db9220a34441632743e3..cafec22173448d7e70d3e710f8ab0e3a42b2161c 100644 --- a/Trigger/TriggerCommon/TriggerMenu/python/l1topomenu/Menu_MC_pp_v8.py +++ b/Trigger/TriggerCommon/TriggerMenu/python/l1topomenu/Menu_MC_pp_v8.py @@ -78,7 +78,7 @@ def defineMenu(): TopoOutput( algoname='2INVM9-2MU4ab', module=0, fpga=1, clock=1, firstbit=10 ), #v6 new TopoOutput( algoname='2INVM9-MU6ab-MU4ab', module=0, fpga=1, clock=1, firstbit=11 ), #v6 new TopoOutput( algoname='INVM_NFF', module=0, fpga=1, clock=1, firstbit=12 ), # 4 bits - + # module: 1, FPGA: 0 TopoOutput( algoname='05MINDPHI-AJj10s6-XE0', module=1, fpga=0, clock=0, firstbit=0 ),#v6 diff --git a/Trigger/TriggerCommon/TriggerMenu/python/menu/GenerateMenu.py b/Trigger/TriggerCommon/TriggerMenu/python/menu/GenerateMenu.py index 6e46d91615e7754511a7a868ac1f360eb308b7f8..43a62b67175457d37ee4d74b5c2a84fe36ac0df1 100755 --- a/Trigger/TriggerCommon/TriggerMenu/python/menu/GenerateMenu.py +++ b/Trigger/TriggerCommon/TriggerMenu/python/menu/GenerateMenu.py @@ -638,7 +638,7 @@ class GenerateMenu: if doTopo: log.info('run generateCombinedChainDefs') theChainDef = TriggerMenu.combined.generateCombinedChainDefs._addTopoInfo(theChainDef,chainDicts,listOfChainDefs) - + log.info(theChainDef) return theChainDef @@ -708,7 +708,6 @@ class GenerateMenu: if len(listOfSequenceInputs)<2: listOfSequenceInputs = [listOfSequenceInputs] for thisSequenceInputs in listOfSequenceInputs: - print thisSequenceInputs if thisSequenceInputs == [""] or thisSequenceInputs[0].isupper() or inputsAreTEs(thisSequenceInputs): return True @@ -907,8 +906,6 @@ class GenerateMenu: if not self.chainDefIsConsistent(chainDef): log.error('ChainDef consistency checks failing for chain %s' % chain) - - theHLTChain = self.generateHLTChain(chainDef, str(chainDicts['chainCounter']), streamTag, groups, EBstep) theHLTSequences = self.generateHLTSequences(chainDef) #replace this function and make separate constructor in HLTSequence diff --git a/Trigger/TriggerCommon/TriggerMenu/python/menu/MC_pp_v8.py b/Trigger/TriggerCommon/TriggerMenu/python/menu/MC_pp_v8.py index ef98a95346294f3abbc009fed05c93882e89e435..4e1a44ffca124f31913eab340b0c137f067a224c 100644 --- a/Trigger/TriggerCommon/TriggerMenu/python/menu/MC_pp_v8.py +++ b/Trigger/TriggerCommon/TriggerMenu/python/menu/MC_pp_v8.py @@ -50,6 +50,8 @@ def setupMenu(): TriggerFlags.AFPSlice.signatures = TriggerFlags.AFPSlice.signatures() + [ ] + TriggerFlags.BeamspotSlice.signatures = TriggerFlags.BeamspotSlice.signatures()+ [ + ] @@ -88,6 +90,13 @@ def setupMenu(): if TriggerFlags.doFTK(): + TriggerFlags.BeamspotSlice.signatures = TriggerFlags.BeamspotSlice.signatures()+ [ + ['beamspot_idperf_FTK', 'L1_4J20', [], ["BeamSpot"], ['RATE:BeamSpot', 'BW:BeamSpot'], -1], + ['beamspot_idperf_FTKRefit', 'L1_4J20', [], ["BeamSpot"], ['RATE:BeamSpot', 'BW:BeamSpot'], -1], + ['beamspot_idperf_FTK_L1All', '', [], ["BeamSpot"], ['RATE:BeamSpot', 'BW:BeamSpot'], -1], + ['beamspot_idperf_FTKRefit_L1All', '', [], ["BeamSpot"], ['RATE:BeamSpot', 'BW:BeamSpot'], -1] + ] + TriggerFlags.MuonSlice.signatures = TriggerFlags.MuonSlice.signatures() + [ ['mu24_idperf_FTK', 'L1_MU20MU21', ['L1_MU20'], [PhysicsStream], ['RATE:IDMonitoring', 'BW:Muon', 'BW:ID'], -1], ['mu6_idperf_FTK', 'L1_MU6', [], [PhysicsStream], ['RATE:IDMonitoring', 'BW:Muon', 'BW:ID'], -1], @@ -122,6 +131,10 @@ def setupMenu(): ['ht700_L1HT150-J20s5.ETA31', 'L1_HT150-J20s5.ETA31', [], [PhysicsStream], ['RATE:SingleJet', 'BW:Jet'], -1], ['ht1000_L1HT190-J15.ETA21', 'L1_HT190-J15.ETA21', [], [PhysicsStream], ['RATE:MultiJet', 'BW:Jet'], -1], ['ht1000_L1HT190-J15s5.ETA21', 'L1_HT190-J15s5.ETA21', [], [PhysicsStream], ['RATE:MultiJet', 'BW:Jet'], -1], + + ['2j45', 'L1_RD0_FILLED', [], [PhysicsStream], ['RATE:MultiJet', 'BW:Jet'], -1], + ['4j15', 'L1_RD0_FILLED', [], [PhysicsStream], ['RATE:MultiJet', 'BW:Jet'], -1], + ['4j45', 'L1_RD0_FILLED', [], [PhysicsStream], ['RATE:MultiJet', 'BW:Jet'], -1], ] @@ -132,6 +145,18 @@ def setupMenu(): ['j0_gsc0_boffperf_split_L1RD0_FILLED', 'L1_RD0_FILLED', [], [PhysicsStream], ['RATE:SingleBJet', 'BW:BJet'], -1], ['j0_gsc0_boffperf_split_FTK_L1RD0_FILLED', 'L1_RD0_FILLED', [], [PhysicsStream], ['RATE:SingleBJet', 'BW:BJet'], -1], ['j0_gsc0_boffperf_split_FTKRefit_L1RD0_FILLED', 'L1_RD0_FILLED', [], [PhysicsStream], ['RATE:SingleBJet', 'BW:BJet'], -1], + ['j0_ftk_jvt015et15', 'L1_RD0_FILLED', [], [PhysicsStream], ['RATE:SingleJet', 'BW:Jet'], -1], + ['j0_ftk_jvt015et45', 'L1_RD0_FILLED', [], [PhysicsStream], ['RATE:SingleJet', 'BW:Jet'], -1], + ['j0_ftk_2jvt011et45', 'L1_RD0_FILLED', [], [PhysicsStream], ['RATE:MultiJet', 'BW:Jet'], -1], + ['j0_ftk_2jvt015et45', 'L1_RD0_FILLED', [], [PhysicsStream], ['RATE:MultiJet', 'BW:Jet'], -1], + ['j0_ftk_2jvt059et45', 'L1_RD0_FILLED', [], [PhysicsStream], ['RATE:MultiJet', 'BW:Jet'], -1], + ['j0_ftk_4jvt011et45', 'L1_RD0_FILLED', [], [PhysicsStream], ['RATE:MultiJet', 'BW:Jet'], -1], + ['j0_ftk_4jvt015et15', 'L1_RD0_FILLED', [], [PhysicsStream], ['RATE:MultiJet', 'BW:Jet'], -1], + ['j0_ftk_4jvt015et45', 'L1_RD0_FILLED', [], [PhysicsStream], ['RATE:MultiJet', 'BW:Jet'], -1], + ['j0_ftk_4jvt059et45', 'L1_RD0_FILLED', [], [PhysicsStream], ['RATE:MultiJet', 'BW:Jet'], -1], + ['j0_ftk_6jvt011et45', 'L1_RD0_FILLED', [], [PhysicsStream], ['RATE:MultiJet', 'BW:Jet'], -1], + ['j0_ftk_6jvt015et45', 'L1_RD0_FILLED', [], [PhysicsStream], ['RATE:MultiJet', 'BW:Jet'], -1], + ['j0_ftk_6jvt059et45', 'L1_RD0_FILLED', [], [PhysicsStream], ['RATE:MultiJet', 'BW:Jet'], -1], ] @@ -384,7 +409,6 @@ def setupMenu(): TriggerFlags.MinBiasSlice.signatures = TriggerFlags.MinBiasSlice.signatures() + [] - TriggerFlags.BeamspotSlice.signatures = TriggerFlags.BeamspotSlice.signatures()+ [] TriggerFlags.CalibSlice.signatures = TriggerFlags.CalibSlice.signatures() + [] TriggerFlags.CosmicSlice.signatures = TriggerFlags.CosmicSlice.signatures() + [] TriggerFlags.StreamingSlice.signatures = TriggerFlags.StreamingSlice.signatures() + [] @@ -452,7 +476,7 @@ ps_rerun_list = [ 'xe0noL1_l2fsperf_trkmht', ] -if TriggerFlags.doFTK(): +if TriggerFlags.doFTK(): ps_rerun_list = [ 'xe0noL1_l2fsperf_trkmht_FTK', 'xe0noL1_l2fsperf_trktc_lcw_FTK', @@ -508,22 +532,33 @@ ps_ftk_list = [] ps_Bphys_list = [] +ps_ftk_beamspot_list = [] + + if TriggerFlags.doFTK(): + + ps_ftk_beamspot_list = [ + 'beamspot_idperf_FTK_L1All', + 'beamspot_idperf_FTKRefit_L1All' + ] + ps_ftk_list = [ - 'mu6_idperf_FTK_L1MU6', - 'mu24_idperf_FTK_L1MU20MU21', - 'mu6_idperf_FTKRefit_L1MU6', - 'mu24_idperf_FTKRefit_L1MU20MU21', - 'j35_boffperf_split_FTK_L1J15', - 'j150_boffperf_split_FTK_L1J40', - 'j35_boffperf_split_FTKVtx_L1J15', - 'j150_boffperf_split_FTKVtx_L1J40', - 'j35_boffperf_split_FTKRefit_L1J15', - 'j150_boffperf_split_FTKRefit_L1J40', - 'j225_boffperf_split_FTK_L1J100', - 'j225_boffperf_split_FTKVtx_L1J100', - 'j225_boffperf_split_FTKRefit_L1J100', - ] + 'beamspot_idperf_FTK', + 'beamspot_idperf_FTKRefit', + 'mu6_idperf_FTK', + 'mu24_idperf_FTK', + 'mu6_idperf_FTKRefit', + 'mu24_idperf_FTKRefit', + 'j35_boffperf_split_FTK_L1J15', + 'j150_boffperf_split_FTK_L1J40', + 'j35_boffperf_split_FTKVtx_L1J15', + 'j150_boffperf_split_FTKVtx_L1J40', + 'j35_boffperf_split_FTKRefit_L1J15', + 'j150_boffperf_split_FTKRefit_L1J40', + 'j225_boffperf_split_FTK_L1J100', + 'j225_boffperf_split_FTKVtx_L1J100', + 'j225_boffperf_split_FTKRefit_L1J100', + ] ps_streamers_list = [] @@ -533,7 +568,9 @@ if TriggerFlags.doFTK(): chain_list=ps_online_list+ps_cosmic_list+ps_minb_list if not TriggerFlags.doFTK(): chain_list+=ps_ftk_list - +if TriggerFlags.doFTK(): + chain_list+=ps_ftk_beamspot_list + Prescales.HLTPrescales.update(dict(map(None,chain_list,len(chain_list)*[ [-1, 0, -1] ]))) chain_list=ps_larnoiseburst_rerun_list diff --git a/Trigger/TriggerCommon/TriggerMenu/python/menu/SignatureDicts.py b/Trigger/TriggerCommon/TriggerMenu/python/menu/SignatureDicts.py index dd9d9f53ad61dc308f9966a6e03cc6424f68466f..712ade37f68a701f74fb1566546c4077dc7d5402 100644 --- a/Trigger/TriggerCommon/TriggerMenu/python/menu/SignatureDicts.py +++ b/Trigger/TriggerCommon/TriggerMenu/python/menu/SignatureDicts.py @@ -150,6 +150,7 @@ JetChainParts = { 'dataScouting' : ['ds1', 'ds2'], 'smc' : ['30smcINF', '35smcINF', '40smcINF', '50smcINF', '60smcINF', 'nosmc'], 'jetattrs' : ['subj360Iktdr2I3width6IIsubj300Iwidth','subj360Iktdr3IIsubj300Iwidth2','subj360Iktdr3Iwidth2','subj360Iktdr','subj360I0ktdr5','subj360Iwidth','subj360I0width5','subj360IktdrI9width'], + 'jvt' : ['jvt011et15','jvt011et25','jvt011et35','jvt011et45','jvt015et15','jvt015et25','jvt015et35','jvt015et45','jvt059et15','jvt059et25','jvt059et35','jvt059et45','jvt091et15','jvt091et25','jvt091et35','jvt091et45','2jvt011et25','2jvt015et25','2jvt059et25','2jvt015et15','2jvt011et45','2jvt015et45','2jvt059et45','4jvt011et15','4jvt011et25','4jvt011et35','4jvt011et45','4jvt015et15','4jvt015et25','4jvt015et35','4jvt015et45','4jvt059et15','4jvt059et25','4jvt059et35','4jvt059et45','5jvt011et15','5jvt011et25','5jvt011et35','5jvt011et45','5jvt015et15','5jvt015et25','5jvt015et35','5jvt015et45','5jvt059et15','5jvt059et25','5jvt059et35','5jvt059et45','6jvt011et15','6jvt011et25','6jvt011et35','6jvt011et45','6jvt015et15','6jvt015et25','6jvt015et35','6jvt015et45','6jvt059et15','6jvt059et25','6jvt059et35','6jvt059et45','7jvt011et15','7jvt011et25','7jvt011et35','7jvt011et45','7jvt015et15','7jvt015et25','7jvt015et35','7jvt015et45','7jvt059et15','7jvt059et25','7jvt059et35','7jvt059et45'], 'trkopt' : ['notrk', 'ftk', 'ftkrefit'], # Et cut by the jet build tool (ptmin) 'recoCutUncalib': ['rcuDefault', 'rcu0', 'rcu4' ,'rcu5'], @@ -186,6 +187,7 @@ JetChainParts_Default = { 'dataScouting' : '', 'smc' : 'nosmc', 'jetattrs' : 'nojetattrs', + 'jvt' : 'nojvt', 'trkopt' : 'notrk', 'recoCutUncalib': 'rcuDefault', 'recoCutCalib': 'rccDefault', diff --git a/Trigger/TriggerCommon/TriggerMenu/python/tau/generateTauChainDefs.py b/Trigger/TriggerCommon/TriggerMenu/python/tau/generateTauChainDefs.py index 332cc6d4b86562c5e52d4057711e16c6ea938ba6..4c4033dd3a3b974c27935816a5f85eda27b4dd29 100755 --- a/Trigger/TriggerCommon/TriggerMenu/python/tau/generateTauChainDefs.py +++ b/Trigger/TriggerCommon/TriggerMenu/python/tau/generateTauChainDefs.py @@ -54,7 +54,7 @@ def generateChainDefs(chainDict): #add support for topological algorithms if chainDict["topo"]: - log.info("Adding Tau Topological Algorithm(s) to chain") + log.debug("Adding Tau Topological Algorithm(s) to chain") theChainDef = _addTopoInfo(theChainDef,chainDict) return theChainDef diff --git a/Trigger/TriggerCommon/TriggerMenuXML/data/LVL1config_MC_pp_v8.xml b/Trigger/TriggerCommon/TriggerMenuXML/data/LVL1config_MC_pp_v8.xml index dd9c5205a44ea081304462edf81cfb4d40508aac..f113ebe1b0644c5811e64aea9526442158a414de 100644 --- a/Trigger/TriggerCommon/TriggerMenuXML/data/LVL1config_MC_pp_v8.xml +++ b/Trigger/TriggerCommon/TriggerMenuXML/data/LVL1config_MC_pp_v8.xml @@ -2,8 +2,8 @@ <!DOCTYPE LVL1Config SYSTEM "LVL1config.dtd"> <LVL1Config name="MC_pp_v8" ctpVersion="4" l1Version="1"> <!--File is generated by TriggerMenu--> - <!--No. L1 thresholds defined: 319--> - <!--No. L1 items defined: 267--> + <!--No. L1 thresholds defined: 358--> + <!--No. L1 items defined: 262--> <TriggerMenu name="MC_pp_v8" phase="lumi"> <TriggerItem ctpid="0" partition="1" name="L1_EM3" complex_deadtime="0" definition="(EM3[x1]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> <AND> @@ -370,13 +370,6 @@ <InternalTrigger name="BGRP1"/> </AND> </TriggerItem> - <TriggerItem ctpid="59" partition="1" name="L1_2EM10VHI" complex_deadtime="0" definition="(EM10VHI[x2]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> - <AND> - <TriggerCondition multi="2" name="EM10VHI_x2" triggerthreshold="EM10VHI"/> - <InternalTrigger name="BGRP0"/> - <InternalTrigger name="BGRP1"/> - </AND> - </TriggerItem> <TriggerItem ctpid="60" partition="1" name="L1_EM15VHI_2TAU12IM" complex_deadtime="0" definition="(EM15VHI[x1]&HA12IM[x2]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> <AND> <TriggerCondition multi="1" name="EM15VHI_x1" triggerthreshold="EM15VHI"/> @@ -490,14 +483,6 @@ <InternalTrigger name="BGRP1"/> </AND> </TriggerItem> - <TriggerItem ctpid="73" partition="1" name="L1_LFV-EM8I-MU11" complex_deadtime="0" definition="(0INVM10-0DR15-EM8abi-MU10ab[x1]&MU11[x1]&BGRP0&BGRP1)" trigger_type="10000000" monitor="LF:000|HF:000"> - <AND> - <TriggerCondition multi="1" name="0INVM10-0DR15-EM8abi-MU10ab_x1" triggerthreshold="0INVM10-0DR15-EM8abi-MU10ab"/> - <TriggerCondition multi="1" name="MU11_x1" triggerthreshold="MU11"/> - <InternalTrigger name="BGRP0"/> - <InternalTrigger name="BGRP1"/> - </AND> - </TriggerItem> <TriggerItem ctpid="74" partition="1" name="L1_TAU20IM_2J20_XE45" complex_deadtime="0" definition="(HA20IM[x1]&J20[x2]&XE45[x1]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> <AND> <TriggerCondition multi="1" name="HA20IM_x1" triggerthreshold="HA20IM"/> @@ -562,13 +547,6 @@ <InternalTrigger name="BGRP1"/> </AND> </TriggerItem> - <TriggerItem ctpid="82" partition="1" name="L1_LFV-EM12I-MU6" complex_deadtime="0" definition="(0INVM10-0DR15-EM12abi-MU6ab[x1]&BGRP0&BGRP1)" trigger_type="10000000" monitor="LF:000|HF:000"> - <AND> - <TriggerCondition multi="1" name="0INVM10-0DR15-EM12abi-MU6ab_x1" triggerthreshold="0INVM10-0DR15-EM12abi-MU6ab"/> - <InternalTrigger name="BGRP0"/> - <InternalTrigger name="BGRP1"/> - </AND> - </TriggerItem> <TriggerItem ctpid="83" partition="1" name="L1_TAU20IM_2TAU12IM_XE35" complex_deadtime="0" definition="(HA20IM[x1]&HA12IM[x2]&XE35[x1]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> <AND> <TriggerCondition multi="1" name="HA20IM_x1" triggerthreshold="HA20IM"/> @@ -592,20 +570,6 @@ <InternalTrigger name="BGRP1"/> </AND> </TriggerItem> - <TriggerItem ctpid="86" partition="1" name="L1_ZAFB-04DPHI-EM15I" complex_deadtime="0" definition="(60INVM9999-04DPHI32-EM15abhi-FJj15s623ETA49[x1]&BGRP0&BGRP1)" trigger_type="10000000" monitor="LF:000|HF:000"> - <AND> - <TriggerCondition multi="1" name="60INVM9999-04DPHI32-EM15abhi-FJj15s623ETA49_x1" triggerthreshold="60INVM9999-04DPHI32-EM15abhi-FJj15s623ETA49"/> - <InternalTrigger name="BGRP0"/> - <InternalTrigger name="BGRP1"/> - </AND> - </TriggerItem> - <TriggerItem ctpid="87" partition="1" name="L1_ZAFB-25DPHI-EM15I" complex_deadtime="0" definition="(60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49[x1]&BGRP0&BGRP1)" trigger_type="10000000" monitor="LF:000|HF:000"> - <AND> - <TriggerCondition multi="1" name="60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49_x1" triggerthreshold="60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49"/> - <InternalTrigger name="BGRP0"/> - <InternalTrigger name="BGRP1"/> - </AND> - </TriggerItem> <TriggerItem ctpid="88" partition="1" name="L1_MU6_J20" complex_deadtime="0" definition="(MU6[x1]&J20[x1]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> <AND> <TriggerCondition multi="1" name="MU6_x1" triggerthreshold="MU6"/> @@ -735,14 +699,6 @@ <InternalTrigger name="BGRP1"/> </AND> </TriggerItem> - <TriggerItem ctpid="107" partition="1" name="L1_ZAFB-25DPHI-EM18I" complex_deadtime="0" definition="(60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49[x1]&EM18VHI[x1]&BGRP0&BGRP1)" trigger_type="10000000" monitor="LF:000|HF:000"> - <AND> - <TriggerCondition multi="1" name="60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49_x1" triggerthreshold="60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49"/> - <TriggerCondition multi="1" name="EM18VHI_x1" triggerthreshold="EM18VHI"/> - <InternalTrigger name="BGRP0"/> - <InternalTrigger name="BGRP1"/> - </AND> - </TriggerItem> <TriggerItem ctpid="108" partition="1" name="L1_MJJ-500-NFF" complex_deadtime="0" definition="(500INVM9999-J30s6-AJ20s6[x1]&BGRP0&BGRP1)" trigger_type="10000000" monitor="LF:111|HF:000"> <AND> <TriggerCondition multi="1" name="500INVM9999-J30s6-AJ20s6_x1" triggerthreshold="500INVM9999-J30s6-AJ20s6"/> @@ -1064,6 +1020,13 @@ <InternalTrigger name="BGRP1"/> </AND> </TriggerItem> + <TriggerItem ctpid="179" partition="1" name="L1_2EM10VHI" complex_deadtime="0" definition="(EM10VHI[x2]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> + <AND> + <TriggerCondition multi="2" name="EM10VHI_x2" triggerthreshold="EM10VHI"/> + <InternalTrigger name="BGRP0"/> + <InternalTrigger name="BGRP1"/> + </AND> + </TriggerItem> <TriggerItem ctpid="181" partition="1" name="L1_J40.0ETA25_2J15.31ETA49" complex_deadtime="0" definition="(J40.0ETA25[x1]&J15.31ETA49[x2]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> <AND> <TriggerCondition multi="1" name="J40.0ETA25_x1" triggerthreshold="J40.0ETA25"/> @@ -2070,7 +2033,7 @@ <Prescale ctpid="56" cut="000001" value="1"/> <Prescale ctpid="57" cut="000001" value="1"/> <Prescale ctpid="58" cut="000001" value="1"/> - <Prescale ctpid="59" cut="000001" value="1"/> + <Prescale ctpid="59" cut="-000001" value="-1"/> <Prescale ctpid="60" cut="000001" value="1"/> <Prescale ctpid="61" cut="000001" value="1"/> <Prescale ctpid="62" cut="000001" value="1"/> @@ -2084,7 +2047,7 @@ <Prescale ctpid="70" cut="000001" value="1"/> <Prescale ctpid="71" cut="000001" value="1"/> <Prescale ctpid="72" cut="000001" value="1"/> - <Prescale ctpid="73" cut="000001" value="1"/> + <Prescale ctpid="73" cut="-000001" value="-1"/> <Prescale ctpid="74" cut="000001" value="1"/> <Prescale ctpid="75" cut="000001" value="1"/> <Prescale ctpid="76" cut="000001" value="1"/> @@ -2093,12 +2056,12 @@ <Prescale ctpid="79" cut="000001" value="1"/> <Prescale ctpid="80" cut="000001" value="1"/> <Prescale ctpid="81" cut="000001" value="1"/> - <Prescale ctpid="82" cut="000001" value="1"/> + <Prescale ctpid="82" cut="-000001" value="-1"/> <Prescale ctpid="83" cut="000001" value="1"/> <Prescale ctpid="84" cut="000001" value="1"/> <Prescale ctpid="85" cut="000001" value="1"/> - <Prescale ctpid="86" cut="000001" value="1"/> - <Prescale ctpid="87" cut="000001" value="1"/> + <Prescale ctpid="86" cut="-000001" value="-1"/> + <Prescale ctpid="87" cut="-000001" value="-1"/> <Prescale ctpid="88" cut="000001" value="1"/> <Prescale ctpid="89" cut="000001" value="1"/> <Prescale ctpid="90" cut="000001" value="1"/> @@ -2118,7 +2081,7 @@ <Prescale ctpid="104" cut="000001" value="1"/> <Prescale ctpid="105" cut="000001" value="1"/> <Prescale ctpid="106" cut="000001" value="1"/> - <Prescale ctpid="107" cut="000001" value="1"/> + <Prescale ctpid="107" cut="-000001" value="-1"/> <Prescale ctpid="108" cut="000001" value="1"/> <Prescale ctpid="109" cut="000001" value="1"/> <Prescale ctpid="110" cut="-000001" value="-1"/> @@ -2190,7 +2153,7 @@ <Prescale ctpid="176" cut="000001" value="1"/> <Prescale ctpid="177" cut="-000001" value="-1"/> <Prescale ctpid="178" cut="-000001" value="-1"/> - <Prescale ctpid="179" cut="-000001" value="-1"/> + <Prescale ctpid="179" cut="000001" value="1"/> <Prescale ctpid="180" cut="-000001" value="-1"/> <Prescale ctpid="181" cut="000001" value="1"/> <Prescale ctpid="182" cut="000001" value="1"/> @@ -4124,6 +4087,561 @@ <TriggerCounter name="1ZDC_C" type="CTPIN"> <TriggerCondition name="1ZDC_C" triggerthreshold="ZDC_C" multi="1"/> </TriggerCounter> + <TriggerCounter name="1eEM10VH" type="CTPIN"> + <TriggerCondition name="1eEM10VH" triggerthreshold="eEM10VH" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM10VH" type="CTPIN"> + <TriggerCondition name="2eEM10VH" triggerthreshold="eEM10VH" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM10VH" type="CTPIN"> + <TriggerCondition name="3eEM10VH" triggerthreshold="eEM10VH" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM10VH" type="CTPIN"> + <TriggerCondition name="4eEM10VH" triggerthreshold="eEM10VH" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM10VH" type="CTPIN"> + <TriggerCondition name="5eEM10VH" triggerthreshold="eEM10VH" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM10VH" type="CTPIN"> + <TriggerCondition name="6eEM10VH" triggerthreshold="eEM10VH" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM10VH" type="CTPIN"> + <TriggerCondition name="7eEM10VH" triggerthreshold="eEM10VH" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM15VH" type="CTPIN"> + <TriggerCondition name="1eEM15VH" triggerthreshold="eEM15VH" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM15VH" type="CTPIN"> + <TriggerCondition name="2eEM15VH" triggerthreshold="eEM15VH" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM15VH" type="CTPIN"> + <TriggerCondition name="3eEM15VH" triggerthreshold="eEM15VH" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM15VH" type="CTPIN"> + <TriggerCondition name="4eEM15VH" triggerthreshold="eEM15VH" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM15VH" type="CTPIN"> + <TriggerCondition name="5eEM15VH" triggerthreshold="eEM15VH" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM15VH" type="CTPIN"> + <TriggerCondition name="6eEM15VH" triggerthreshold="eEM15VH" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM15VH" type="CTPIN"> + <TriggerCondition name="7eEM15VH" triggerthreshold="eEM15VH" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM15VHI" type="CTPIN"> + <TriggerCondition name="1eEM15VHI" triggerthreshold="eEM15VHI" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM15VHI" type="CTPIN"> + <TriggerCondition name="2eEM15VHI" triggerthreshold="eEM15VHI" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM15VHI" type="CTPIN"> + <TriggerCondition name="3eEM15VHI" triggerthreshold="eEM15VHI" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM15VHI" type="CTPIN"> + <TriggerCondition name="4eEM15VHI" triggerthreshold="eEM15VHI" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM15VHI" type="CTPIN"> + <TriggerCondition name="5eEM15VHI" triggerthreshold="eEM15VHI" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM15VHI" type="CTPIN"> + <TriggerCondition name="6eEM15VHI" triggerthreshold="eEM15VHI" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM15VHI" type="CTPIN"> + <TriggerCondition name="7eEM15VHI" triggerthreshold="eEM15VHI" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM18VHI" type="CTPIN"> + <TriggerCondition name="1eEM18VHI" triggerthreshold="eEM18VHI" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM18VHI" type="CTPIN"> + <TriggerCondition name="2eEM18VHI" triggerthreshold="eEM18VHI" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM18VHI" type="CTPIN"> + <TriggerCondition name="3eEM18VHI" triggerthreshold="eEM18VHI" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM18VHI" type="CTPIN"> + <TriggerCondition name="4eEM18VHI" triggerthreshold="eEM18VHI" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM18VHI" type="CTPIN"> + <TriggerCondition name="5eEM18VHI" triggerthreshold="eEM18VHI" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM18VHI" type="CTPIN"> + <TriggerCondition name="6eEM18VHI" triggerthreshold="eEM18VHI" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM18VHI" type="CTPIN"> + <TriggerCondition name="7eEM18VHI" triggerthreshold="eEM18VHI" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM20VH" type="CTPIN"> + <TriggerCondition name="1eEM20VH" triggerthreshold="eEM20VH" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM20VH" type="CTPIN"> + <TriggerCondition name="2eEM20VH" triggerthreshold="eEM20VH" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM20VH" type="CTPIN"> + <TriggerCondition name="3eEM20VH" triggerthreshold="eEM20VH" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM20VH" type="CTPIN"> + <TriggerCondition name="4eEM20VH" triggerthreshold="eEM20VH" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM20VH" type="CTPIN"> + <TriggerCondition name="5eEM20VH" triggerthreshold="eEM20VH" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM20VH" type="CTPIN"> + <TriggerCondition name="6eEM20VH" triggerthreshold="eEM20VH" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM20VH" type="CTPIN"> + <TriggerCondition name="7eEM20VH" triggerthreshold="eEM20VH" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM20VHI" type="CTPIN"> + <TriggerCondition name="1eEM20VHI" triggerthreshold="eEM20VHI" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM20VHI" type="CTPIN"> + <TriggerCondition name="2eEM20VHI" triggerthreshold="eEM20VHI" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM20VHI" type="CTPIN"> + <TriggerCondition name="3eEM20VHI" triggerthreshold="eEM20VHI" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM20VHI" type="CTPIN"> + <TriggerCondition name="4eEM20VHI" triggerthreshold="eEM20VHI" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM20VHI" type="CTPIN"> + <TriggerCondition name="5eEM20VHI" triggerthreshold="eEM20VHI" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM20VHI" type="CTPIN"> + <TriggerCondition name="6eEM20VHI" triggerthreshold="eEM20VHI" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM20VHI" type="CTPIN"> + <TriggerCondition name="7eEM20VHI" triggerthreshold="eEM20VHI" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM22" type="CTPIN"> + <TriggerCondition name="1eEM22" triggerthreshold="eEM22" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM22" type="CTPIN"> + <TriggerCondition name="2eEM22" triggerthreshold="eEM22" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM22" type="CTPIN"> + <TriggerCondition name="3eEM22" triggerthreshold="eEM22" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM22" type="CTPIN"> + <TriggerCondition name="4eEM22" triggerthreshold="eEM22" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM22" type="CTPIN"> + <TriggerCondition name="5eEM22" triggerthreshold="eEM22" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM22" type="CTPIN"> + <TriggerCondition name="6eEM22" triggerthreshold="eEM22" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM22" type="CTPIN"> + <TriggerCondition name="7eEM22" triggerthreshold="eEM22" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM22VHI" type="CTPIN"> + <TriggerCondition name="1eEM22VHI" triggerthreshold="eEM22VHI" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM22VHI" type="CTPIN"> + <TriggerCondition name="2eEM22VHI" triggerthreshold="eEM22VHI" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM22VHI" type="CTPIN"> + <TriggerCondition name="3eEM22VHI" triggerthreshold="eEM22VHI" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM22VHI" type="CTPIN"> + <TriggerCondition name="4eEM22VHI" triggerthreshold="eEM22VHI" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM22VHI" type="CTPIN"> + <TriggerCondition name="5eEM22VHI" triggerthreshold="eEM22VHI" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM22VHI" type="CTPIN"> + <TriggerCondition name="6eEM22VHI" triggerthreshold="eEM22VHI" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM22VHI" type="CTPIN"> + <TriggerCondition name="7eEM22VHI" triggerthreshold="eEM22VHI" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM7" type="CTPIN"> + <TriggerCondition name="1eEM7" triggerthreshold="eEM7" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM7" type="CTPIN"> + <TriggerCondition name="2eEM7" triggerthreshold="eEM7" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM7" type="CTPIN"> + <TriggerCondition name="3eEM7" triggerthreshold="eEM7" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM7" type="CTPIN"> + <TriggerCondition name="4eEM7" triggerthreshold="eEM7" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM7" type="CTPIN"> + <TriggerCondition name="5eEM7" triggerthreshold="eEM7" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM7" type="CTPIN"> + <TriggerCondition name="6eEM7" triggerthreshold="eEM7" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM7" type="CTPIN"> + <TriggerCondition name="7eEM7" triggerthreshold="eEM7" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM8VH" type="CTPIN"> + <TriggerCondition name="1eEM8VH" triggerthreshold="eEM8VH" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM8VH" type="CTPIN"> + <TriggerCondition name="2eEM8VH" triggerthreshold="eEM8VH" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM8VH" type="CTPIN"> + <TriggerCondition name="3eEM8VH" triggerthreshold="eEM8VH" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM8VH" type="CTPIN"> + <TriggerCondition name="4eEM8VH" triggerthreshold="eEM8VH" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM8VH" type="CTPIN"> + <TriggerCondition name="5eEM8VH" triggerthreshold="eEM8VH" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM8VH" type="CTPIN"> + <TriggerCondition name="6eEM8VH" triggerthreshold="eEM8VH" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM8VH" type="CTPIN"> + <TriggerCondition name="7eEM8VH" triggerthreshold="eEM8VH" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU100" type="CTPIN"> + <TriggerCondition name="1eTAU100" triggerthreshold="eTAU100" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU100" type="CTPIN"> + <TriggerCondition name="2eTAU100" triggerthreshold="eTAU100" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU100" type="CTPIN"> + <TriggerCondition name="3eTAU100" triggerthreshold="eTAU100" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU100" type="CTPIN"> + <TriggerCondition name="4eTAU100" triggerthreshold="eTAU100" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU100" type="CTPIN"> + <TriggerCondition name="5eTAU100" triggerthreshold="eTAU100" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU100" type="CTPIN"> + <TriggerCondition name="6eTAU100" triggerthreshold="eTAU100" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU100" type="CTPIN"> + <TriggerCondition name="7eTAU100" triggerthreshold="eTAU100" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU12" type="CTPIN"> + <TriggerCondition name="1eTAU12" triggerthreshold="eTAU12" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU12" type="CTPIN"> + <TriggerCondition name="2eTAU12" triggerthreshold="eTAU12" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU12" type="CTPIN"> + <TriggerCondition name="3eTAU12" triggerthreshold="eTAU12" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU12" type="CTPIN"> + <TriggerCondition name="4eTAU12" triggerthreshold="eTAU12" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU12" type="CTPIN"> + <TriggerCondition name="5eTAU12" triggerthreshold="eTAU12" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU12" type="CTPIN"> + <TriggerCondition name="6eTAU12" triggerthreshold="eTAU12" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU12" type="CTPIN"> + <TriggerCondition name="7eTAU12" triggerthreshold="eTAU12" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU12IM" type="CTPIN"> + <TriggerCondition name="1eTAU12IM" triggerthreshold="eTAU12IM" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU12IM" type="CTPIN"> + <TriggerCondition name="2eTAU12IM" triggerthreshold="eTAU12IM" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU12IM" type="CTPIN"> + <TriggerCondition name="3eTAU12IM" triggerthreshold="eTAU12IM" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU12IM" type="CTPIN"> + <TriggerCondition name="4eTAU12IM" triggerthreshold="eTAU12IM" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU12IM" type="CTPIN"> + <TriggerCondition name="5eTAU12IM" triggerthreshold="eTAU12IM" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU12IM" type="CTPIN"> + <TriggerCondition name="6eTAU12IM" triggerthreshold="eTAU12IM" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU12IM" type="CTPIN"> + <TriggerCondition name="7eTAU12IM" triggerthreshold="eTAU12IM" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU20" type="CTPIN"> + <TriggerCondition name="1eTAU20" triggerthreshold="eTAU20" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU20" type="CTPIN"> + <TriggerCondition name="2eTAU20" triggerthreshold="eTAU20" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU20" type="CTPIN"> + <TriggerCondition name="3eTAU20" triggerthreshold="eTAU20" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU20" type="CTPIN"> + <TriggerCondition name="4eTAU20" triggerthreshold="eTAU20" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU20" type="CTPIN"> + <TriggerCondition name="5eTAU20" triggerthreshold="eTAU20" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU20" type="CTPIN"> + <TriggerCondition name="6eTAU20" triggerthreshold="eTAU20" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU20" type="CTPIN"> + <TriggerCondition name="7eTAU20" triggerthreshold="eTAU20" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU20IM" type="CTPIN"> + <TriggerCondition name="1eTAU20IM" triggerthreshold="eTAU20IM" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU20IM" type="CTPIN"> + <TriggerCondition name="2eTAU20IM" triggerthreshold="eTAU20IM" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU20IM" type="CTPIN"> + <TriggerCondition name="3eTAU20IM" triggerthreshold="eTAU20IM" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU20IM" type="CTPIN"> + <TriggerCondition name="4eTAU20IM" triggerthreshold="eTAU20IM" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU20IM" type="CTPIN"> + <TriggerCondition name="5eTAU20IM" triggerthreshold="eTAU20IM" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU20IM" type="CTPIN"> + <TriggerCondition name="6eTAU20IM" triggerthreshold="eTAU20IM" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU20IM" type="CTPIN"> + <TriggerCondition name="7eTAU20IM" triggerthreshold="eTAU20IM" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU25IM" type="CTPIN"> + <TriggerCondition name="1eTAU25IM" triggerthreshold="eTAU25IM" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU25IM" type="CTPIN"> + <TriggerCondition name="2eTAU25IM" triggerthreshold="eTAU25IM" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU25IM" type="CTPIN"> + <TriggerCondition name="3eTAU25IM" triggerthreshold="eTAU25IM" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU25IM" type="CTPIN"> + <TriggerCondition name="4eTAU25IM" triggerthreshold="eTAU25IM" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU25IM" type="CTPIN"> + <TriggerCondition name="5eTAU25IM" triggerthreshold="eTAU25IM" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU25IM" type="CTPIN"> + <TriggerCondition name="6eTAU25IM" triggerthreshold="eTAU25IM" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU25IM" type="CTPIN"> + <TriggerCondition name="7eTAU25IM" triggerthreshold="eTAU25IM" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU40" type="CTPIN"> + <TriggerCondition name="1eTAU40" triggerthreshold="eTAU40" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU40" type="CTPIN"> + <TriggerCondition name="2eTAU40" triggerthreshold="eTAU40" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU40" type="CTPIN"> + <TriggerCondition name="3eTAU40" triggerthreshold="eTAU40" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU40" type="CTPIN"> + <TriggerCondition name="4eTAU40" triggerthreshold="eTAU40" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU40" type="CTPIN"> + <TriggerCondition name="5eTAU40" triggerthreshold="eTAU40" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU40" type="CTPIN"> + <TriggerCondition name="6eTAU40" triggerthreshold="eTAU40" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU40" type="CTPIN"> + <TriggerCondition name="7eTAU40" triggerthreshold="eTAU40" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU60" type="CTPIN"> + <TriggerCondition name="1eTAU60" triggerthreshold="eTAU60" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU60" type="CTPIN"> + <TriggerCondition name="2eTAU60" triggerthreshold="eTAU60" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU60" type="CTPIN"> + <TriggerCondition name="3eTAU60" triggerthreshold="eTAU60" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU60" type="CTPIN"> + <TriggerCondition name="4eTAU60" triggerthreshold="eTAU60" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU60" type="CTPIN"> + <TriggerCondition name="5eTAU60" triggerthreshold="eTAU60" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU60" type="CTPIN"> + <TriggerCondition name="6eTAU60" triggerthreshold="eTAU60" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU60" type="CTPIN"> + <TriggerCondition name="7eTAU60" triggerthreshold="eTAU60" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1gXEPUFIT20" type="CTPIN"> + <TriggerCondition name="1gXEPUFIT20" triggerthreshold="gXEPUFIT20" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXEPUFIT50" type="CTPIN"> + <TriggerCondition name="1gXEPUFIT50" triggerthreshold="gXEPUFIT50" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXERHO20" type="CTPIN"> + <TriggerCondition name="1gXERHO20" triggerthreshold="gXERHO20" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXERHO30" type="CTPIN"> + <TriggerCondition name="1gXERHO30" triggerthreshold="gXERHO30" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXERHO35" type="CTPIN"> + <TriggerCondition name="1gXERHO35" triggerthreshold="gXERHO35" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXERHO40" type="CTPIN"> + <TriggerCondition name="1gXERHO40" triggerthreshold="gXERHO40" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXERHO45" type="CTPIN"> + <TriggerCondition name="1gXERHO45" triggerthreshold="gXERHO45" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXERHO50" type="CTPIN"> + <TriggerCondition name="1gXERHO50" triggerthreshold="gXERHO50" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1jJ100" type="CTPIN"> + <TriggerCondition name="1jJ100" triggerthreshold="jJ100" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ100" type="CTPIN"> + <TriggerCondition name="2jJ100" triggerthreshold="jJ100" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ100" type="CTPIN"> + <TriggerCondition name="3jJ100" triggerthreshold="jJ100" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ12" type="CTPIN"> + <TriggerCondition name="1jJ12" triggerthreshold="jJ12" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ12" type="CTPIN"> + <TriggerCondition name="2jJ12" triggerthreshold="jJ12" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ12" type="CTPIN"> + <TriggerCondition name="3jJ12" triggerthreshold="jJ12" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ12.0ETA23" type="CTPIN"> + <TriggerCondition name="1jJ12.0ETA23" triggerthreshold="jJ12.0ETA23" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ12.0ETA23" type="CTPIN"> + <TriggerCondition name="2jJ12.0ETA23" triggerthreshold="jJ12.0ETA23" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ12.0ETA23" type="CTPIN"> + <TriggerCondition name="3jJ12.0ETA23" triggerthreshold="jJ12.0ETA23" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ15" type="CTPIN"> + <TriggerCondition name="1jJ15" triggerthreshold="jJ15" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ15" type="CTPIN"> + <TriggerCondition name="2jJ15" triggerthreshold="jJ15" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ15" type="CTPIN"> + <TriggerCondition name="3jJ15" triggerthreshold="jJ15" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ15.0ETA25" type="CTPIN"> + <TriggerCondition name="1jJ15.0ETA25" triggerthreshold="jJ15.0ETA25" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ15.0ETA25" type="CTPIN"> + <TriggerCondition name="2jJ15.0ETA25" triggerthreshold="jJ15.0ETA25" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ15.0ETA25" type="CTPIN"> + <TriggerCondition name="3jJ15.0ETA25" triggerthreshold="jJ15.0ETA25" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ15.31ETA49" type="CTPIN"> + <TriggerCondition name="1jJ15.31ETA49" triggerthreshold="jJ15.31ETA49" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ15.31ETA49" type="CTPIN"> + <TriggerCondition name="2jJ15.31ETA49" triggerthreshold="jJ15.31ETA49" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ15.31ETA49" type="CTPIN"> + <TriggerCondition name="3jJ15.31ETA49" triggerthreshold="jJ15.31ETA49" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ20" type="CTPIN"> + <TriggerCondition name="1jJ20" triggerthreshold="jJ20" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ20" type="CTPIN"> + <TriggerCondition name="2jJ20" triggerthreshold="jJ20" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ20" type="CTPIN"> + <TriggerCondition name="3jJ20" triggerthreshold="jJ20" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ20.31ETA49" type="CTPIN"> + <TriggerCondition name="1jJ20.31ETA49" triggerthreshold="jJ20.31ETA49" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ20.31ETA49" type="CTPIN"> + <TriggerCondition name="2jJ20.31ETA49" triggerthreshold="jJ20.31ETA49" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ20.31ETA49" type="CTPIN"> + <TriggerCondition name="3jJ20.31ETA49" triggerthreshold="jJ20.31ETA49" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ25" type="CTPIN"> + <TriggerCondition name="1jJ25" triggerthreshold="jJ25" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ25" type="CTPIN"> + <TriggerCondition name="2jJ25" triggerthreshold="jJ25" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ25" type="CTPIN"> + <TriggerCondition name="3jJ25" triggerthreshold="jJ25" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ25.0ETA23" type="CTPIN"> + <TriggerCondition name="1jJ25.0ETA23" triggerthreshold="jJ25.0ETA23" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ25.0ETA23" type="CTPIN"> + <TriggerCondition name="2jJ25.0ETA23" triggerthreshold="jJ25.0ETA23" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ25.0ETA23" type="CTPIN"> + <TriggerCondition name="3jJ25.0ETA23" triggerthreshold="jJ25.0ETA23" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ30" type="CTPIN"> + <TriggerCondition name="1jJ30" triggerthreshold="jJ30" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ30" type="CTPIN"> + <TriggerCondition name="2jJ30" triggerthreshold="jJ30" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ30" type="CTPIN"> + <TriggerCondition name="3jJ30" triggerthreshold="jJ30" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ35.0ETA23" type="CTPIN"> + <TriggerCondition name="1jJ35.0ETA23" triggerthreshold="jJ35.0ETA23" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ35.0ETA23" type="CTPIN"> + <TriggerCondition name="2jJ35.0ETA23" triggerthreshold="jJ35.0ETA23" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ35.0ETA23" type="CTPIN"> + <TriggerCondition name="3jJ35.0ETA23" triggerthreshold="jJ35.0ETA23" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ40" type="CTPIN"> + <TriggerCondition name="1jJ40" triggerthreshold="jJ40" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ40" type="CTPIN"> + <TriggerCondition name="2jJ40" triggerthreshold="jJ40" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ40" type="CTPIN"> + <TriggerCondition name="3jJ40" triggerthreshold="jJ40" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ40.0ETA25" type="CTPIN"> + <TriggerCondition name="1jJ40.0ETA25" triggerthreshold="jJ40.0ETA25" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ40.0ETA25" type="CTPIN"> + <TriggerCondition name="2jJ40.0ETA25" triggerthreshold="jJ40.0ETA25" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ40.0ETA25" type="CTPIN"> + <TriggerCondition name="3jJ40.0ETA25" triggerthreshold="jJ40.0ETA25" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ50" type="CTPIN"> + <TriggerCondition name="1jJ50" triggerthreshold="jJ50" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ50" type="CTPIN"> + <TriggerCondition name="2jJ50" triggerthreshold="jJ50" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ50" type="CTPIN"> + <TriggerCondition name="3jJ50" triggerthreshold="jJ50" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ75.31ETA49" type="CTPIN"> + <TriggerCondition name="1jJ75.31ETA49" triggerthreshold="jJ75.31ETA49" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ75.31ETA49" type="CTPIN"> + <TriggerCondition name="2jJ75.31ETA49" triggerthreshold="jJ75.31ETA49" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ75.31ETA49" type="CTPIN"> + <TriggerCondition name="3jJ75.31ETA49" triggerthreshold="jJ75.31ETA49" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ85" type="CTPIN"> + <TriggerCondition name="1jJ85" triggerthreshold="jJ85" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ85" type="CTPIN"> + <TriggerCondition name="2jJ85" triggerthreshold="jJ85" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ85" type="CTPIN"> + <TriggerCondition name="3jJ85" triggerthreshold="jJ85" multi="3"/> + </TriggerCounter> </TriggerCounterList> <TriggerThresholdList> <TriggerThreshold active="1" bitnum="1" id="1" mapping="2" name="ALFA_B7R1L" type="ALFA" input="ctpcore" version="1"> @@ -4652,91 +5170,267 @@ <Signal range_begin="21" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="66" mapping="0" name="J12" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="66" mapping="16" name="eEM7" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eEM7full" phimin="0" phimax="64" priority="1" thresholdval="7" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="67" mapping="17" name="eEM22" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eEM22full" phimin="0" phimax="64" priority="1" thresholdval="22" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="68" mapping="18" name="eEM8VH" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="1" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-18" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="8" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-18" etamax="-15" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="7" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="5" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-11" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="6" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-11" etamax="-8" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="7" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-8" etamax="0" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="8" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="8" etamax="11" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="7" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="11" etamax="14" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="6" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="5" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="18" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="7" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="18" etamax="25" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="8" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="69" mapping="19" name="eEM10VH" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="1" thresholdval="11" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-18" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="10" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-18" etamax="-15" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="7" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-11" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="8" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-11" etamax="-8" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-8" etamax="0" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="11" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="8" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="11" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="8" etamax="11" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="11" etamax="14" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="8" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="7" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="18" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="18" etamax="25" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="10" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="70" mapping="20" name="eEM15VH" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="1" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-17" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-17" etamax="-15" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="13" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-12" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="14" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-12" etamax="-9" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-9" etamax="-7" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-7" etamax="0" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="7" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="7" etamax="9" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="9" etamax="12" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="12" etamax="14" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="14" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="13" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="17" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="17" etamax="25" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="71" mapping="21" name="eEM20VH" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="1" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-17" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-17" etamax="-15" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-13" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="18" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-13" etamax="-11" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-11" etamax="-8" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-8" etamax="-7" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-7" etamax="0" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="7" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="7" etamax="8" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="8" etamax="11" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="11" etamax="13" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="13" etamax="14" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="18" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="17" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="17" etamax="25" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="72" mapping="22" name="eEM15VHI" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="1" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-17" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-17" etamax="-15" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="13" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-12" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="14" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-12" etamax="-9" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-9" etamax="-7" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-7" etamax="0" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="7" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="7" etamax="9" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="9" etamax="12" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="12" etamax="14" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="14" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="13" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="17" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="17" etamax="25" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="73" mapping="23" name="eEM18VHI" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="1" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-17" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-17" etamax="-15" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-13" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-13" etamax="-11" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-11" etamax="-8" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="18" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-8" etamax="-7" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-7" etamax="0" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="7" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="7" etamax="8" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="8" etamax="11" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="18" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="11" etamax="13" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="13" etamax="14" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="17" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="17" etamax="25" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="74" mapping="24" name="eEM20VHI" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="1" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-17" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-17" etamax="-15" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-13" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="18" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-13" etamax="-11" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-11" etamax="-8" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-8" etamax="-7" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-7" etamax="0" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="7" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="7" etamax="8" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="8" etamax="11" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="11" etamax="13" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="13" etamax="14" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="18" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="17" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="17" etamax="25" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="75" mapping="25" name="eEM22VHI" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="1" thresholdval="24" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-17" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="23" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-17" etamax="-15" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-13" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-13" etamax="-11" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-11" etamax="-8" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-8" etamax="-7" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="23" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-7" etamax="0" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="24" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="7" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="24" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="7" etamax="8" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="23" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="8" etamax="11" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="11" etamax="13" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="13" etamax="14" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="17" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="17" etamax="25" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="23" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="76" mapping="0" name="J12" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J12full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J12full" phimin="0" phimax="64" priority="1" thresholdval="12" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="0" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="67" mapping="1" name="J12.0ETA23" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="77" mapping="1" name="J12.0ETA23" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J12.0ETA23full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-23" etamax="23" had_isolation="63" had_veto="63" name="J12.0ETA23full" phimin="0" phimax="64" priority="1" thresholdval="12" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="3" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="68" mapping="2" name="J15" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="78" mapping="2" name="J15" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J15full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J15full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="6" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="69" mapping="3" name="J15.0ETA25" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="79" mapping="3" name="J15.0ETA25" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J15.0ETA25full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="25" had_isolation="63" had_veto="63" name="J15.0ETA25full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="9" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="70" mapping="4" name="J20" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="80" mapping="4" name="J20" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J20full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J20full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="12" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="71" mapping="5" name="J25" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="81" mapping="5" name="J25" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J25full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J25full" phimin="0" phimax="64" priority="1" thresholdval="25" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="15" range_end="17"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="72" mapping="6" name="J25.0ETA23" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="82" mapping="6" name="J25.0ETA23" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J25.0ETA23full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-23" etamax="23" had_isolation="63" had_veto="63" name="J25.0ETA23full" phimin="0" phimax="64" priority="1" thresholdval="25" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="18" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="73" mapping="7" name="J30" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="83" mapping="7" name="J30" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J30full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J30full" phimin="0" phimax="64" priority="1" thresholdval="30" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="21" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="74" mapping="8" name="J20.0ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="84" mapping="8" name="J20.0ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J20.0ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J20.0ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="24" range_end="26"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="75" mapping="9" name="J30.0ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="85" mapping="9" name="J30.0ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J30.0ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J30.0ETA49full" phimin="0" phimax="64" priority="1" thresholdval="30" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="27" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="76" mapping="10" name="J35.0ETA23" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="86" mapping="10" name="J35.0ETA23" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J35.0ETA23full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-23" etamax="23" had_isolation="63" had_veto="63" name="J35.0ETA23full" phimin="0" phimax="64" priority="1" thresholdval="35" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> <Signal range_begin="0" range_end="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="77" mapping="11" name="J40.0ETA25" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="87" mapping="11" name="J40.0ETA25" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J40.0ETA25full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="25" had_isolation="63" had_veto="63" name="J40.0ETA25full" phimin="0" phimax="64" priority="1" thresholdval="40" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> <Signal range_begin="2" range_end="3"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="78" mapping="12" name="J20.28ETA31" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="88" mapping="12" name="J20.28ETA31" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J20.28ETA31full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="-28" had_isolation="63" had_veto="63" name="J20.28ETA31full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="28" etamax="31" had_isolation="63" had_veto="63" name="J20.28ETA31full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> @@ -4744,88 +5438,186 @@ <Signal range_begin="4" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="79" mapping="13" name="J40" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="89" mapping="13" name="jJ12.0ETA23" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ12.0ETA23full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-23" etamax="23" had_isolation="63" had_veto="63" name="jJ12.0ETA23full" phimin="0" phimax="64" priority="1" thresholdval="12" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="6" range_end="7"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="90" mapping="14" name="jJ15.0ETA25" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ15.0ETA25full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="25" had_isolation="63" had_veto="63" name="jJ15.0ETA25full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="8" range_end="9"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="91" mapping="15" name="jJ25.0ETA23" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ25.0ETA23full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-23" etamax="23" had_isolation="63" had_veto="63" name="jJ25.0ETA23full" phimin="0" phimax="64" priority="1" thresholdval="25" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="10" range_end="11"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="92" mapping="16" name="jJ35.0ETA23" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ35.0ETA23full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-23" etamax="23" had_isolation="63" had_veto="63" name="jJ35.0ETA23full" phimin="0" phimax="64" priority="1" thresholdval="35" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="12" range_end="13"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="93" mapping="17" name="jJ40.0ETA25" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ40.0ETA25full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="25" had_isolation="63" had_veto="63" name="jJ40.0ETA25full" phimin="0" phimax="64" priority="1" thresholdval="40" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="14" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="94" mapping="18" name="J40" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J40full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J40full" phimin="0" phimax="64" priority="1" thresholdval="40" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="6" range_end="7"/> + <Signal range_begin="16" range_end="17"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="80" mapping="14" name="J50" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="95" mapping="19" name="J50" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J50full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J50full" phimin="0" phimax="64" priority="1" thresholdval="50" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="8" range_end="9"/> + <Signal range_begin="18" range_end="19"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="81" mapping="15" name="J75" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="96" mapping="20" name="J75" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J75full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J75full" phimin="0" phimax="64" priority="1" thresholdval="75" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="10" range_end="11"/> + <Signal range_begin="20" range_end="21"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="82" mapping="16" name="J85" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="97" mapping="21" name="J85" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J85full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J85full" phimin="0" phimax="64" priority="1" thresholdval="85" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="12" range_end="13"/> + <Signal range_begin="22" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="83" mapping="17" name="J100" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="98" mapping="22" name="J100" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J100full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J100full" phimin="0" phimax="64" priority="1" thresholdval="100" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="14" range_end="15"/> + <Signal range_begin="24" range_end="25"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="84" mapping="18" name="J45.0ETA20" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="99" mapping="23" name="J45.0ETA20" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J45.0ETA20full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-20" etamax="20" had_isolation="63" had_veto="63" name="J45.0ETA20full" phimin="0" phimax="64" priority="1" thresholdval="45" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="16" range_end="17"/> + <Signal range_begin="26" range_end="27"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="85" mapping="19" name="J120" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="100" mapping="24" name="J120" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J120full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J120full" phimin="0" phimax="64" priority="1" thresholdval="120" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="18" range_end="19"/> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="101" mapping="25" name="jJ12" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ12full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ12full" phimin="0" phimax="64" priority="1" thresholdval="12" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="102" mapping="26" name="jJ15" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ15full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ15full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="103" mapping="27" name="jJ20" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ20full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ20full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="104" mapping="28" name="jJ25" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ25full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ25full" phimin="0" phimax="64" priority="1" thresholdval="25" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="105" mapping="29" name="jJ30" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ30full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ30full" phimin="0" phimax="64" priority="1" thresholdval="30" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="106" mapping="30" name="jJ40" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ40full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ40full" phimin="0" phimax="64" priority="1" thresholdval="40" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="107" mapping="31" name="jJ50" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ50full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ50full" phimin="0" phimax="64" priority="1" thresholdval="50" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="86" mapping="20" name="J15.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="108" mapping="32" name="jJ85" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ85full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ85full" phimin="0" phimax="64" priority="1" thresholdval="85" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="109" mapping="33" name="jJ100" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ100full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ100full" phimin="0" phimax="64" priority="1" thresholdval="100" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="110" mapping="34" name="J15.31ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J15.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="J15.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="J15.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="20" range_end="21"/> + <Signal range_begin="28" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="87" mapping="21" name="J20.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="111" mapping="35" name="J20.31ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J20.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="J20.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="J20.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="22" range_end="23"/> + <Signal range_begin="28" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="88" mapping="22" name="J30.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="112" mapping="36" name="J30.31ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J30.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="J30.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="30" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="J30.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="30" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="24" range_end="25"/> + <Signal range_begin="28" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="89" mapping="23" name="J50.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="113" mapping="37" name="J50.31ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J50.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="J50.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="50" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="J50.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="50" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="26" range_end="27"/> + <Signal range_begin="28" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="90" mapping="24" name="J75.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="114" mapping="38" name="J75.31ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J75.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="J75.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="75" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="J75.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="75" type="JET" window="8" windowSize="LARGE"/> @@ -4833,19 +5625,43 @@ <Signal range_begin="28" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="91" mapping="0" name="LUCID_A" type="LUCID" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="115" mapping="39" name="jJ15.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ15.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="jJ15.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="jJ15.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="116" mapping="40" name="jJ20.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ20.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="jJ20.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="jJ20.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="117" mapping="41" name="jJ75.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ75.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="jJ75.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="75" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="jJ75.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="75" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="118" mapping="0" name="LUCID_A" type="LUCID" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="LUCID_Afull" phimin="0" phimax="64" priority="0" thresholdval="650" type="LUCID" window="0"/> <Cable connector="CON1" input="SLOT9" name="CTPCAL"> <Signal range_begin="19" range_end="19"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="92" mapping="1" name="LUCID_C" type="LUCID" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="119" mapping="1" name="LUCID_C" type="LUCID" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="LUCID_Cfull" phimin="0" phimax="64" priority="0" thresholdval="650" type="LUCID" window="0"/> <Cable connector="CON1" input="SLOT9" name="CTPCAL"> <Signal range_begin="20" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="93" mapping="0" name="MBTS_A" type="MBTS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="120" mapping="0" name="MBTS_A" type="MBTS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A0full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A10full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A11full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> @@ -4866,7 +5682,7 @@ <Signal range_begin="16" range_end="18"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="94" mapping="1" name="MBTS_C" type="MBTS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="121" mapping="1" name="MBTS_C" type="MBTS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C0full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C10full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C11full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> @@ -4887,457 +5703,505 @@ <Signal range_begin="16" range_end="18"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="95" mapping="0" name="MBTS_A0" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="122" mapping="0" name="MBTS_A0" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A0full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="0" range_end="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="96" mapping="1" name="MBTS_A1" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="123" mapping="1" name="MBTS_A1" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A1full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="1" range_end="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="97" mapping="2" name="MBTS_A2" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="124" mapping="2" name="MBTS_A2" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A2full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="2" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="98" mapping="3" name="MBTS_A3" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="125" mapping="3" name="MBTS_A3" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A3full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="3" range_end="3"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="99" mapping="4" name="MBTS_A4" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="126" mapping="4" name="MBTS_A4" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A4full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="4" range_end="4"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="100" mapping="5" name="MBTS_A5" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="127" mapping="5" name="MBTS_A5" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A5full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="5" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="101" mapping="6" name="MBTS_A6" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="128" mapping="6" name="MBTS_A6" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A6full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="6" range_end="6"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="102" mapping="7" name="MBTS_A7" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="129" mapping="7" name="MBTS_A7" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A7full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="7" range_end="7"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="103" mapping="8" name="MBTS_A8" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="130" mapping="8" name="MBTS_A8" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A8full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="8" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="104" mapping="9" name="MBTS_A10" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="131" mapping="9" name="MBTS_A10" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A10full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="9" range_end="9"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="105" mapping="10" name="MBTS_A12" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="132" mapping="10" name="MBTS_A12" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A12full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="10" range_end="10"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="106" mapping="11" name="MBTS_A14" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="133" mapping="11" name="MBTS_A14" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A14full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="11" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="107" mapping="12" name="MBTS_A9" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="134" mapping="12" name="MBTS_A9" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A9full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="12" range_end="12"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="108" mapping="13" name="MBTS_A11" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="135" mapping="13" name="MBTS_A11" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A11full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="13" range_end="13"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="109" mapping="14" name="MBTS_A13" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="136" mapping="14" name="MBTS_A13" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A13full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="14" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="110" mapping="15" name="MBTS_A15" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="137" mapping="15" name="MBTS_A15" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A15full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="15" range_end="15"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="111" mapping="16" name="MBTS_C0" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="138" mapping="16" name="MBTS_C0" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C0full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="0" range_end="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="112" mapping="17" name="MBTS_C1" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="139" mapping="17" name="MBTS_C1" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C1full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="1" range_end="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="113" mapping="18" name="MBTS_C2" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="140" mapping="18" name="MBTS_C2" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C2full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="2" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="114" mapping="19" name="MBTS_C3" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="141" mapping="19" name="MBTS_C3" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C3full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="3" range_end="3"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="115" mapping="20" name="MBTS_C4" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="142" mapping="20" name="MBTS_C4" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C4full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="4" range_end="4"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="116" mapping="21" name="MBTS_C5" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="143" mapping="21" name="MBTS_C5" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C5full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="5" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="117" mapping="22" name="MBTS_C6" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="144" mapping="22" name="MBTS_C6" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C6full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="6" range_end="6"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="118" mapping="23" name="MBTS_C7" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="145" mapping="23" name="MBTS_C7" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C7full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="7" range_end="7"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="119" mapping="24" name="MBTS_C8" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="146" mapping="24" name="MBTS_C8" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C8full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="8" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="120" mapping="25" name="MBTS_C10" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="147" mapping="25" name="MBTS_C10" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C10full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="9" range_end="9"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="121" mapping="26" name="MBTS_C12" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="148" mapping="26" name="MBTS_C12" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C12full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="10" range_end="10"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="122" mapping="27" name="MBTS_C14" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="149" mapping="27" name="MBTS_C14" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C14full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="11" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="123" mapping="28" name="MBTS_C11" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="150" mapping="28" name="MBTS_C11" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C11full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="12" range_end="12"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="124" mapping="29" name="MBTS_C13" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="151" mapping="29" name="MBTS_C13" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C13full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="13" range_end="13"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="125" mapping="30" name="MBTS_C9" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="152" mapping="30" name="MBTS_C9" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C9full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="14" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="126" mapping="31" name="MBTS_C15" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="153" mapping="31" name="MBTS_C15" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C15full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="15" range_end="15"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="127" mapping="0" name="MU4" type="MUON" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="154" mapping="0" name="MU4" type="MUON" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MU4full" phimin="0" phimax="64" priority="0" thresholdval="4" type="MUON" window="0"/> <Cable connector="CON0" input="SLOT9" name="MUCTPI"> <Signal range_begin="1" range_end="3"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="128" mapping="1" name="MU6" type="MUON" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="155" mapping="1" name="MU6" type="MUON" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MU6full" phimin="0" phimax="64" priority="0" thresholdval="6" type="MUON" window="0"/> <Cable connector="CON0" input="SLOT9" name="MUCTPI"> <Signal range_begin="4" range_end="6"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="129" mapping="2" name="MU10" type="MUON" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="156" mapping="2" name="MU10" type="MUON" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MU10full" phimin="0" phimax="64" priority="0" thresholdval="10" type="MUON" window="0"/> <Cable connector="CON0" input="SLOT9" name="MUCTPI"> <Signal range_begin="7" range_end="9"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="130" mapping="3" name="MU11" type="MUON" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="157" mapping="3" name="MU11" type="MUON" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MU11full" phimin="0" phimax="64" priority="0" thresholdval="11" type="MUON" window="0"/> <Cable connector="CON0" input="SLOT9" name="MUCTPI"> <Signal range_begin="10" range_end="12"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="131" mapping="4" name="MU20" type="MUON" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="158" mapping="4" name="MU20" type="MUON" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MU20full" phimin="0" phimax="64" priority="0" thresholdval="20" type="MUON" window="0"/> <Cable connector="CON0" input="SLOT9" name="MUCTPI"> <Signal range_begin="13" range_end="15"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="132" mapping="5" name="MU21" type="MUON" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="159" mapping="5" name="MU21" type="MUON" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MU21full" phimin="0" phimax="64" priority="0" thresholdval="21" type="MUON" window="0"/> <Cable connector="CON0" input="SLOT9" name="MUCTPI"> <Signal range_begin="16" range_end="18"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="133" mapping="0" name="NIML1A" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="160" mapping="0" name="NIML1A" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="NIML1Afull" phimin="0" phimax="64" priority="0" thresholdval="40" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="19" range_end="19"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="134" mapping="1" name="NIMLHCF" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="161" mapping="1" name="NIMLHCF" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="NIMLHCFfull" phimin="0" phimax="64" priority="0" thresholdval="40" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="20" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="135" mapping="2" name="AFP_NSC" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="162" mapping="2" name="AFP_NSC" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_NSCfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="21" range_end="21"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="136" mapping="3" name="AFP_NSA" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="163" mapping="3" name="AFP_NSA" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_NSAfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="22" range_end="22"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="137" mapping="4" name="AFP_FSA_SIT" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="164" mapping="4" name="AFP_FSA_SIT" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_FSA_SITfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="23" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="138" mapping="5" name="AFP_FSA_TOF" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="165" mapping="5" name="AFP_FSA_TOF" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_FSA_TOFfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="24" range_end="24"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="139" mapping="6" name="AFP_FSA_LOG" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="166" mapping="6" name="AFP_FSA_LOG" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_FSA_LOGfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="25" range_end="25"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="140" mapping="7" name="AFP_FSC_SIT" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="167" mapping="7" name="AFP_FSC_SIT" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_FSC_SITfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="26" range_end="26"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="141" mapping="8" name="AFP_FSC_LOG" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="168" mapping="8" name="AFP_FSC_LOG" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_FSC_LOGfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="27" range_end="27"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="142" mapping="9" name="AFP_FSC_TOF" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="169" mapping="9" name="AFP_FSC_TOF" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_FSC_TOFfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="28" range_end="28"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="143" mapping="12" name="NIMTGC" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="170" mapping="12" name="NIMTGC" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="NIMTGCfull" phimin="0" phimax="64" priority="0" thresholdval="40" type="NIM" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="19" range_end="19"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="144" mapping="13" name="NIMRPC" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="171" mapping="13" name="NIMRPC" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="NIMRPCfull" phimin="0" phimax="64" priority="0" thresholdval="40" type="NIM" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="20" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="145" mapping="14" name="NIMTRT" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="172" mapping="14" name="NIMTRT" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="NIMTRTfull" phimin="0" phimax="64" priority="0" thresholdval="40" type="NIM" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="21" range_end="21"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="146" mapping="0" name="HA5" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="173" mapping="0" name="HA5" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA5full" phimin="0" phimax="64" priority="1" thresholdval="5" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="0" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="147" mapping="1" name="HA8" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="174" mapping="1" name="HA8" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA8full" phimin="0" phimax="64" priority="1" thresholdval="8" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="3" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="148" mapping="2" name="HA12" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="175" mapping="2" name="HA12" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA12full" phimin="0" phimax="64" priority="1" thresholdval="12" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="6" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="149" mapping="3" name="HA12IL" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="176" mapping="3" name="HA12IL" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00001" name="HA12ILfull" phimin="0" phimax="64" priority="1" thresholdval="12" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="9" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="150" mapping="4" name="HA12IM" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="177" mapping="4" name="HA12IM" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00010" name="HA12IMfull" phimin="0" phimax="64" priority="1" thresholdval="12" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="12" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="151" mapping="5" name="HA12IT" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="178" mapping="5" name="HA12IT" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00100" name="HA12ITfull" phimin="0" phimax="64" priority="1" thresholdval="12" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="15" range_end="17"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="152" mapping="6" name="HA15" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="179" mapping="6" name="HA15" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA15full" phimin="0" phimax="64" priority="1" thresholdval="15" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="18" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="153" mapping="7" name="HA20" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="180" mapping="7" name="HA20" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA20full" phimin="0" phimax="64" priority="1" thresholdval="20" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="21" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="154" mapping="8" name="HA20IL" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="181" mapping="8" name="HA20IL" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00001" name="HA20ILfull" phimin="0" phimax="64" priority="1" thresholdval="20" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="0" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="155" mapping="9" name="HA20IM" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="182" mapping="9" name="HA20IM" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00010" name="HA20IMfull" phimin="0" phimax="64" priority="1" thresholdval="20" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="3" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="156" mapping="10" name="HA25" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="183" mapping="10" name="HA25" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA25full" phimin="0" phimax="64" priority="1" thresholdval="25" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="6" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="157" mapping="11" name="HA25IM" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="184" mapping="11" name="HA25IM" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00010" name="HA25IMfull" phimin="0" phimax="64" priority="1" thresholdval="25" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="9" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="158" mapping="12" name="HA30" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="185" mapping="12" name="HA30" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA30full" phimin="0" phimax="64" priority="1" thresholdval="30" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="12" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="159" mapping="13" name="HA40" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="186" mapping="13" name="HA40" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA40full" phimin="0" phimax="64" priority="1" thresholdval="40" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="15" range_end="17"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="160" mapping="14" name="HA60" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="187" mapping="14" name="HA60" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA60full" phimin="0" phimax="64" priority="1" thresholdval="60" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="18" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="161" mapping="15" name="HA100" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="188" mapping="15" name="HA100" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA100full" phimin="0" phimax="64" priority="1" thresholdval="100" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="21" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="162" mapping="0" name="TE5" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="189" mapping="16" name="eTAU12" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eTAU12full" phimin="0" phimax="64" priority="1" thresholdval="12" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="190" mapping="17" name="eTAU20" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eTAU20full" phimin="0" phimax="64" priority="1" thresholdval="20" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="191" mapping="18" name="eTAU40" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eTAU40full" phimin="0" phimax="64" priority="1" thresholdval="40" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="192" mapping="19" name="eTAU60" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eTAU60full" phimin="0" phimax="64" priority="1" thresholdval="60" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="193" mapping="20" name="eTAU100" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eTAU100full" phimin="0" phimax="64" priority="1" thresholdval="100" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="194" mapping="21" name="eTAU12IM" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00010" name="eTAU12IMfull" phimin="0" phimax="64" priority="1" thresholdval="12" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="195" mapping="22" name="eTAU20IM" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00010" name="eTAU20IMfull" phimin="0" phimax="64" priority="1" thresholdval="20" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="196" mapping="23" name="eTAU25IM" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00010" name="eTAU25IMfull" phimin="0" phimax="64" priority="1" thresholdval="25" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="197" mapping="0" name="TE5" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE5full" phimin="0" phimax="64" priority="0" thresholdval="5" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="0" range_end="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="163" mapping="1" name="TE10" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="198" mapping="1" name="TE10" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE10full" phimin="0" phimax="64" priority="0" thresholdval="10" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="1" range_end="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="164" mapping="2" name="TE15" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="199" mapping="2" name="TE15" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE15full" phimin="0" phimax="64" priority="0" thresholdval="15" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="2" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="165" mapping="3" name="TE20" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="200" mapping="3" name="TE20" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE20full" phimin="0" phimax="64" priority="0" thresholdval="20" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="3" range_end="3"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="166" mapping="4" name="TE25" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="201" mapping="4" name="TE25" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE25full" phimin="0" phimax="64" priority="0" thresholdval="25" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="4" range_end="4"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="167" mapping="5" name="TE30" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="202" mapping="5" name="TE30" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE30full" phimin="0" phimax="64" priority="0" thresholdval="30" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="5" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="168" mapping="6" name="TE40" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="203" mapping="6" name="TE40" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE40full" phimin="0" phimax="64" priority="0" thresholdval="40" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="6" range_end="6"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="169" mapping="7" name="TE50" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="204" mapping="7" name="TE50" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE50full" phimin="0" phimax="64" priority="0" thresholdval="50" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="7" range_end="7"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="170" mapping="8" name="TE5.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="205" mapping="8" name="TE5.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE5.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE5.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="5" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE5.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="5" type="TE" window="0"/> @@ -5345,7 +6209,7 @@ <Signal range_begin="0" range_end="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="171" mapping="9" name="TE10.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="206" mapping="9" name="TE10.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE10.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE10.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="10" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE10.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="10" type="TE" window="0"/> @@ -5353,7 +6217,7 @@ <Signal range_begin="1" range_end="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="172" mapping="10" name="TE15.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="207" mapping="10" name="TE15.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE15.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE15.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="15" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE15.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="15" type="TE" window="0"/> @@ -5361,7 +6225,7 @@ <Signal range_begin="2" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="173" mapping="11" name="TE20.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="208" mapping="11" name="TE20.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE20.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE20.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE20.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="TE" window="0"/> @@ -5369,7 +6233,7 @@ <Signal range_begin="3" range_end="3"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="174" mapping="12" name="TE25.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="209" mapping="12" name="TE25.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE25.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE25.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="25" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE25.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="25" type="TE" window="0"/> @@ -5377,7 +6241,7 @@ <Signal range_begin="4" range_end="4"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="175" mapping="13" name="TE30.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="210" mapping="13" name="TE30.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE30.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE30.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="30" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE30.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="30" type="TE" window="0"/> @@ -5385,7 +6249,7 @@ <Signal range_begin="5" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="176" mapping="14" name="TE40.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="211" mapping="14" name="TE40.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE40.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE40.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="40" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE40.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="40" type="TE" window="0"/> @@ -5393,7 +6257,7 @@ <Signal range_begin="6" range_end="6"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="177" mapping="15" name="TE70.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="212" mapping="15" name="TE70.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE70.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE70.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="70" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE70.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="70" type="TE" window="0"/> @@ -5401,738 +6265,766 @@ <Signal range_begin="7" range_end="7"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="178" mapping="0" name="900INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="213" mapping="0" name="900INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="0" range_end="0" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="179" mapping="1" name="800INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="214" mapping="1" name="800INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="1" range_end="1" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="180" mapping="2" name="700INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="215" mapping="2" name="700INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="2" range_end="2" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="181" mapping="3" name="500INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="216" mapping="3" name="500INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="3" range_end="3" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="182" mapping="4" name="400INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="217" mapping="4" name="400INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="4" range_end="4" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="183" mapping="5" name="300INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="218" mapping="5" name="300INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="5" range_end="5" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="184" mapping="6" name="200INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="219" mapping="6" name="200INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="6" range_end="6" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="185" mapping="7" name="100INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="220" mapping="7" name="100INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="7" range_end="7" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="186" mapping="8" name="0INVM9-EM7ab-EMab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="221" mapping="8" name="0INVM9-EM7ab-EMab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="8" range_end="8" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="187" mapping="9" name="HT150-J20s5.ETA31" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="222" mapping="9" name="HT150-J20s5.ETA31" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="9" range_end="9" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="188" mapping="10" name="HT190-J15s5.ETA21" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="223" mapping="10" name="HT190-J15s5.ETA21" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="10" range_end="10" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="189" mapping="11" name="1INVM5-EMs1-EMs6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="224" mapping="11" name="1INVM5-EMs1-EMs6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="11" range_end="11" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="190" mapping="12" name="1INVM5-EM7s1-EMs6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="225" mapping="12" name="1INVM5-EM7s1-EMs6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="12" range_end="12" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="191" mapping="13" name="1INVM5-EM12s1-EMs6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="226" mapping="13" name="1INVM5-EM12s1-EMs6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="13" range_end="13" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="192" mapping="14" name="05MINDPHI-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="227" mapping="14" name="05MINDPHI-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="14" range_end="14" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="193" mapping="15" name="400INVM9999-AJ30s6.ETA31-AJ20s6.31ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="228" mapping="15" name="400INVM9999-AJ30s6.ETA31-AJ20s6.31ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="15" range_end="15" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="194" mapping="18" name="1DISAMB-EM15his2-TAU12abi-J25ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="229" mapping="18" name="1DISAMB-EM15his2-TAU12abi-J25ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="18" range_end="18" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="195" mapping="19" name="1DISAMB-J25ab-0DR28-EM15his2-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="230" mapping="19" name="1DISAMB-J25ab-0DR28-EM15his2-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="19" range_end="19" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="196" mapping="20" name="2INVM9-2MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="231" mapping="20" name="2INVM9-2MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="20" range_end="20" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="197" mapping="22" name="2INVM8-ONEBARREL-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="232" mapping="22" name="2INVM8-ONEBARREL-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="22" range_end="22" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="198" mapping="24" name="5DETA99-5DPHI99-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="233" mapping="24" name="5DETA99-5DPHI99-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="24" range_end="24" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="199" mapping="25" name="5DETA99-5DPHI99-2MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="234" mapping="25" name="5DETA99-5DPHI99-2MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="25" range_end="25" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="200" mapping="26" name="1DISAMB-TAU20abi-TAU12abi-J25ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="235" mapping="26" name="1DISAMB-TAU20abi-TAU12abi-J25ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="26" range_end="26" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="201" mapping="27" name="0DR28-MU10ab-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="236" mapping="27" name="0DR28-MU10ab-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="27" range_end="27" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="202" mapping="28" name="0DETA20-0DPHI20-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="237" mapping="28" name="0DETA20-0DPHI20-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="28" range_end="28" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="203" mapping="31" name="DISAMB-0DR28-EM15his2-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="238" mapping="31" name="DISAMB-0DR28-EM15his2-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="31" range_end="31" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="204" mapping="32" name="05MINDPHI-EM15s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="239" mapping="32" name="05MINDPHI-EM15s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="0" range_end="0" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="205" mapping="33" name="25MT-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="240" mapping="33" name="25MT-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="1" range_end="1" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="206" mapping="34" name="ZEE-EM20shi2" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="241" mapping="34" name="ZEE-EM20shi2" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="2" range_end="2" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="207" mapping="35" name="35MT-EM15s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="242" mapping="35" name="35MT-EM15s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="3" range_end="3" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="208" mapping="36" name="0DR03-EM7ab-CJ15ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="243" mapping="36" name="0DR03-EM7ab-CJ15ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="4" range_end="4" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="209" mapping="37" name="10MINDPHI-J20s2-XE30" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="244" mapping="37" name="10MINDPHI-J20s2-XE30" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="5" range_end="5" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="210" mapping="38" name="10MINDPHI-J20s2-XE50" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="245" mapping="38" name="10MINDPHI-J20s2-XE50" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="6" range_end="6" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="211" mapping="39" name="100RATIO-0MATCH-TAU30si2-EMall" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="246" mapping="39" name="100RATIO-0MATCH-TAU30si2-EMall" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="7" range_end="7" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="212" mapping="40" name="NOT-0MATCH-TAU30si1-EMall" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="247" mapping="40" name="NOT-0MATCH-TAU30si1-EMall" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="8" range_end="8" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="213" mapping="41" name="LAR-EM20shi1" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="248" mapping="41" name="LAR-EM20shi1" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="9" range_end="9" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="214" mapping="42" name="LAR-J100s1" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="249" mapping="42" name="LAR-J100s1" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="10" range_end="10" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="215" mapping="43" name="NOT-02MATCH-EM10s1-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="250" mapping="43" name="NOT-02MATCH-EM10s1-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="11" range_end="11" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="216" mapping="44" name="27DPHI32-EMs1-EMs6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="251" mapping="44" name="27DPHI32-EMs1-EMs6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="12" range_end="12" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="217" mapping="45" name="35MT-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="252" mapping="45" name="35MT-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="13" range_end="13" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="218" mapping="46" name="15MINDPHI-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="253" mapping="46" name="15MINDPHI-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="14" range_end="14" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="219" mapping="47" name="15MINDPHI-EM15s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="254" mapping="47" name="15MINDPHI-EM15s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="15" range_end="15" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="220" mapping="48" name="DISAMB-30INVM-EM20his2-TAU12ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="255" mapping="48" name="DISAMB-30INVM-EM20his2-TAU12ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="16" range_end="16" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="221" mapping="52" name="0DR22-2MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="256" mapping="52" name="0DR22-2MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="20" range_end="20" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="222" mapping="53" name="7INVM15-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="257" mapping="53" name="7INVM15-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="21" range_end="21" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="223" mapping="54" name="0DR22-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="258" mapping="54" name="0DR22-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="22" range_end="22" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="224" mapping="55" name="0DR15-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="259" mapping="55" name="0DR15-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="23" range_end="23" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="225" mapping="56" name="0DR24-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="260" mapping="56" name="0DR24-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="24" range_end="24" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="226" mapping="57" name="0DR15-2MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="261" mapping="57" name="0DR15-2MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="25" range_end="25" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="227" mapping="58" name="2INVM9-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="262" mapping="58" name="2INVM9-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="26" range_end="26" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="228" mapping="59" name="2INVM9-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="263" mapping="59" name="2INVM9-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="27" range_end="27" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="229" mapping="60" name="600INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="264" mapping="60" name="600INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="28" range_end="28" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="230" mapping="61" name="500INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="265" mapping="61" name="500INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="29" range_end="29" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="231" mapping="62" name="400INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="266" mapping="62" name="400INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="30" range_end="30" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="232" mapping="63" name="200INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="267" mapping="63" name="200INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="31" range_end="31" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="233" mapping="64" name="05MINDPHI-AJj10s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="268" mapping="64" name="05MINDPHI-AJj10s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="0" range_end="0" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="234" mapping="65" name="10MINDPHI-AJj10s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="269" mapping="65" name="10MINDPHI-AJj10s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="1" range_end="1" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="235" mapping="66" name="15MINDPHI-AJj10s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="270" mapping="66" name="15MINDPHI-AJj10s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="2" range_end="2" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="236" mapping="67" name="0DR04-MU4ab-CJ15ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="271" mapping="67" name="0DR04-MU4ab-CJ15ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="3" range_end="3" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="237" mapping="68" name="0DR04-MU4ab-CJ20ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="272" mapping="68" name="0DR04-MU4ab-CJ20ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="4" range_end="4" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="238" mapping="69" name="0DR04-MU4ab-CJ30ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="273" mapping="69" name="0DR04-MU4ab-CJ30ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="5" range_end="5" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="239" mapping="70" name="0DR04-MU6ab-CJ20ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="274" mapping="70" name="0DR04-MU6ab-CJ20ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="6" range_end="6" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="240" mapping="71" name="0DR04-MU6ab-CJ25ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="275" mapping="71" name="0DR04-MU6ab-CJ25ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="7" range_end="7" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="241" mapping="72" name="10MINDPHI-CJ20ab-XE50" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="276" mapping="72" name="10MINDPHI-CJ20ab-XE50" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="8" range_end="8" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="242" mapping="73" name="0DR24-2CMU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="277" mapping="73" name="0DR24-2CMU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="9" range_end="9" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="243" mapping="74" name="FTK-J100s1" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="278" mapping="74" name="FTK-J100s1" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="10" range_end="10" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="244" mapping="75" name="MULT-CMU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="2" id="279" mapping="75" name="MULT-CMU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="11" range_end="12" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="245" mapping="77" name="MULT-CMU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="2" id="280" mapping="77" name="MULT-CMU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="13" range_end="14" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="246" mapping="79" name="FTK-MU10s1" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="281" mapping="79" name="FTK-MU10s1" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="15" range_end="15" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="247" mapping="80" name="400INVM9999-0DPHI20-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="282" mapping="80" name="400INVM9999-0DPHI20-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="16" range_end="16" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="248" mapping="81" name="400INVM9999-0DPHI22-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="283" mapping="81" name="400INVM9999-0DPHI22-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="17" range_end="17" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="249" mapping="82" name="400INVM9999-0DPHI24-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="284" mapping="82" name="400INVM9999-0DPHI24-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="18" range_end="18" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="250" mapping="83" name="400INVM9999-0DPHI26-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="285" mapping="83" name="400INVM9999-0DPHI26-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="19" range_end="19" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="251" mapping="84" name="0INVM10-3MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="286" mapping="84" name="0INVM10-3MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="20" range_end="20" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="252" mapping="86" name="0MATCH-4AJ20.ETA31-4AJj15.ETA31" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="287" mapping="86" name="0MATCH-4AJ20.ETA31-4AJj15.ETA31" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="22" range_end="22" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="253" mapping="87" name="HT190-AJ15all.ETA21" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="288" mapping="87" name="HT190-AJ15all.ETA21" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="23" range_end="23" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="254" mapping="88" name="HT150-AJ20all.ETA31" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="289" mapping="88" name="HT150-AJ20all.ETA31" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="24" range_end="24" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="255" mapping="89" name="HT150-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="290" mapping="89" name="HT150-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="25" range_end="25" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="256" mapping="90" name="HT20-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="291" mapping="90" name="HT20-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="26" range_end="26" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="257" mapping="92" name="0DETA20-J50s1-Js2" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="292" mapping="92" name="0DETA20-J50s1-Js2" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="28" range_end="28" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="258" mapping="93" name="05RATIO-XE0-HT0-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="293" mapping="93" name="05RATIO-XE0-HT0-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="29" range_end="29" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="259" mapping="94" name="63DETA127-FJ20s1-FJ20s2" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="294" mapping="94" name="63DETA127-FJ20s1-FJ20s2" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="30" range_end="30" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="260" mapping="95" name="90RATIO2-XE0-HT0-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="295" mapping="95" name="90RATIO2-XE0-HT0-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="31" range_end="31" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="261" mapping="96" name="60INVM9999-04DPHI32-EM15abhi-FJj15s623ETA49" type="TOPO" input="ctpcore" version="1"> - <Cable connector="CON2" input="CTPCORE" name="TOPO2"> - <Signal range_begin="0" range_end="0" clock="1"/> - </Cable> - </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="262" mapping="97" name="0INVM10-0DR15-EM8abi-MU10ab" type="TOPO" input="ctpcore" version="1"> - <Cable connector="CON2" input="CTPCORE" name="TOPO2"> - <Signal range_begin="1" range_end="1" clock="1"/> - </Cable> - </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="263" mapping="98" name="0INVM10-0DR15-EM12abi-MU6ab" type="TOPO" input="ctpcore" version="1"> - <Cable connector="CON2" input="CTPCORE" name="TOPO2"> - <Signal range_begin="2" range_end="2" clock="1"/> - </Cable> - </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="264" mapping="99" name="0DETA04-EM8abi-MU10ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="296" mapping="99" name="0DETA04-EM8abi-MU10ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="3" range_end="3" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="265" mapping="100" name="0DETA04-EM15abi-MUab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="297" mapping="100" name="0DETA04-EM15abi-MUab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="4" range_end="4" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="266" mapping="101" name="0DR24-CMU4ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="298" mapping="101" name="0DR24-CMU4ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="5" range_end="5" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="267" mapping="102" name="0DPHI03-EM8abi-MU10ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="299" mapping="102" name="0DPHI03-EM8abi-MU10ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="6" range_end="6" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="268" mapping="103" name="2INVM8-CMU4ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="300" mapping="103" name="2INVM8-CMU4ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="7" range_end="7" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="269" mapping="104" name="0DPHI03-EM15abi-MUab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="301" mapping="104" name="0DPHI03-EM15abi-MUab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="8" range_end="8" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="270" mapping="105" name="10MINDPHI-AJ20s2-XE50" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="302" mapping="105" name="10MINDPHI-AJ20s2-XE50" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="9" range_end="9" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="271" mapping="106" name="LATE-MU10s1" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="303" mapping="106" name="LATE-MU10s1" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="10" range_end="10" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="272" mapping="107" name="SC111-CJ15ab.ETA26" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="304" mapping="107" name="SC111-CJ15ab.ETA26" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="11" range_end="11" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="273" mapping="108" name="SC85-CJ15ab.ETA26" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="305" mapping="108" name="SC85-CJ15ab.ETA26" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="12" range_end="12" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="274" mapping="109" name="FTK-EM20s1" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="306" mapping="109" name="FTK-EM20s1" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="13" range_end="13" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="275" mapping="110" name="60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49" type="TOPO" input="ctpcore" version="1"> - <Cable connector="CON2" input="CTPCORE" name="TOPO2"> - <Signal range_begin="14" range_end="14" clock="1"/> - </Cable> - </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="276" mapping="112" name="250RATIO2-XE0-HT0-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="307" mapping="112" name="250RATIO2-XE0-HT0-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="16" range_end="16" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="277" mapping="113" name="10MINDPHI-J20ab-XE50" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="308" mapping="113" name="10MINDPHI-J20ab-XE50" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="17" range_end="17" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="278" mapping="114" name="0DR28-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="309" mapping="114" name="0DR28-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="18" range_end="18" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="279" mapping="115" name="2DISAMB-J25ab-0DR28-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="310" mapping="115" name="2DISAMB-J25ab-0DR28-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="19" range_end="19" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="280" mapping="116" name="1DISAMB-TAU12abi-J25ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="311" mapping="116" name="1DISAMB-TAU12abi-J25ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="20" range_end="20" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="281" mapping="117" name="0DR10-MU10ab-MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="312" mapping="117" name="0DR10-MU10ab-MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="21" range_end="21" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="282" mapping="118" name="2DR99-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="313" mapping="118" name="2DR99-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="22" range_end="22" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="283" mapping="119" name="0DR34-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="314" mapping="119" name="0DR34-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="23" range_end="23" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="284" mapping="120" name="2DR15-2MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="315" mapping="120" name="2DR15-2MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="24" range_end="24" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="285" mapping="121" name="0DR15-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="316" mapping="121" name="0DR15-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="25" range_end="25" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="286" mapping="122" name="0DR25-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="317" mapping="122" name="0DR25-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="26" range_end="26" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="287" mapping="123" name="1DISAMB-J25ab-0DR25-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="318" mapping="123" name="1DISAMB-J25ab-0DR25-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="27" range_end="27" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="288" mapping="124" name="8INVM15-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="319" mapping="124" name="8INVM15-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="28" range_end="28" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="289" mapping="125" name="8INVM15-2MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="320" mapping="125" name="8INVM15-2MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="29" range_end="29" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="290" mapping="126" name="2INVM8-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="321" mapping="126" name="2INVM8-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="30" range_end="30" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="291" mapping="127" name="2INVM8-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="322" mapping="127" name="2INVM8-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="31" range_end="31" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="292" mapping="0" name="XE10" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="323" mapping="0" name="XE10" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE10full" phimin="0" phimax="64" priority="0" thresholdval="10" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="8" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="293" mapping="1" name="XE20" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="324" mapping="1" name="XE20" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE20full" phimin="0" phimax="64" priority="0" thresholdval="20" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="9" range_end="9"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="294" mapping="2" name="XE25" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="325" mapping="2" name="XE25" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE25full" phimin="0" phimax="64" priority="0" thresholdval="25" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="10" range_end="10"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="295" mapping="3" name="XE30" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="326" mapping="3" name="XE30" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE30full" phimin="0" phimax="64" priority="0" thresholdval="30" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="11" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="296" mapping="4" name="XE35" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="327" mapping="4" name="XE35" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE35full" phimin="0" phimax="64" priority="0" thresholdval="35" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="12" range_end="12"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="297" mapping="5" name="XE40" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="328" mapping="5" name="XE40" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE40full" phimin="0" phimax="64" priority="0" thresholdval="40" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="13" range_end="13"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="298" mapping="6" name="XE45" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="329" mapping="6" name="XE45" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE45full" phimin="0" phimax="64" priority="0" thresholdval="45" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="14" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="299" mapping="7" name="XE50" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="330" mapping="7" name="XE50" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE50full" phimin="0" phimax="64" priority="0" thresholdval="50" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="15" range_end="15"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="300" mapping="8" name="XE55" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="331" mapping="8" name="XE55" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE55full" phimin="0" phimax="64" priority="0" thresholdval="55" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="8" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="301" mapping="9" name="XE60" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="332" mapping="9" name="XE60" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE60full" phimin="0" phimax="64" priority="0" thresholdval="60" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="9" range_end="9"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="302" mapping="10" name="XE65" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="333" mapping="10" name="XE65" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE65full" phimin="0" phimax="64" priority="0" thresholdval="65" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="10" range_end="10"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="303" mapping="11" name="XE70" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="334" mapping="11" name="XE70" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE70full" phimin="0" phimax="64" priority="0" thresholdval="70" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="11" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="304" mapping="12" name="XE75" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="335" mapping="12" name="XE75" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE75full" phimin="0" phimax="64" priority="0" thresholdval="75" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="12" range_end="12"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="305" mapping="13" name="XE80" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="336" mapping="13" name="XE80" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE80full" phimin="0" phimax="64" priority="0" thresholdval="80" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="13" range_end="13"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="306" mapping="14" name="XE150" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="337" mapping="14" name="XE150" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE150full" phimin="0" phimax="64" priority="0" thresholdval="150" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="14" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="307" mapping="15" name="XE300" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="338" mapping="15" name="XE300" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE300full" phimin="0" phimax="64" priority="0" thresholdval="300" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="15" range_end="15"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="308" mapping="0" name="XS20" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="339" mapping="16" name="gXERHO20" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXERHO20full" phimin="0" phimax="64" priority="0" thresholdval="20" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="340" mapping="17" name="gXERHO30" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXERHO30full" phimin="0" phimax="64" priority="0" thresholdval="30" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="341" mapping="18" name="gXERHO35" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXERHO35full" phimin="0" phimax="64" priority="0" thresholdval="35" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="342" mapping="19" name="gXERHO40" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXERHO40full" phimin="0" phimax="64" priority="0" thresholdval="40" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="343" mapping="20" name="gXERHO45" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXERHO45full" phimin="0" phimax="64" priority="0" thresholdval="45" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="344" mapping="21" name="gXERHO50" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXERHO50full" phimin="0" phimax="64" priority="0" thresholdval="50" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="345" mapping="22" name="gXEPUFIT20" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXEPUFIT20full" phimin="0" phimax="64" priority="0" thresholdval="20" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="346" mapping="23" name="gXEPUFIT50" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXEPUFIT50full" phimin="0" phimax="64" priority="0" thresholdval="50" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="347" mapping="0" name="XS20" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS20full" phimin="0" phimax="64" priority="0" thresholdval="20" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="16" range_end="16"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="309" mapping="1" name="XS30" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="348" mapping="1" name="XS30" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS30full" phimin="0" phimax="64" priority="0" thresholdval="30" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="17" range_end="17"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="310" mapping="2" name="XS40" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="349" mapping="2" name="XS40" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS40full" phimin="0" phimax="64" priority="0" thresholdval="40" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="18" range_end="18"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="311" mapping="3" name="XS45" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="350" mapping="3" name="XS45" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS45full" phimin="0" phimax="64" priority="0" thresholdval="45" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="19" range_end="19"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="312" mapping="4" name="XS50" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="351" mapping="4" name="XS50" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS50full" phimin="0" phimax="64" priority="0" thresholdval="50" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="20" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="313" mapping="5" name="XS55" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="352" mapping="5" name="XS55" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS55full" phimin="0" phimax="64" priority="0" thresholdval="55" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="21" range_end="21"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="314" mapping="6" name="XS60" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="353" mapping="6" name="XS60" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS60full" phimin="0" phimax="64" priority="0" thresholdval="60" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="22" range_end="22"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="315" mapping="7" name="XS65" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="354" mapping="7" name="XS65" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS65full" phimin="0" phimax="64" priority="0" thresholdval="65" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="23" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="316" mapping="0" name="ZB_EM15" type="ZB" input="ctpin" seed="EM15" seed_multi="1" bcdelay="3564" version="1"> + <TriggerThreshold active="1" bitnum="1" id="355" mapping="0" name="ZB_EM15" type="ZB" input="ctpin" seed="EM15" seed_multi="1" bcdelay="3564" version="1"> <Cable connector="CON0" input="SLOT7" name="EM1"> <Signal range_begin="30" range_end="30"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="317" mapping="0" name="ZDC_A" type="ZDC" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="356" mapping="0" name="ZDC_A" type="ZDC" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="ZDC_Afull" phimin="0" phimax="64" priority="0" thresholdval="250" type="ZDC" window="0"/> <Cable connector="CON1" input="SLOT9" name="CTPCAL"> <Signal range_begin="25" range_end="25"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="318" mapping="1" name="ZDC_C" type="ZDC" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="357" mapping="1" name="ZDC_C" type="ZDC" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="ZDC_Cfull" phimin="0" phimax="64" priority="0" thresholdval="250" type="ZDC" window="0"/> <Cable connector="CON1" input="SLOT9" name="CTPCAL"> <Signal range_begin="26" range_end="26"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="319" mapping="2" name="ZDC_AND" type="ZDC" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="358" mapping="2" name="ZDC_AND" type="ZDC" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="ZDC_ANDfull" phimin="0" phimax="64" priority="0" thresholdval="250" type="ZDC" window="0"/> <Cable connector="CON1" input="SLOT9" name="CTPCAL"> <Signal range_begin="27" range_end="27"/> diff --git a/Trigger/TriggerCommon/TriggerMenuXML/data/LVL1config_Physics_pp_v8.xml b/Trigger/TriggerCommon/TriggerMenuXML/data/LVL1config_Physics_pp_v8.xml index a6f9d783ba4f531e03a81a90dbdbaec2510a7e62..aff272cb65477ef5d8f6b4e467a2c6cc2ddc6f5f 100644 --- a/Trigger/TriggerCommon/TriggerMenuXML/data/LVL1config_Physics_pp_v8.xml +++ b/Trigger/TriggerCommon/TriggerMenuXML/data/LVL1config_Physics_pp_v8.xml @@ -2,8 +2,8 @@ <!DOCTYPE LVL1Config SYSTEM "LVL1config.dtd"> <LVL1Config name="Physics_pp_v8" ctpVersion="4" l1Version="1"> <!--File is generated by TriggerMenu--> - <!--No. L1 thresholds defined: 319--> - <!--No. L1 items defined: 268--> + <!--No. L1 thresholds defined: 358--> + <!--No. L1 items defined: 263--> <TriggerMenu name="Physics_pp_v8" phase="lumi"> <TriggerItem ctpid="0" partition="1" name="L1_EM3" complex_deadtime="0" definition="(EM3[x1]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> <AND> @@ -370,13 +370,6 @@ <InternalTrigger name="BGRP1"/> </AND> </TriggerItem> - <TriggerItem ctpid="59" partition="1" name="L1_2EM10VHI" complex_deadtime="0" definition="(EM10VHI[x2]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> - <AND> - <TriggerCondition multi="2" name="EM10VHI_x2" triggerthreshold="EM10VHI"/> - <InternalTrigger name="BGRP0"/> - <InternalTrigger name="BGRP1"/> - </AND> - </TriggerItem> <TriggerItem ctpid="60" partition="1" name="L1_EM15VHI_2TAU12IM" complex_deadtime="0" definition="(EM15VHI[x1]&HA12IM[x2]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> <AND> <TriggerCondition multi="1" name="EM15VHI_x1" triggerthreshold="EM15VHI"/> @@ -490,14 +483,6 @@ <InternalTrigger name="BGRP1"/> </AND> </TriggerItem> - <TriggerItem ctpid="73" partition="1" name="L1_LFV-EM8I-MU11" complex_deadtime="0" definition="(0INVM10-0DR15-EM8abi-MU10ab[x1]&MU11[x1]&BGRP0&BGRP1)" trigger_type="10000000" monitor="LF:000|HF:000"> - <AND> - <TriggerCondition multi="1" name="0INVM10-0DR15-EM8abi-MU10ab_x1" triggerthreshold="0INVM10-0DR15-EM8abi-MU10ab"/> - <TriggerCondition multi="1" name="MU11_x1" triggerthreshold="MU11"/> - <InternalTrigger name="BGRP0"/> - <InternalTrigger name="BGRP1"/> - </AND> - </TriggerItem> <TriggerItem ctpid="74" partition="1" name="L1_TAU20IM_2J20_XE45" complex_deadtime="0" definition="(HA20IM[x1]&J20[x2]&XE45[x1]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> <AND> <TriggerCondition multi="1" name="HA20IM_x1" triggerthreshold="HA20IM"/> @@ -562,13 +547,6 @@ <InternalTrigger name="BGRP1"/> </AND> </TriggerItem> - <TriggerItem ctpid="82" partition="1" name="L1_LFV-EM12I-MU6" complex_deadtime="0" definition="(0INVM10-0DR15-EM12abi-MU6ab[x1]&BGRP0&BGRP1)" trigger_type="10000000" monitor="LF:000|HF:000"> - <AND> - <TriggerCondition multi="1" name="0INVM10-0DR15-EM12abi-MU6ab_x1" triggerthreshold="0INVM10-0DR15-EM12abi-MU6ab"/> - <InternalTrigger name="BGRP0"/> - <InternalTrigger name="BGRP1"/> - </AND> - </TriggerItem> <TriggerItem ctpid="83" partition="1" name="L1_TAU20IM_2TAU12IM_XE35" complex_deadtime="0" definition="(HA20IM[x1]&HA12IM[x2]&XE35[x1]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> <AND> <TriggerCondition multi="1" name="HA20IM_x1" triggerthreshold="HA20IM"/> @@ -592,20 +570,6 @@ <InternalTrigger name="BGRP1"/> </AND> </TriggerItem> - <TriggerItem ctpid="86" partition="1" name="L1_ZAFB-04DPHI-EM15I" complex_deadtime="0" definition="(60INVM9999-04DPHI32-EM15abhi-FJj15s623ETA49[x1]&BGRP0&BGRP1)" trigger_type="10000000" monitor="LF:000|HF:000"> - <AND> - <TriggerCondition multi="1" name="60INVM9999-04DPHI32-EM15abhi-FJj15s623ETA49_x1" triggerthreshold="60INVM9999-04DPHI32-EM15abhi-FJj15s623ETA49"/> - <InternalTrigger name="BGRP0"/> - <InternalTrigger name="BGRP1"/> - </AND> - </TriggerItem> - <TriggerItem ctpid="87" partition="1" name="L1_ZAFB-25DPHI-EM15I" complex_deadtime="0" definition="(60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49[x1]&BGRP0&BGRP1)" trigger_type="10000000" monitor="LF:000|HF:000"> - <AND> - <TriggerCondition multi="1" name="60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49_x1" triggerthreshold="60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49"/> - <InternalTrigger name="BGRP0"/> - <InternalTrigger name="BGRP1"/> - </AND> - </TriggerItem> <TriggerItem ctpid="88" partition="1" name="L1_MU6_J20" complex_deadtime="0" definition="(MU6[x1]&J20[x1]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> <AND> <TriggerCondition multi="1" name="MU6_x1" triggerthreshold="MU6"/> @@ -735,14 +699,6 @@ <InternalTrigger name="BGRP1"/> </AND> </TriggerItem> - <TriggerItem ctpid="107" partition="1" name="L1_ZAFB-25DPHI-EM18I" complex_deadtime="0" definition="(60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49[x1]&EM18VHI[x1]&BGRP0&BGRP1)" trigger_type="10000000" monitor="LF:000|HF:000"> - <AND> - <TriggerCondition multi="1" name="60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49_x1" triggerthreshold="60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49"/> - <TriggerCondition multi="1" name="EM18VHI_x1" triggerthreshold="EM18VHI"/> - <InternalTrigger name="BGRP0"/> - <InternalTrigger name="BGRP1"/> - </AND> - </TriggerItem> <TriggerItem ctpid="108" partition="1" name="L1_MJJ-500-NFF" complex_deadtime="0" definition="(500INVM9999-J30s6-AJ20s6[x1]&BGRP0&BGRP1)" trigger_type="10000000" monitor="LF:111|HF:000"> <AND> <TriggerCondition multi="1" name="500INVM9999-J30s6-AJ20s6_x1" triggerthreshold="500INVM9999-J30s6-AJ20s6"/> @@ -1064,6 +1020,13 @@ <InternalTrigger name="BGRP1"/> </AND> </TriggerItem> + <TriggerItem ctpid="179" partition="1" name="L1_2EM10VHI" complex_deadtime="0" definition="(EM10VHI[x2]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> + <AND> + <TriggerCondition multi="2" name="EM10VHI_x2" triggerthreshold="EM10VHI"/> + <InternalTrigger name="BGRP0"/> + <InternalTrigger name="BGRP1"/> + </AND> + </TriggerItem> <TriggerItem ctpid="181" partition="1" name="L1_J40.0ETA25_2J15.31ETA49" complex_deadtime="0" definition="(J40.0ETA25[x1]&J15.31ETA49[x2]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> <AND> <TriggerCondition multi="1" name="J40.0ETA25_x1" triggerthreshold="J40.0ETA25"/> @@ -2077,7 +2040,7 @@ <Prescale ctpid="56" cut="000001" value="1"/> <Prescale ctpid="57" cut="000001" value="1"/> <Prescale ctpid="58" cut="000001" value="1"/> - <Prescale ctpid="59" cut="000001" value="1"/> + <Prescale ctpid="59" cut="-000001" value="-1"/> <Prescale ctpid="60" cut="000001" value="1"/> <Prescale ctpid="61" cut="000001" value="1"/> <Prescale ctpid="62" cut="000001" value="1"/> @@ -2091,7 +2054,7 @@ <Prescale ctpid="70" cut="000001" value="1"/> <Prescale ctpid="71" cut="000001" value="1"/> <Prescale ctpid="72" cut="000001" value="1"/> - <Prescale ctpid="73" cut="000001" value="1"/> + <Prescale ctpid="73" cut="-000001" value="-1"/> <Prescale ctpid="74" cut="000001" value="1"/> <Prescale ctpid="75" cut="000001" value="1"/> <Prescale ctpid="76" cut="000001" value="1"/> @@ -2100,12 +2063,12 @@ <Prescale ctpid="79" cut="000001" value="1"/> <Prescale ctpid="80" cut="000001" value="1"/> <Prescale ctpid="81" cut="000001" value="1"/> - <Prescale ctpid="82" cut="000001" value="1"/> + <Prescale ctpid="82" cut="-000001" value="-1"/> <Prescale ctpid="83" cut="000001" value="1"/> <Prescale ctpid="84" cut="000001" value="1"/> <Prescale ctpid="85" cut="000001" value="1"/> - <Prescale ctpid="86" cut="000001" value="1"/> - <Prescale ctpid="87" cut="000001" value="1"/> + <Prescale ctpid="86" cut="-000001" value="-1"/> + <Prescale ctpid="87" cut="-000001" value="-1"/> <Prescale ctpid="88" cut="000001" value="1"/> <Prescale ctpid="89" cut="000001" value="1"/> <Prescale ctpid="90" cut="000001" value="1"/> @@ -2125,7 +2088,7 @@ <Prescale ctpid="104" cut="000001" value="1"/> <Prescale ctpid="105" cut="000001" value="1"/> <Prescale ctpid="106" cut="000001" value="1"/> - <Prescale ctpid="107" cut="000001" value="1"/> + <Prescale ctpid="107" cut="-000001" value="-1"/> <Prescale ctpid="108" cut="000001" value="1"/> <Prescale ctpid="109" cut="000001" value="1"/> <Prescale ctpid="110" cut="-000001" value="-1"/> @@ -2197,7 +2160,7 @@ <Prescale ctpid="176" cut="000001" value="1"/> <Prescale ctpid="177" cut="-000001" value="-1"/> <Prescale ctpid="178" cut="-000001" value="-1"/> - <Prescale ctpid="179" cut="-000001" value="-1"/> + <Prescale ctpid="179" cut="000001" value="1"/> <Prescale ctpid="180" cut="-000001" value="-1"/> <Prescale ctpid="181" cut="000001" value="1"/> <Prescale ctpid="182" cut="000001" value="1"/> @@ -4131,6 +4094,561 @@ <TriggerCounter name="1ZDC_C" type="CTPIN"> <TriggerCondition name="1ZDC_C" triggerthreshold="ZDC_C" multi="1"/> </TriggerCounter> + <TriggerCounter name="1eEM10VH" type="CTPIN"> + <TriggerCondition name="1eEM10VH" triggerthreshold="eEM10VH" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM10VH" type="CTPIN"> + <TriggerCondition name="2eEM10VH" triggerthreshold="eEM10VH" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM10VH" type="CTPIN"> + <TriggerCondition name="3eEM10VH" triggerthreshold="eEM10VH" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM10VH" type="CTPIN"> + <TriggerCondition name="4eEM10VH" triggerthreshold="eEM10VH" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM10VH" type="CTPIN"> + <TriggerCondition name="5eEM10VH" triggerthreshold="eEM10VH" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM10VH" type="CTPIN"> + <TriggerCondition name="6eEM10VH" triggerthreshold="eEM10VH" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM10VH" type="CTPIN"> + <TriggerCondition name="7eEM10VH" triggerthreshold="eEM10VH" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM15VH" type="CTPIN"> + <TriggerCondition name="1eEM15VH" triggerthreshold="eEM15VH" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM15VH" type="CTPIN"> + <TriggerCondition name="2eEM15VH" triggerthreshold="eEM15VH" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM15VH" type="CTPIN"> + <TriggerCondition name="3eEM15VH" triggerthreshold="eEM15VH" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM15VH" type="CTPIN"> + <TriggerCondition name="4eEM15VH" triggerthreshold="eEM15VH" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM15VH" type="CTPIN"> + <TriggerCondition name="5eEM15VH" triggerthreshold="eEM15VH" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM15VH" type="CTPIN"> + <TriggerCondition name="6eEM15VH" triggerthreshold="eEM15VH" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM15VH" type="CTPIN"> + <TriggerCondition name="7eEM15VH" triggerthreshold="eEM15VH" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM15VHI" type="CTPIN"> + <TriggerCondition name="1eEM15VHI" triggerthreshold="eEM15VHI" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM15VHI" type="CTPIN"> + <TriggerCondition name="2eEM15VHI" triggerthreshold="eEM15VHI" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM15VHI" type="CTPIN"> + <TriggerCondition name="3eEM15VHI" triggerthreshold="eEM15VHI" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM15VHI" type="CTPIN"> + <TriggerCondition name="4eEM15VHI" triggerthreshold="eEM15VHI" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM15VHI" type="CTPIN"> + <TriggerCondition name="5eEM15VHI" triggerthreshold="eEM15VHI" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM15VHI" type="CTPIN"> + <TriggerCondition name="6eEM15VHI" triggerthreshold="eEM15VHI" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM15VHI" type="CTPIN"> + <TriggerCondition name="7eEM15VHI" triggerthreshold="eEM15VHI" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM18VHI" type="CTPIN"> + <TriggerCondition name="1eEM18VHI" triggerthreshold="eEM18VHI" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM18VHI" type="CTPIN"> + <TriggerCondition name="2eEM18VHI" triggerthreshold="eEM18VHI" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM18VHI" type="CTPIN"> + <TriggerCondition name="3eEM18VHI" triggerthreshold="eEM18VHI" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM18VHI" type="CTPIN"> + <TriggerCondition name="4eEM18VHI" triggerthreshold="eEM18VHI" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM18VHI" type="CTPIN"> + <TriggerCondition name="5eEM18VHI" triggerthreshold="eEM18VHI" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM18VHI" type="CTPIN"> + <TriggerCondition name="6eEM18VHI" triggerthreshold="eEM18VHI" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM18VHI" type="CTPIN"> + <TriggerCondition name="7eEM18VHI" triggerthreshold="eEM18VHI" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM20VH" type="CTPIN"> + <TriggerCondition name="1eEM20VH" triggerthreshold="eEM20VH" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM20VH" type="CTPIN"> + <TriggerCondition name="2eEM20VH" triggerthreshold="eEM20VH" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM20VH" type="CTPIN"> + <TriggerCondition name="3eEM20VH" triggerthreshold="eEM20VH" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM20VH" type="CTPIN"> + <TriggerCondition name="4eEM20VH" triggerthreshold="eEM20VH" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM20VH" type="CTPIN"> + <TriggerCondition name="5eEM20VH" triggerthreshold="eEM20VH" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM20VH" type="CTPIN"> + <TriggerCondition name="6eEM20VH" triggerthreshold="eEM20VH" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM20VH" type="CTPIN"> + <TriggerCondition name="7eEM20VH" triggerthreshold="eEM20VH" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM20VHI" type="CTPIN"> + <TriggerCondition name="1eEM20VHI" triggerthreshold="eEM20VHI" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM20VHI" type="CTPIN"> + <TriggerCondition name="2eEM20VHI" triggerthreshold="eEM20VHI" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM20VHI" type="CTPIN"> + <TriggerCondition name="3eEM20VHI" triggerthreshold="eEM20VHI" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM20VHI" type="CTPIN"> + <TriggerCondition name="4eEM20VHI" triggerthreshold="eEM20VHI" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM20VHI" type="CTPIN"> + <TriggerCondition name="5eEM20VHI" triggerthreshold="eEM20VHI" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM20VHI" type="CTPIN"> + <TriggerCondition name="6eEM20VHI" triggerthreshold="eEM20VHI" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM20VHI" type="CTPIN"> + <TriggerCondition name="7eEM20VHI" triggerthreshold="eEM20VHI" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM22" type="CTPIN"> + <TriggerCondition name="1eEM22" triggerthreshold="eEM22" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM22" type="CTPIN"> + <TriggerCondition name="2eEM22" triggerthreshold="eEM22" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM22" type="CTPIN"> + <TriggerCondition name="3eEM22" triggerthreshold="eEM22" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM22" type="CTPIN"> + <TriggerCondition name="4eEM22" triggerthreshold="eEM22" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM22" type="CTPIN"> + <TriggerCondition name="5eEM22" triggerthreshold="eEM22" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM22" type="CTPIN"> + <TriggerCondition name="6eEM22" triggerthreshold="eEM22" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM22" type="CTPIN"> + <TriggerCondition name="7eEM22" triggerthreshold="eEM22" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM22VHI" type="CTPIN"> + <TriggerCondition name="1eEM22VHI" triggerthreshold="eEM22VHI" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM22VHI" type="CTPIN"> + <TriggerCondition name="2eEM22VHI" triggerthreshold="eEM22VHI" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM22VHI" type="CTPIN"> + <TriggerCondition name="3eEM22VHI" triggerthreshold="eEM22VHI" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM22VHI" type="CTPIN"> + <TriggerCondition name="4eEM22VHI" triggerthreshold="eEM22VHI" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM22VHI" type="CTPIN"> + <TriggerCondition name="5eEM22VHI" triggerthreshold="eEM22VHI" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM22VHI" type="CTPIN"> + <TriggerCondition name="6eEM22VHI" triggerthreshold="eEM22VHI" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM22VHI" type="CTPIN"> + <TriggerCondition name="7eEM22VHI" triggerthreshold="eEM22VHI" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM7" type="CTPIN"> + <TriggerCondition name="1eEM7" triggerthreshold="eEM7" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM7" type="CTPIN"> + <TriggerCondition name="2eEM7" triggerthreshold="eEM7" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM7" type="CTPIN"> + <TriggerCondition name="3eEM7" triggerthreshold="eEM7" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM7" type="CTPIN"> + <TriggerCondition name="4eEM7" triggerthreshold="eEM7" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM7" type="CTPIN"> + <TriggerCondition name="5eEM7" triggerthreshold="eEM7" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM7" type="CTPIN"> + <TriggerCondition name="6eEM7" triggerthreshold="eEM7" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM7" type="CTPIN"> + <TriggerCondition name="7eEM7" triggerthreshold="eEM7" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM8VH" type="CTPIN"> + <TriggerCondition name="1eEM8VH" triggerthreshold="eEM8VH" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM8VH" type="CTPIN"> + <TriggerCondition name="2eEM8VH" triggerthreshold="eEM8VH" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM8VH" type="CTPIN"> + <TriggerCondition name="3eEM8VH" triggerthreshold="eEM8VH" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM8VH" type="CTPIN"> + <TriggerCondition name="4eEM8VH" triggerthreshold="eEM8VH" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM8VH" type="CTPIN"> + <TriggerCondition name="5eEM8VH" triggerthreshold="eEM8VH" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM8VH" type="CTPIN"> + <TriggerCondition name="6eEM8VH" triggerthreshold="eEM8VH" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM8VH" type="CTPIN"> + <TriggerCondition name="7eEM8VH" triggerthreshold="eEM8VH" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU100" type="CTPIN"> + <TriggerCondition name="1eTAU100" triggerthreshold="eTAU100" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU100" type="CTPIN"> + <TriggerCondition name="2eTAU100" triggerthreshold="eTAU100" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU100" type="CTPIN"> + <TriggerCondition name="3eTAU100" triggerthreshold="eTAU100" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU100" type="CTPIN"> + <TriggerCondition name="4eTAU100" triggerthreshold="eTAU100" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU100" type="CTPIN"> + <TriggerCondition name="5eTAU100" triggerthreshold="eTAU100" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU100" type="CTPIN"> + <TriggerCondition name="6eTAU100" triggerthreshold="eTAU100" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU100" type="CTPIN"> + <TriggerCondition name="7eTAU100" triggerthreshold="eTAU100" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU12" type="CTPIN"> + <TriggerCondition name="1eTAU12" triggerthreshold="eTAU12" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU12" type="CTPIN"> + <TriggerCondition name="2eTAU12" triggerthreshold="eTAU12" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU12" type="CTPIN"> + <TriggerCondition name="3eTAU12" triggerthreshold="eTAU12" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU12" type="CTPIN"> + <TriggerCondition name="4eTAU12" triggerthreshold="eTAU12" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU12" type="CTPIN"> + <TriggerCondition name="5eTAU12" triggerthreshold="eTAU12" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU12" type="CTPIN"> + <TriggerCondition name="6eTAU12" triggerthreshold="eTAU12" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU12" type="CTPIN"> + <TriggerCondition name="7eTAU12" triggerthreshold="eTAU12" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU12IM" type="CTPIN"> + <TriggerCondition name="1eTAU12IM" triggerthreshold="eTAU12IM" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU12IM" type="CTPIN"> + <TriggerCondition name="2eTAU12IM" triggerthreshold="eTAU12IM" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU12IM" type="CTPIN"> + <TriggerCondition name="3eTAU12IM" triggerthreshold="eTAU12IM" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU12IM" type="CTPIN"> + <TriggerCondition name="4eTAU12IM" triggerthreshold="eTAU12IM" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU12IM" type="CTPIN"> + <TriggerCondition name="5eTAU12IM" triggerthreshold="eTAU12IM" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU12IM" type="CTPIN"> + <TriggerCondition name="6eTAU12IM" triggerthreshold="eTAU12IM" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU12IM" type="CTPIN"> + <TriggerCondition name="7eTAU12IM" triggerthreshold="eTAU12IM" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU20" type="CTPIN"> + <TriggerCondition name="1eTAU20" triggerthreshold="eTAU20" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU20" type="CTPIN"> + <TriggerCondition name="2eTAU20" triggerthreshold="eTAU20" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU20" type="CTPIN"> + <TriggerCondition name="3eTAU20" triggerthreshold="eTAU20" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU20" type="CTPIN"> + <TriggerCondition name="4eTAU20" triggerthreshold="eTAU20" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU20" type="CTPIN"> + <TriggerCondition name="5eTAU20" triggerthreshold="eTAU20" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU20" type="CTPIN"> + <TriggerCondition name="6eTAU20" triggerthreshold="eTAU20" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU20" type="CTPIN"> + <TriggerCondition name="7eTAU20" triggerthreshold="eTAU20" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU20IM" type="CTPIN"> + <TriggerCondition name="1eTAU20IM" triggerthreshold="eTAU20IM" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU20IM" type="CTPIN"> + <TriggerCondition name="2eTAU20IM" triggerthreshold="eTAU20IM" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU20IM" type="CTPIN"> + <TriggerCondition name="3eTAU20IM" triggerthreshold="eTAU20IM" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU20IM" type="CTPIN"> + <TriggerCondition name="4eTAU20IM" triggerthreshold="eTAU20IM" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU20IM" type="CTPIN"> + <TriggerCondition name="5eTAU20IM" triggerthreshold="eTAU20IM" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU20IM" type="CTPIN"> + <TriggerCondition name="6eTAU20IM" triggerthreshold="eTAU20IM" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU20IM" type="CTPIN"> + <TriggerCondition name="7eTAU20IM" triggerthreshold="eTAU20IM" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU25IM" type="CTPIN"> + <TriggerCondition name="1eTAU25IM" triggerthreshold="eTAU25IM" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU25IM" type="CTPIN"> + <TriggerCondition name="2eTAU25IM" triggerthreshold="eTAU25IM" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU25IM" type="CTPIN"> + <TriggerCondition name="3eTAU25IM" triggerthreshold="eTAU25IM" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU25IM" type="CTPIN"> + <TriggerCondition name="4eTAU25IM" triggerthreshold="eTAU25IM" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU25IM" type="CTPIN"> + <TriggerCondition name="5eTAU25IM" triggerthreshold="eTAU25IM" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU25IM" type="CTPIN"> + <TriggerCondition name="6eTAU25IM" triggerthreshold="eTAU25IM" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU25IM" type="CTPIN"> + <TriggerCondition name="7eTAU25IM" triggerthreshold="eTAU25IM" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU40" type="CTPIN"> + <TriggerCondition name="1eTAU40" triggerthreshold="eTAU40" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU40" type="CTPIN"> + <TriggerCondition name="2eTAU40" triggerthreshold="eTAU40" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU40" type="CTPIN"> + <TriggerCondition name="3eTAU40" triggerthreshold="eTAU40" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU40" type="CTPIN"> + <TriggerCondition name="4eTAU40" triggerthreshold="eTAU40" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU40" type="CTPIN"> + <TriggerCondition name="5eTAU40" triggerthreshold="eTAU40" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU40" type="CTPIN"> + <TriggerCondition name="6eTAU40" triggerthreshold="eTAU40" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU40" type="CTPIN"> + <TriggerCondition name="7eTAU40" triggerthreshold="eTAU40" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU60" type="CTPIN"> + <TriggerCondition name="1eTAU60" triggerthreshold="eTAU60" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU60" type="CTPIN"> + <TriggerCondition name="2eTAU60" triggerthreshold="eTAU60" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU60" type="CTPIN"> + <TriggerCondition name="3eTAU60" triggerthreshold="eTAU60" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU60" type="CTPIN"> + <TriggerCondition name="4eTAU60" triggerthreshold="eTAU60" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU60" type="CTPIN"> + <TriggerCondition name="5eTAU60" triggerthreshold="eTAU60" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU60" type="CTPIN"> + <TriggerCondition name="6eTAU60" triggerthreshold="eTAU60" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU60" type="CTPIN"> + <TriggerCondition name="7eTAU60" triggerthreshold="eTAU60" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1gXEPUFIT20" type="CTPIN"> + <TriggerCondition name="1gXEPUFIT20" triggerthreshold="gXEPUFIT20" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXEPUFIT50" type="CTPIN"> + <TriggerCondition name="1gXEPUFIT50" triggerthreshold="gXEPUFIT50" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXERHO20" type="CTPIN"> + <TriggerCondition name="1gXERHO20" triggerthreshold="gXERHO20" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXERHO30" type="CTPIN"> + <TriggerCondition name="1gXERHO30" triggerthreshold="gXERHO30" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXERHO35" type="CTPIN"> + <TriggerCondition name="1gXERHO35" triggerthreshold="gXERHO35" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXERHO40" type="CTPIN"> + <TriggerCondition name="1gXERHO40" triggerthreshold="gXERHO40" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXERHO45" type="CTPIN"> + <TriggerCondition name="1gXERHO45" triggerthreshold="gXERHO45" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXERHO50" type="CTPIN"> + <TriggerCondition name="1gXERHO50" triggerthreshold="gXERHO50" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1jJ100" type="CTPIN"> + <TriggerCondition name="1jJ100" triggerthreshold="jJ100" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ100" type="CTPIN"> + <TriggerCondition name="2jJ100" triggerthreshold="jJ100" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ100" type="CTPIN"> + <TriggerCondition name="3jJ100" triggerthreshold="jJ100" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ12" type="CTPIN"> + <TriggerCondition name="1jJ12" triggerthreshold="jJ12" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ12" type="CTPIN"> + <TriggerCondition name="2jJ12" triggerthreshold="jJ12" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ12" type="CTPIN"> + <TriggerCondition name="3jJ12" triggerthreshold="jJ12" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ12.0ETA23" type="CTPIN"> + <TriggerCondition name="1jJ12.0ETA23" triggerthreshold="jJ12.0ETA23" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ12.0ETA23" type="CTPIN"> + <TriggerCondition name="2jJ12.0ETA23" triggerthreshold="jJ12.0ETA23" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ12.0ETA23" type="CTPIN"> + <TriggerCondition name="3jJ12.0ETA23" triggerthreshold="jJ12.0ETA23" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ15" type="CTPIN"> + <TriggerCondition name="1jJ15" triggerthreshold="jJ15" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ15" type="CTPIN"> + <TriggerCondition name="2jJ15" triggerthreshold="jJ15" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ15" type="CTPIN"> + <TriggerCondition name="3jJ15" triggerthreshold="jJ15" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ15.0ETA25" type="CTPIN"> + <TriggerCondition name="1jJ15.0ETA25" triggerthreshold="jJ15.0ETA25" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ15.0ETA25" type="CTPIN"> + <TriggerCondition name="2jJ15.0ETA25" triggerthreshold="jJ15.0ETA25" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ15.0ETA25" type="CTPIN"> + <TriggerCondition name="3jJ15.0ETA25" triggerthreshold="jJ15.0ETA25" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ15.31ETA49" type="CTPIN"> + <TriggerCondition name="1jJ15.31ETA49" triggerthreshold="jJ15.31ETA49" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ15.31ETA49" type="CTPIN"> + <TriggerCondition name="2jJ15.31ETA49" triggerthreshold="jJ15.31ETA49" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ15.31ETA49" type="CTPIN"> + <TriggerCondition name="3jJ15.31ETA49" triggerthreshold="jJ15.31ETA49" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ20" type="CTPIN"> + <TriggerCondition name="1jJ20" triggerthreshold="jJ20" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ20" type="CTPIN"> + <TriggerCondition name="2jJ20" triggerthreshold="jJ20" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ20" type="CTPIN"> + <TriggerCondition name="3jJ20" triggerthreshold="jJ20" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ20.31ETA49" type="CTPIN"> + <TriggerCondition name="1jJ20.31ETA49" triggerthreshold="jJ20.31ETA49" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ20.31ETA49" type="CTPIN"> + <TriggerCondition name="2jJ20.31ETA49" triggerthreshold="jJ20.31ETA49" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ20.31ETA49" type="CTPIN"> + <TriggerCondition name="3jJ20.31ETA49" triggerthreshold="jJ20.31ETA49" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ25" type="CTPIN"> + <TriggerCondition name="1jJ25" triggerthreshold="jJ25" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ25" type="CTPIN"> + <TriggerCondition name="2jJ25" triggerthreshold="jJ25" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ25" type="CTPIN"> + <TriggerCondition name="3jJ25" triggerthreshold="jJ25" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ25.0ETA23" type="CTPIN"> + <TriggerCondition name="1jJ25.0ETA23" triggerthreshold="jJ25.0ETA23" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ25.0ETA23" type="CTPIN"> + <TriggerCondition name="2jJ25.0ETA23" triggerthreshold="jJ25.0ETA23" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ25.0ETA23" type="CTPIN"> + <TriggerCondition name="3jJ25.0ETA23" triggerthreshold="jJ25.0ETA23" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ30" type="CTPIN"> + <TriggerCondition name="1jJ30" triggerthreshold="jJ30" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ30" type="CTPIN"> + <TriggerCondition name="2jJ30" triggerthreshold="jJ30" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ30" type="CTPIN"> + <TriggerCondition name="3jJ30" triggerthreshold="jJ30" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ35.0ETA23" type="CTPIN"> + <TriggerCondition name="1jJ35.0ETA23" triggerthreshold="jJ35.0ETA23" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ35.0ETA23" type="CTPIN"> + <TriggerCondition name="2jJ35.0ETA23" triggerthreshold="jJ35.0ETA23" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ35.0ETA23" type="CTPIN"> + <TriggerCondition name="3jJ35.0ETA23" triggerthreshold="jJ35.0ETA23" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ40" type="CTPIN"> + <TriggerCondition name="1jJ40" triggerthreshold="jJ40" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ40" type="CTPIN"> + <TriggerCondition name="2jJ40" triggerthreshold="jJ40" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ40" type="CTPIN"> + <TriggerCondition name="3jJ40" triggerthreshold="jJ40" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ40.0ETA25" type="CTPIN"> + <TriggerCondition name="1jJ40.0ETA25" triggerthreshold="jJ40.0ETA25" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ40.0ETA25" type="CTPIN"> + <TriggerCondition name="2jJ40.0ETA25" triggerthreshold="jJ40.0ETA25" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ40.0ETA25" type="CTPIN"> + <TriggerCondition name="3jJ40.0ETA25" triggerthreshold="jJ40.0ETA25" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ50" type="CTPIN"> + <TriggerCondition name="1jJ50" triggerthreshold="jJ50" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ50" type="CTPIN"> + <TriggerCondition name="2jJ50" triggerthreshold="jJ50" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ50" type="CTPIN"> + <TriggerCondition name="3jJ50" triggerthreshold="jJ50" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ75.31ETA49" type="CTPIN"> + <TriggerCondition name="1jJ75.31ETA49" triggerthreshold="jJ75.31ETA49" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ75.31ETA49" type="CTPIN"> + <TriggerCondition name="2jJ75.31ETA49" triggerthreshold="jJ75.31ETA49" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ75.31ETA49" type="CTPIN"> + <TriggerCondition name="3jJ75.31ETA49" triggerthreshold="jJ75.31ETA49" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ85" type="CTPIN"> + <TriggerCondition name="1jJ85" triggerthreshold="jJ85" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ85" type="CTPIN"> + <TriggerCondition name="2jJ85" triggerthreshold="jJ85" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ85" type="CTPIN"> + <TriggerCondition name="3jJ85" triggerthreshold="jJ85" multi="3"/> + </TriggerCounter> </TriggerCounterList> <TriggerThresholdList> <TriggerThreshold active="1" bitnum="1" id="1" mapping="2" name="ALFA_B7R1L" type="ALFA" input="ctpcore" version="1"> @@ -4659,91 +5177,267 @@ <Signal range_begin="21" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="66" mapping="0" name="J12" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="66" mapping="16" name="eEM7" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eEM7full" phimin="0" phimax="64" priority="1" thresholdval="7" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="67" mapping="17" name="eEM22" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eEM22full" phimin="0" phimax="64" priority="1" thresholdval="22" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="68" mapping="18" name="eEM8VH" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="1" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-18" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="8" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-18" etamax="-15" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="7" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="5" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-11" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="6" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-11" etamax="-8" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="7" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-8" etamax="0" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="8" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="8" etamax="11" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="7" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="11" etamax="14" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="6" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="5" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="18" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="7" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="18" etamax="25" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="8" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="69" mapping="19" name="eEM10VH" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="1" thresholdval="11" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-18" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="10" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-18" etamax="-15" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="7" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-11" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="8" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-11" etamax="-8" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-8" etamax="0" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="11" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="8" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="11" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="8" etamax="11" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="11" etamax="14" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="8" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="7" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="18" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="18" etamax="25" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="10" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="70" mapping="20" name="eEM15VH" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="1" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-17" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-17" etamax="-15" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="13" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-12" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="14" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-12" etamax="-9" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-9" etamax="-7" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-7" etamax="0" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="7" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="7" etamax="9" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="9" etamax="12" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="12" etamax="14" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="14" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="13" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="17" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="17" etamax="25" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="71" mapping="21" name="eEM20VH" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="1" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-17" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-17" etamax="-15" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-13" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="18" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-13" etamax="-11" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-11" etamax="-8" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-8" etamax="-7" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-7" etamax="0" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="7" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="7" etamax="8" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="8" etamax="11" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="11" etamax="13" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="13" etamax="14" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="18" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="17" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="17" etamax="25" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="72" mapping="22" name="eEM15VHI" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="1" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-17" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-17" etamax="-15" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="13" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-12" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="14" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-12" etamax="-9" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-9" etamax="-7" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-7" etamax="0" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="7" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="7" etamax="9" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="9" etamax="12" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="12" etamax="14" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="14" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="13" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="17" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="17" etamax="25" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="73" mapping="23" name="eEM18VHI" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="1" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-17" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-17" etamax="-15" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-13" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-13" etamax="-11" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-11" etamax="-8" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="18" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-8" etamax="-7" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-7" etamax="0" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="7" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="7" etamax="8" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="8" etamax="11" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="18" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="11" etamax="13" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="13" etamax="14" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="17" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="17" etamax="25" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="74" mapping="24" name="eEM20VHI" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="1" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-17" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-17" etamax="-15" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-13" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="18" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-13" etamax="-11" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-11" etamax="-8" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-8" etamax="-7" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-7" etamax="0" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="7" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="7" etamax="8" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="8" etamax="11" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="11" etamax="13" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="13" etamax="14" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="18" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="17" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="17" etamax="25" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="75" mapping="25" name="eEM22VHI" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="1" thresholdval="24" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-17" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="23" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-17" etamax="-15" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-13" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-13" etamax="-11" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-11" etamax="-8" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-8" etamax="-7" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="23" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-7" etamax="0" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="24" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="7" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="24" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="7" etamax="8" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="23" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="8" etamax="11" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="11" etamax="13" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="13" etamax="14" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="17" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="17" etamax="25" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="23" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="76" mapping="0" name="J12" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J12full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J12full" phimin="0" phimax="64" priority="1" thresholdval="12" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="0" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="67" mapping="1" name="J12.0ETA23" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="77" mapping="1" name="J12.0ETA23" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J12.0ETA23full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-23" etamax="23" had_isolation="63" had_veto="63" name="J12.0ETA23full" phimin="0" phimax="64" priority="1" thresholdval="12" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="3" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="68" mapping="2" name="J15" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="78" mapping="2" name="J15" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J15full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J15full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="6" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="69" mapping="3" name="J15.0ETA25" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="79" mapping="3" name="J15.0ETA25" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J15.0ETA25full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="25" had_isolation="63" had_veto="63" name="J15.0ETA25full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="9" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="70" mapping="4" name="J20" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="80" mapping="4" name="J20" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J20full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J20full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="12" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="71" mapping="5" name="J25" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="81" mapping="5" name="J25" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J25full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J25full" phimin="0" phimax="64" priority="1" thresholdval="25" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="15" range_end="17"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="72" mapping="6" name="J25.0ETA23" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="82" mapping="6" name="J25.0ETA23" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J25.0ETA23full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-23" etamax="23" had_isolation="63" had_veto="63" name="J25.0ETA23full" phimin="0" phimax="64" priority="1" thresholdval="25" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="18" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="73" mapping="7" name="J30" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="83" mapping="7" name="J30" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J30full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J30full" phimin="0" phimax="64" priority="1" thresholdval="30" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="21" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="74" mapping="8" name="J20.0ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="84" mapping="8" name="J20.0ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J20.0ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J20.0ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="24" range_end="26"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="75" mapping="9" name="J30.0ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="85" mapping="9" name="J30.0ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J30.0ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J30.0ETA49full" phimin="0" phimax="64" priority="1" thresholdval="30" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="27" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="76" mapping="10" name="J35.0ETA23" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="86" mapping="10" name="J35.0ETA23" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J35.0ETA23full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-23" etamax="23" had_isolation="63" had_veto="63" name="J35.0ETA23full" phimin="0" phimax="64" priority="1" thresholdval="35" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> <Signal range_begin="0" range_end="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="77" mapping="11" name="J40.0ETA25" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="87" mapping="11" name="J40.0ETA25" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J40.0ETA25full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="25" had_isolation="63" had_veto="63" name="J40.0ETA25full" phimin="0" phimax="64" priority="1" thresholdval="40" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> <Signal range_begin="2" range_end="3"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="78" mapping="12" name="J20.28ETA31" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="88" mapping="12" name="J20.28ETA31" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J20.28ETA31full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="-28" had_isolation="63" had_veto="63" name="J20.28ETA31full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="28" etamax="31" had_isolation="63" had_veto="63" name="J20.28ETA31full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> @@ -4751,88 +5445,186 @@ <Signal range_begin="4" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="79" mapping="13" name="J40" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="89" mapping="13" name="jJ12.0ETA23" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ12.0ETA23full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-23" etamax="23" had_isolation="63" had_veto="63" name="jJ12.0ETA23full" phimin="0" phimax="64" priority="1" thresholdval="12" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="6" range_end="7"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="90" mapping="14" name="jJ15.0ETA25" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ15.0ETA25full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="25" had_isolation="63" had_veto="63" name="jJ15.0ETA25full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="8" range_end="9"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="91" mapping="15" name="jJ25.0ETA23" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ25.0ETA23full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-23" etamax="23" had_isolation="63" had_veto="63" name="jJ25.0ETA23full" phimin="0" phimax="64" priority="1" thresholdval="25" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="10" range_end="11"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="92" mapping="16" name="jJ35.0ETA23" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ35.0ETA23full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-23" etamax="23" had_isolation="63" had_veto="63" name="jJ35.0ETA23full" phimin="0" phimax="64" priority="1" thresholdval="35" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="12" range_end="13"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="93" mapping="17" name="jJ40.0ETA25" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ40.0ETA25full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="25" had_isolation="63" had_veto="63" name="jJ40.0ETA25full" phimin="0" phimax="64" priority="1" thresholdval="40" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="14" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="94" mapping="18" name="J40" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J40full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J40full" phimin="0" phimax="64" priority="1" thresholdval="40" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="6" range_end="7"/> + <Signal range_begin="16" range_end="17"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="80" mapping="14" name="J50" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="95" mapping="19" name="J50" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J50full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J50full" phimin="0" phimax="64" priority="1" thresholdval="50" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="8" range_end="9"/> + <Signal range_begin="18" range_end="19"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="81" mapping="15" name="J75" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="96" mapping="20" name="J75" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J75full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J75full" phimin="0" phimax="64" priority="1" thresholdval="75" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="10" range_end="11"/> + <Signal range_begin="20" range_end="21"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="82" mapping="16" name="J85" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="97" mapping="21" name="J85" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J85full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J85full" phimin="0" phimax="64" priority="1" thresholdval="85" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="12" range_end="13"/> + <Signal range_begin="22" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="83" mapping="17" name="J100" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="98" mapping="22" name="J100" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J100full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J100full" phimin="0" phimax="64" priority="1" thresholdval="100" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="14" range_end="15"/> + <Signal range_begin="24" range_end="25"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="84" mapping="18" name="J45.0ETA20" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="99" mapping="23" name="J45.0ETA20" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J45.0ETA20full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-20" etamax="20" had_isolation="63" had_veto="63" name="J45.0ETA20full" phimin="0" phimax="64" priority="1" thresholdval="45" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="16" range_end="17"/> + <Signal range_begin="26" range_end="27"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="85" mapping="19" name="J120" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="100" mapping="24" name="J120" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J120full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J120full" phimin="0" phimax="64" priority="1" thresholdval="120" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="18" range_end="19"/> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="101" mapping="25" name="jJ12" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ12full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ12full" phimin="0" phimax="64" priority="1" thresholdval="12" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="102" mapping="26" name="jJ15" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ15full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ15full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="103" mapping="27" name="jJ20" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ20full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ20full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="104" mapping="28" name="jJ25" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ25full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ25full" phimin="0" phimax="64" priority="1" thresholdval="25" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="105" mapping="29" name="jJ30" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ30full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ30full" phimin="0" phimax="64" priority="1" thresholdval="30" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="106" mapping="30" name="jJ40" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ40full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ40full" phimin="0" phimax="64" priority="1" thresholdval="40" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="107" mapping="31" name="jJ50" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ50full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ50full" phimin="0" phimax="64" priority="1" thresholdval="50" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="86" mapping="20" name="J15.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="108" mapping="32" name="jJ85" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ85full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ85full" phimin="0" phimax="64" priority="1" thresholdval="85" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="109" mapping="33" name="jJ100" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ100full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ100full" phimin="0" phimax="64" priority="1" thresholdval="100" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="110" mapping="34" name="J15.31ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J15.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="J15.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="J15.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="20" range_end="21"/> + <Signal range_begin="28" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="87" mapping="21" name="J20.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="111" mapping="35" name="J20.31ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J20.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="J20.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="J20.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="22" range_end="23"/> + <Signal range_begin="28" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="88" mapping="22" name="J30.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="112" mapping="36" name="J30.31ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J30.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="J30.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="30" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="J30.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="30" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="24" range_end="25"/> + <Signal range_begin="28" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="89" mapping="23" name="J50.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="113" mapping="37" name="J50.31ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J50.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="J50.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="50" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="J50.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="50" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="26" range_end="27"/> + <Signal range_begin="28" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="90" mapping="24" name="J75.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="114" mapping="38" name="J75.31ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J75.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="J75.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="75" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="J75.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="75" type="JET" window="8" windowSize="LARGE"/> @@ -4840,19 +5632,43 @@ <Signal range_begin="28" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="91" mapping="0" name="LUCID_A" type="LUCID" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="115" mapping="39" name="jJ15.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ15.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="jJ15.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="jJ15.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="116" mapping="40" name="jJ20.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ20.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="jJ20.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="jJ20.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="117" mapping="41" name="jJ75.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ75.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="jJ75.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="75" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="jJ75.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="75" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="118" mapping="0" name="LUCID_A" type="LUCID" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="LUCID_Afull" phimin="0" phimax="64" priority="0" thresholdval="650" type="LUCID" window="0"/> <Cable connector="CON1" input="SLOT9" name="CTPCAL"> <Signal range_begin="19" range_end="19"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="92" mapping="1" name="LUCID_C" type="LUCID" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="119" mapping="1" name="LUCID_C" type="LUCID" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="LUCID_Cfull" phimin="0" phimax="64" priority="0" thresholdval="650" type="LUCID" window="0"/> <Cable connector="CON1" input="SLOT9" name="CTPCAL"> <Signal range_begin="20" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="93" mapping="0" name="MBTS_A" type="MBTS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="120" mapping="0" name="MBTS_A" type="MBTS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A0full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A10full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A11full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> @@ -4873,7 +5689,7 @@ <Signal range_begin="16" range_end="18"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="94" mapping="1" name="MBTS_C" type="MBTS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="121" mapping="1" name="MBTS_C" type="MBTS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C0full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C10full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C11full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> @@ -4894,457 +5710,505 @@ <Signal range_begin="16" range_end="18"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="95" mapping="0" name="MBTS_A0" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="122" mapping="0" name="MBTS_A0" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A0full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="0" range_end="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="96" mapping="1" name="MBTS_A1" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="123" mapping="1" name="MBTS_A1" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A1full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="1" range_end="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="97" mapping="2" name="MBTS_A2" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="124" mapping="2" name="MBTS_A2" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A2full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="2" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="98" mapping="3" name="MBTS_A3" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="125" mapping="3" name="MBTS_A3" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A3full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="3" range_end="3"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="99" mapping="4" name="MBTS_A4" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="126" mapping="4" name="MBTS_A4" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A4full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="4" range_end="4"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="100" mapping="5" name="MBTS_A5" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="127" mapping="5" name="MBTS_A5" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A5full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="5" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="101" mapping="6" name="MBTS_A6" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="128" mapping="6" name="MBTS_A6" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A6full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="6" range_end="6"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="102" mapping="7" name="MBTS_A7" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="129" mapping="7" name="MBTS_A7" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A7full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="7" range_end="7"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="103" mapping="8" name="MBTS_A8" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="130" mapping="8" name="MBTS_A8" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A8full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="8" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="104" mapping="9" name="MBTS_A10" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="131" mapping="9" name="MBTS_A10" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A10full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="9" range_end="9"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="105" mapping="10" name="MBTS_A12" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="132" mapping="10" name="MBTS_A12" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A12full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="10" range_end="10"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="106" mapping="11" name="MBTS_A14" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="133" mapping="11" name="MBTS_A14" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A14full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="11" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="107" mapping="12" name="MBTS_A9" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="134" mapping="12" name="MBTS_A9" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A9full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="12" range_end="12"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="108" mapping="13" name="MBTS_A11" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="135" mapping="13" name="MBTS_A11" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A11full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="13" range_end="13"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="109" mapping="14" name="MBTS_A13" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="136" mapping="14" name="MBTS_A13" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A13full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="14" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="110" mapping="15" name="MBTS_A15" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="137" mapping="15" name="MBTS_A15" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A15full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="15" range_end="15"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="111" mapping="16" name="MBTS_C0" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="138" mapping="16" name="MBTS_C0" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C0full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="0" range_end="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="112" mapping="17" name="MBTS_C1" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="139" mapping="17" name="MBTS_C1" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C1full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="1" range_end="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="113" mapping="18" name="MBTS_C2" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="140" mapping="18" name="MBTS_C2" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C2full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="2" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="114" mapping="19" name="MBTS_C3" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="141" mapping="19" name="MBTS_C3" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C3full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="3" range_end="3"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="115" mapping="20" name="MBTS_C4" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="142" mapping="20" name="MBTS_C4" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C4full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="4" range_end="4"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="116" mapping="21" name="MBTS_C5" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="143" mapping="21" name="MBTS_C5" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C5full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="5" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="117" mapping="22" name="MBTS_C6" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="144" mapping="22" name="MBTS_C6" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C6full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="6" range_end="6"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="118" mapping="23" name="MBTS_C7" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="145" mapping="23" name="MBTS_C7" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C7full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="7" range_end="7"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="119" mapping="24" name="MBTS_C8" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="146" mapping="24" name="MBTS_C8" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C8full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="8" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="120" mapping="25" name="MBTS_C10" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="147" mapping="25" name="MBTS_C10" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C10full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="9" range_end="9"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="121" mapping="26" name="MBTS_C12" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="148" mapping="26" name="MBTS_C12" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C12full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="10" range_end="10"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="122" mapping="27" name="MBTS_C14" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="149" mapping="27" name="MBTS_C14" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C14full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="11" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="123" mapping="28" name="MBTS_C11" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="150" mapping="28" name="MBTS_C11" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C11full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="12" range_end="12"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="124" mapping="29" name="MBTS_C13" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="151" mapping="29" name="MBTS_C13" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C13full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="13" range_end="13"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="125" mapping="30" name="MBTS_C9" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="152" mapping="30" name="MBTS_C9" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C9full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="14" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="126" mapping="31" name="MBTS_C15" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="153" mapping="31" name="MBTS_C15" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C15full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="15" range_end="15"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="127" mapping="0" name="MU4" type="MUON" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="154" mapping="0" name="MU4" type="MUON" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MU4full" phimin="0" phimax="64" priority="0" thresholdval="4" type="MUON" window="0"/> <Cable connector="CON0" input="SLOT9" name="MUCTPI"> <Signal range_begin="1" range_end="3"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="128" mapping="1" name="MU6" type="MUON" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="155" mapping="1" name="MU6" type="MUON" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MU6full" phimin="0" phimax="64" priority="0" thresholdval="6" type="MUON" window="0"/> <Cable connector="CON0" input="SLOT9" name="MUCTPI"> <Signal range_begin="4" range_end="6"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="129" mapping="2" name="MU10" type="MUON" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="156" mapping="2" name="MU10" type="MUON" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MU10full" phimin="0" phimax="64" priority="0" thresholdval="10" type="MUON" window="0"/> <Cable connector="CON0" input="SLOT9" name="MUCTPI"> <Signal range_begin="7" range_end="9"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="130" mapping="3" name="MU11" type="MUON" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="157" mapping="3" name="MU11" type="MUON" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MU11full" phimin="0" phimax="64" priority="0" thresholdval="11" type="MUON" window="0"/> <Cable connector="CON0" input="SLOT9" name="MUCTPI"> <Signal range_begin="10" range_end="12"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="131" mapping="4" name="MU20" type="MUON" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="158" mapping="4" name="MU20" type="MUON" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MU20full" phimin="0" phimax="64" priority="0" thresholdval="20" type="MUON" window="0"/> <Cable connector="CON0" input="SLOT9" name="MUCTPI"> <Signal range_begin="13" range_end="15"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="132" mapping="5" name="MU21" type="MUON" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="159" mapping="5" name="MU21" type="MUON" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MU21full" phimin="0" phimax="64" priority="0" thresholdval="21" type="MUON" window="0"/> <Cable connector="CON0" input="SLOT9" name="MUCTPI"> <Signal range_begin="16" range_end="18"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="133" mapping="0" name="NIML1A" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="160" mapping="0" name="NIML1A" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="NIML1Afull" phimin="0" phimax="64" priority="0" thresholdval="40" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="19" range_end="19"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="134" mapping="1" name="NIMLHCF" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="161" mapping="1" name="NIMLHCF" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="NIMLHCFfull" phimin="0" phimax="64" priority="0" thresholdval="40" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="20" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="135" mapping="2" name="AFP_NSC" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="162" mapping="2" name="AFP_NSC" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_NSCfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="21" range_end="21"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="136" mapping="3" name="AFP_NSA" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="163" mapping="3" name="AFP_NSA" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_NSAfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="22" range_end="22"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="137" mapping="4" name="AFP_FSA_SIT" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="164" mapping="4" name="AFP_FSA_SIT" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_FSA_SITfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="23" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="138" mapping="5" name="AFP_FSA_TOF" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="165" mapping="5" name="AFP_FSA_TOF" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_FSA_TOFfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="24" range_end="24"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="139" mapping="6" name="AFP_FSA_LOG" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="166" mapping="6" name="AFP_FSA_LOG" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_FSA_LOGfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="25" range_end="25"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="140" mapping="7" name="AFP_FSC_SIT" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="167" mapping="7" name="AFP_FSC_SIT" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_FSC_SITfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="26" range_end="26"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="141" mapping="8" name="AFP_FSC_LOG" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="168" mapping="8" name="AFP_FSC_LOG" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_FSC_LOGfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="27" range_end="27"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="142" mapping="9" name="AFP_FSC_TOF" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="169" mapping="9" name="AFP_FSC_TOF" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_FSC_TOFfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="28" range_end="28"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="143" mapping="12" name="NIMTGC" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="170" mapping="12" name="NIMTGC" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="NIMTGCfull" phimin="0" phimax="64" priority="0" thresholdval="40" type="NIM" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="19" range_end="19"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="144" mapping="13" name="NIMRPC" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="171" mapping="13" name="NIMRPC" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="NIMRPCfull" phimin="0" phimax="64" priority="0" thresholdval="40" type="NIM" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="20" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="145" mapping="14" name="NIMTRT" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="172" mapping="14" name="NIMTRT" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="NIMTRTfull" phimin="0" phimax="64" priority="0" thresholdval="40" type="NIM" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="21" range_end="21"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="146" mapping="0" name="HA5" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="173" mapping="0" name="HA5" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA5full" phimin="0" phimax="64" priority="1" thresholdval="5" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="0" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="147" mapping="1" name="HA8" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="174" mapping="1" name="HA8" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA8full" phimin="0" phimax="64" priority="1" thresholdval="8" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="3" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="148" mapping="2" name="HA12" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="175" mapping="2" name="HA12" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA12full" phimin="0" phimax="64" priority="1" thresholdval="12" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="6" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="149" mapping="3" name="HA12IL" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="176" mapping="3" name="HA12IL" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00001" name="HA12ILfull" phimin="0" phimax="64" priority="1" thresholdval="12" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="9" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="150" mapping="4" name="HA12IM" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="177" mapping="4" name="HA12IM" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00010" name="HA12IMfull" phimin="0" phimax="64" priority="1" thresholdval="12" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="12" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="151" mapping="5" name="HA12IT" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="178" mapping="5" name="HA12IT" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00100" name="HA12ITfull" phimin="0" phimax="64" priority="1" thresholdval="12" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="15" range_end="17"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="152" mapping="6" name="HA15" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="179" mapping="6" name="HA15" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA15full" phimin="0" phimax="64" priority="1" thresholdval="15" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="18" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="153" mapping="7" name="HA20" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="180" mapping="7" name="HA20" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA20full" phimin="0" phimax="64" priority="1" thresholdval="20" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="21" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="154" mapping="8" name="HA20IL" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="181" mapping="8" name="HA20IL" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00001" name="HA20ILfull" phimin="0" phimax="64" priority="1" thresholdval="20" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="0" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="155" mapping="9" name="HA20IM" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="182" mapping="9" name="HA20IM" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00010" name="HA20IMfull" phimin="0" phimax="64" priority="1" thresholdval="20" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="3" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="156" mapping="10" name="HA25" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="183" mapping="10" name="HA25" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA25full" phimin="0" phimax="64" priority="1" thresholdval="25" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="6" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="157" mapping="11" name="HA25IM" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="184" mapping="11" name="HA25IM" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00010" name="HA25IMfull" phimin="0" phimax="64" priority="1" thresholdval="25" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="9" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="158" mapping="12" name="HA30" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="185" mapping="12" name="HA30" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA30full" phimin="0" phimax="64" priority="1" thresholdval="30" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="12" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="159" mapping="13" name="HA40" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="186" mapping="13" name="HA40" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA40full" phimin="0" phimax="64" priority="1" thresholdval="40" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="15" range_end="17"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="160" mapping="14" name="HA60" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="187" mapping="14" name="HA60" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA60full" phimin="0" phimax="64" priority="1" thresholdval="60" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="18" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="161" mapping="15" name="HA100" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="188" mapping="15" name="HA100" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA100full" phimin="0" phimax="64" priority="1" thresholdval="100" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="21" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="162" mapping="0" name="TE5" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="189" mapping="16" name="eTAU12" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eTAU12full" phimin="0" phimax="64" priority="1" thresholdval="12" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="190" mapping="17" name="eTAU20" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eTAU20full" phimin="0" phimax="64" priority="1" thresholdval="20" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="191" mapping="18" name="eTAU40" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eTAU40full" phimin="0" phimax="64" priority="1" thresholdval="40" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="192" mapping="19" name="eTAU60" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eTAU60full" phimin="0" phimax="64" priority="1" thresholdval="60" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="193" mapping="20" name="eTAU100" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eTAU100full" phimin="0" phimax="64" priority="1" thresholdval="100" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="194" mapping="21" name="eTAU12IM" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00010" name="eTAU12IMfull" phimin="0" phimax="64" priority="1" thresholdval="12" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="195" mapping="22" name="eTAU20IM" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00010" name="eTAU20IMfull" phimin="0" phimax="64" priority="1" thresholdval="20" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="196" mapping="23" name="eTAU25IM" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00010" name="eTAU25IMfull" phimin="0" phimax="64" priority="1" thresholdval="25" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="197" mapping="0" name="TE5" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE5full" phimin="0" phimax="64" priority="0" thresholdval="5" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="0" range_end="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="163" mapping="1" name="TE10" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="198" mapping="1" name="TE10" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE10full" phimin="0" phimax="64" priority="0" thresholdval="10" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="1" range_end="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="164" mapping="2" name="TE15" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="199" mapping="2" name="TE15" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE15full" phimin="0" phimax="64" priority="0" thresholdval="15" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="2" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="165" mapping="3" name="TE20" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="200" mapping="3" name="TE20" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE20full" phimin="0" phimax="64" priority="0" thresholdval="20" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="3" range_end="3"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="166" mapping="4" name="TE25" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="201" mapping="4" name="TE25" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE25full" phimin="0" phimax="64" priority="0" thresholdval="25" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="4" range_end="4"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="167" mapping="5" name="TE30" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="202" mapping="5" name="TE30" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE30full" phimin="0" phimax="64" priority="0" thresholdval="30" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="5" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="168" mapping="6" name="TE40" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="203" mapping="6" name="TE40" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE40full" phimin="0" phimax="64" priority="0" thresholdval="40" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="6" range_end="6"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="169" mapping="7" name="TE50" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="204" mapping="7" name="TE50" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE50full" phimin="0" phimax="64" priority="0" thresholdval="50" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="7" range_end="7"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="170" mapping="8" name="TE5.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="205" mapping="8" name="TE5.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE5.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE5.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="5" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE5.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="5" type="TE" window="0"/> @@ -5352,7 +6216,7 @@ <Signal range_begin="0" range_end="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="171" mapping="9" name="TE10.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="206" mapping="9" name="TE10.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE10.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE10.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="10" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE10.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="10" type="TE" window="0"/> @@ -5360,7 +6224,7 @@ <Signal range_begin="1" range_end="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="172" mapping="10" name="TE15.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="207" mapping="10" name="TE15.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE15.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE15.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="15" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE15.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="15" type="TE" window="0"/> @@ -5368,7 +6232,7 @@ <Signal range_begin="2" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="173" mapping="11" name="TE20.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="208" mapping="11" name="TE20.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE20.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE20.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE20.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="TE" window="0"/> @@ -5376,7 +6240,7 @@ <Signal range_begin="3" range_end="3"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="174" mapping="12" name="TE25.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="209" mapping="12" name="TE25.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE25.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE25.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="25" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE25.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="25" type="TE" window="0"/> @@ -5384,7 +6248,7 @@ <Signal range_begin="4" range_end="4"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="175" mapping="13" name="TE30.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="210" mapping="13" name="TE30.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE30.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE30.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="30" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE30.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="30" type="TE" window="0"/> @@ -5392,7 +6256,7 @@ <Signal range_begin="5" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="176" mapping="14" name="TE40.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="211" mapping="14" name="TE40.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE40.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE40.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="40" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE40.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="40" type="TE" window="0"/> @@ -5400,7 +6264,7 @@ <Signal range_begin="6" range_end="6"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="177" mapping="15" name="TE70.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="212" mapping="15" name="TE70.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE70.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE70.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="70" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE70.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="70" type="TE" window="0"/> @@ -5408,738 +6272,766 @@ <Signal range_begin="7" range_end="7"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="178" mapping="0" name="900INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="213" mapping="0" name="900INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="0" range_end="0" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="179" mapping="1" name="800INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="214" mapping="1" name="800INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="1" range_end="1" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="180" mapping="2" name="700INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="215" mapping="2" name="700INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="2" range_end="2" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="181" mapping="3" name="500INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="216" mapping="3" name="500INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="3" range_end="3" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="182" mapping="4" name="400INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="217" mapping="4" name="400INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="4" range_end="4" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="183" mapping="5" name="300INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="218" mapping="5" name="300INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="5" range_end="5" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="184" mapping="6" name="200INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="219" mapping="6" name="200INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="6" range_end="6" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="185" mapping="7" name="100INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="220" mapping="7" name="100INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="7" range_end="7" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="186" mapping="8" name="0INVM9-EM7ab-EMab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="221" mapping="8" name="0INVM9-EM7ab-EMab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="8" range_end="8" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="187" mapping="9" name="HT150-J20s5.ETA31" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="222" mapping="9" name="HT150-J20s5.ETA31" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="9" range_end="9" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="188" mapping="10" name="HT190-J15s5.ETA21" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="223" mapping="10" name="HT190-J15s5.ETA21" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="10" range_end="10" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="189" mapping="11" name="1INVM5-EMs1-EMs6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="224" mapping="11" name="1INVM5-EMs1-EMs6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="11" range_end="11" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="190" mapping="12" name="1INVM5-EM7s1-EMs6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="225" mapping="12" name="1INVM5-EM7s1-EMs6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="12" range_end="12" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="191" mapping="13" name="1INVM5-EM12s1-EMs6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="226" mapping="13" name="1INVM5-EM12s1-EMs6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="13" range_end="13" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="192" mapping="14" name="05MINDPHI-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="227" mapping="14" name="05MINDPHI-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="14" range_end="14" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="193" mapping="15" name="400INVM9999-AJ30s6.ETA31-AJ20s6.31ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="228" mapping="15" name="400INVM9999-AJ30s6.ETA31-AJ20s6.31ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="15" range_end="15" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="194" mapping="18" name="1DISAMB-EM15his2-TAU12abi-J25ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="229" mapping="18" name="1DISAMB-EM15his2-TAU12abi-J25ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="18" range_end="18" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="195" mapping="19" name="1DISAMB-J25ab-0DR28-EM15his2-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="230" mapping="19" name="1DISAMB-J25ab-0DR28-EM15his2-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="19" range_end="19" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="196" mapping="20" name="2INVM9-2MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="231" mapping="20" name="2INVM9-2MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="20" range_end="20" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="197" mapping="22" name="2INVM8-ONEBARREL-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="232" mapping="22" name="2INVM8-ONEBARREL-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="22" range_end="22" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="198" mapping="24" name="5DETA99-5DPHI99-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="233" mapping="24" name="5DETA99-5DPHI99-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="24" range_end="24" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="199" mapping="25" name="5DETA99-5DPHI99-2MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="234" mapping="25" name="5DETA99-5DPHI99-2MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="25" range_end="25" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="200" mapping="26" name="1DISAMB-TAU20abi-TAU12abi-J25ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="235" mapping="26" name="1DISAMB-TAU20abi-TAU12abi-J25ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="26" range_end="26" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="201" mapping="27" name="0DR28-MU10ab-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="236" mapping="27" name="0DR28-MU10ab-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="27" range_end="27" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="202" mapping="28" name="0DETA20-0DPHI20-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="237" mapping="28" name="0DETA20-0DPHI20-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="28" range_end="28" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="203" mapping="31" name="DISAMB-0DR28-EM15his2-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="238" mapping="31" name="DISAMB-0DR28-EM15his2-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="31" range_end="31" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="204" mapping="32" name="05MINDPHI-EM15s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="239" mapping="32" name="05MINDPHI-EM15s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="0" range_end="0" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="205" mapping="33" name="25MT-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="240" mapping="33" name="25MT-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="1" range_end="1" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="206" mapping="34" name="ZEE-EM20shi2" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="241" mapping="34" name="ZEE-EM20shi2" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="2" range_end="2" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="207" mapping="35" name="35MT-EM15s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="242" mapping="35" name="35MT-EM15s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="3" range_end="3" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="208" mapping="36" name="0DR03-EM7ab-CJ15ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="243" mapping="36" name="0DR03-EM7ab-CJ15ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="4" range_end="4" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="209" mapping="37" name="10MINDPHI-J20s2-XE30" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="244" mapping="37" name="10MINDPHI-J20s2-XE30" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="5" range_end="5" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="210" mapping="38" name="10MINDPHI-J20s2-XE50" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="245" mapping="38" name="10MINDPHI-J20s2-XE50" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="6" range_end="6" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="211" mapping="39" name="100RATIO-0MATCH-TAU30si2-EMall" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="246" mapping="39" name="100RATIO-0MATCH-TAU30si2-EMall" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="7" range_end="7" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="212" mapping="40" name="NOT-0MATCH-TAU30si1-EMall" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="247" mapping="40" name="NOT-0MATCH-TAU30si1-EMall" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="8" range_end="8" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="213" mapping="41" name="LAR-EM20shi1" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="248" mapping="41" name="LAR-EM20shi1" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="9" range_end="9" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="214" mapping="42" name="LAR-J100s1" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="249" mapping="42" name="LAR-J100s1" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="10" range_end="10" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="215" mapping="43" name="NOT-02MATCH-EM10s1-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="250" mapping="43" name="NOT-02MATCH-EM10s1-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="11" range_end="11" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="216" mapping="44" name="27DPHI32-EMs1-EMs6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="251" mapping="44" name="27DPHI32-EMs1-EMs6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="12" range_end="12" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="217" mapping="45" name="35MT-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="252" mapping="45" name="35MT-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="13" range_end="13" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="218" mapping="46" name="15MINDPHI-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="253" mapping="46" name="15MINDPHI-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="14" range_end="14" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="219" mapping="47" name="15MINDPHI-EM15s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="254" mapping="47" name="15MINDPHI-EM15s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="15" range_end="15" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="220" mapping="48" name="DISAMB-30INVM-EM20his2-TAU12ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="255" mapping="48" name="DISAMB-30INVM-EM20his2-TAU12ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="16" range_end="16" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="221" mapping="52" name="0DR22-2MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="256" mapping="52" name="0DR22-2MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="20" range_end="20" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="222" mapping="53" name="7INVM15-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="257" mapping="53" name="7INVM15-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="21" range_end="21" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="223" mapping="54" name="0DR22-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="258" mapping="54" name="0DR22-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="22" range_end="22" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="224" mapping="55" name="0DR15-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="259" mapping="55" name="0DR15-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="23" range_end="23" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="225" mapping="56" name="0DR24-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="260" mapping="56" name="0DR24-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="24" range_end="24" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="226" mapping="57" name="0DR15-2MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="261" mapping="57" name="0DR15-2MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="25" range_end="25" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="227" mapping="58" name="2INVM9-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="262" mapping="58" name="2INVM9-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="26" range_end="26" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="228" mapping="59" name="2INVM9-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="263" mapping="59" name="2INVM9-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="27" range_end="27" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="229" mapping="60" name="600INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="264" mapping="60" name="600INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="28" range_end="28" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="230" mapping="61" name="500INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="265" mapping="61" name="500INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="29" range_end="29" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="231" mapping="62" name="400INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="266" mapping="62" name="400INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="30" range_end="30" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="232" mapping="63" name="200INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="267" mapping="63" name="200INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="31" range_end="31" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="233" mapping="64" name="05MINDPHI-AJj10s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="268" mapping="64" name="05MINDPHI-AJj10s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="0" range_end="0" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="234" mapping="65" name="10MINDPHI-AJj10s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="269" mapping="65" name="10MINDPHI-AJj10s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="1" range_end="1" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="235" mapping="66" name="15MINDPHI-AJj10s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="270" mapping="66" name="15MINDPHI-AJj10s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="2" range_end="2" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="236" mapping="67" name="0DR04-MU4ab-CJ15ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="271" mapping="67" name="0DR04-MU4ab-CJ15ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="3" range_end="3" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="237" mapping="68" name="0DR04-MU4ab-CJ20ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="272" mapping="68" name="0DR04-MU4ab-CJ20ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="4" range_end="4" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="238" mapping="69" name="0DR04-MU4ab-CJ30ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="273" mapping="69" name="0DR04-MU4ab-CJ30ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="5" range_end="5" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="239" mapping="70" name="0DR04-MU6ab-CJ20ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="274" mapping="70" name="0DR04-MU6ab-CJ20ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="6" range_end="6" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="240" mapping="71" name="0DR04-MU6ab-CJ25ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="275" mapping="71" name="0DR04-MU6ab-CJ25ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="7" range_end="7" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="241" mapping="72" name="10MINDPHI-CJ20ab-XE50" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="276" mapping="72" name="10MINDPHI-CJ20ab-XE50" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="8" range_end="8" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="242" mapping="73" name="0DR24-2CMU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="277" mapping="73" name="0DR24-2CMU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="9" range_end="9" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="243" mapping="74" name="FTK-J100s1" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="278" mapping="74" name="FTK-J100s1" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="10" range_end="10" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="244" mapping="75" name="MULT-CMU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="2" id="279" mapping="75" name="MULT-CMU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="11" range_end="12" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="245" mapping="77" name="MULT-CMU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="2" id="280" mapping="77" name="MULT-CMU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="13" range_end="14" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="246" mapping="79" name="FTK-MU10s1" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="281" mapping="79" name="FTK-MU10s1" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="15" range_end="15" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="247" mapping="80" name="400INVM9999-0DPHI20-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="282" mapping="80" name="400INVM9999-0DPHI20-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="16" range_end="16" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="248" mapping="81" name="400INVM9999-0DPHI22-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="283" mapping="81" name="400INVM9999-0DPHI22-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="17" range_end="17" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="249" mapping="82" name="400INVM9999-0DPHI24-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="284" mapping="82" name="400INVM9999-0DPHI24-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="18" range_end="18" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="250" mapping="83" name="400INVM9999-0DPHI26-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="285" mapping="83" name="400INVM9999-0DPHI26-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="19" range_end="19" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="251" mapping="84" name="0INVM10-3MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="286" mapping="84" name="0INVM10-3MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="20" range_end="20" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="252" mapping="86" name="0MATCH-4AJ20.ETA31-4AJj15.ETA31" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="287" mapping="86" name="0MATCH-4AJ20.ETA31-4AJj15.ETA31" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="22" range_end="22" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="253" mapping="87" name="HT190-AJ15all.ETA21" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="288" mapping="87" name="HT190-AJ15all.ETA21" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="23" range_end="23" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="254" mapping="88" name="HT150-AJ20all.ETA31" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="289" mapping="88" name="HT150-AJ20all.ETA31" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="24" range_end="24" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="255" mapping="89" name="HT150-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="290" mapping="89" name="HT150-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="25" range_end="25" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="256" mapping="90" name="HT20-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="291" mapping="90" name="HT20-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="26" range_end="26" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="257" mapping="92" name="0DETA20-J50s1-Js2" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="292" mapping="92" name="0DETA20-J50s1-Js2" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="28" range_end="28" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="258" mapping="93" name="05RATIO-XE0-HT0-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="293" mapping="93" name="05RATIO-XE0-HT0-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="29" range_end="29" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="259" mapping="94" name="63DETA127-FJ20s1-FJ20s2" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="294" mapping="94" name="63DETA127-FJ20s1-FJ20s2" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="30" range_end="30" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="260" mapping="95" name="90RATIO2-XE0-HT0-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="295" mapping="95" name="90RATIO2-XE0-HT0-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="31" range_end="31" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="261" mapping="96" name="60INVM9999-04DPHI32-EM15abhi-FJj15s623ETA49" type="TOPO" input="ctpcore" version="1"> - <Cable connector="CON2" input="CTPCORE" name="TOPO2"> - <Signal range_begin="0" range_end="0" clock="1"/> - </Cable> - </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="262" mapping="97" name="0INVM10-0DR15-EM8abi-MU10ab" type="TOPO" input="ctpcore" version="1"> - <Cable connector="CON2" input="CTPCORE" name="TOPO2"> - <Signal range_begin="1" range_end="1" clock="1"/> - </Cable> - </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="263" mapping="98" name="0INVM10-0DR15-EM12abi-MU6ab" type="TOPO" input="ctpcore" version="1"> - <Cable connector="CON2" input="CTPCORE" name="TOPO2"> - <Signal range_begin="2" range_end="2" clock="1"/> - </Cable> - </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="264" mapping="99" name="0DETA04-EM8abi-MU10ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="296" mapping="99" name="0DETA04-EM8abi-MU10ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="3" range_end="3" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="265" mapping="100" name="0DETA04-EM15abi-MUab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="297" mapping="100" name="0DETA04-EM15abi-MUab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="4" range_end="4" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="266" mapping="101" name="0DR24-CMU4ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="298" mapping="101" name="0DR24-CMU4ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="5" range_end="5" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="267" mapping="102" name="0DPHI03-EM8abi-MU10ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="299" mapping="102" name="0DPHI03-EM8abi-MU10ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="6" range_end="6" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="268" mapping="103" name="2INVM8-CMU4ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="300" mapping="103" name="2INVM8-CMU4ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="7" range_end="7" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="269" mapping="104" name="0DPHI03-EM15abi-MUab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="301" mapping="104" name="0DPHI03-EM15abi-MUab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="8" range_end="8" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="270" mapping="105" name="10MINDPHI-AJ20s2-XE50" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="302" mapping="105" name="10MINDPHI-AJ20s2-XE50" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="9" range_end="9" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="271" mapping="106" name="LATE-MU10s1" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="303" mapping="106" name="LATE-MU10s1" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="10" range_end="10" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="272" mapping="107" name="SC111-CJ15ab.ETA26" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="304" mapping="107" name="SC111-CJ15ab.ETA26" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="11" range_end="11" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="273" mapping="108" name="SC85-CJ15ab.ETA26" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="305" mapping="108" name="SC85-CJ15ab.ETA26" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="12" range_end="12" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="274" mapping="109" name="FTK-EM20s1" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="306" mapping="109" name="FTK-EM20s1" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="13" range_end="13" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="275" mapping="110" name="60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49" type="TOPO" input="ctpcore" version="1"> - <Cable connector="CON2" input="CTPCORE" name="TOPO2"> - <Signal range_begin="14" range_end="14" clock="1"/> - </Cable> - </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="276" mapping="112" name="250RATIO2-XE0-HT0-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="307" mapping="112" name="250RATIO2-XE0-HT0-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="16" range_end="16" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="277" mapping="113" name="10MINDPHI-J20ab-XE50" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="308" mapping="113" name="10MINDPHI-J20ab-XE50" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="17" range_end="17" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="278" mapping="114" name="0DR28-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="309" mapping="114" name="0DR28-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="18" range_end="18" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="279" mapping="115" name="2DISAMB-J25ab-0DR28-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="310" mapping="115" name="2DISAMB-J25ab-0DR28-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="19" range_end="19" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="280" mapping="116" name="1DISAMB-TAU12abi-J25ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="311" mapping="116" name="1DISAMB-TAU12abi-J25ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="20" range_end="20" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="281" mapping="117" name="0DR10-MU10ab-MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="312" mapping="117" name="0DR10-MU10ab-MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="21" range_end="21" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="282" mapping="118" name="2DR99-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="313" mapping="118" name="2DR99-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="22" range_end="22" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="283" mapping="119" name="0DR34-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="314" mapping="119" name="0DR34-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="23" range_end="23" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="284" mapping="120" name="2DR15-2MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="315" mapping="120" name="2DR15-2MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="24" range_end="24" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="285" mapping="121" name="0DR15-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="316" mapping="121" name="0DR15-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="25" range_end="25" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="286" mapping="122" name="0DR25-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="317" mapping="122" name="0DR25-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="26" range_end="26" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="287" mapping="123" name="1DISAMB-J25ab-0DR25-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="318" mapping="123" name="1DISAMB-J25ab-0DR25-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="27" range_end="27" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="288" mapping="124" name="8INVM15-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="319" mapping="124" name="8INVM15-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="28" range_end="28" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="289" mapping="125" name="8INVM15-2MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="320" mapping="125" name="8INVM15-2MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="29" range_end="29" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="290" mapping="126" name="2INVM8-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="321" mapping="126" name="2INVM8-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="30" range_end="30" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="291" mapping="127" name="2INVM8-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="322" mapping="127" name="2INVM8-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="31" range_end="31" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="292" mapping="0" name="XE10" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="323" mapping="0" name="XE10" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE10full" phimin="0" phimax="64" priority="0" thresholdval="10" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="8" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="293" mapping="1" name="XE20" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="324" mapping="1" name="XE20" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE20full" phimin="0" phimax="64" priority="0" thresholdval="20" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="9" range_end="9"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="294" mapping="2" name="XE25" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="325" mapping="2" name="XE25" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE25full" phimin="0" phimax="64" priority="0" thresholdval="25" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="10" range_end="10"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="295" mapping="3" name="XE30" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="326" mapping="3" name="XE30" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE30full" phimin="0" phimax="64" priority="0" thresholdval="30" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="11" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="296" mapping="4" name="XE35" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="327" mapping="4" name="XE35" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE35full" phimin="0" phimax="64" priority="0" thresholdval="35" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="12" range_end="12"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="297" mapping="5" name="XE40" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="328" mapping="5" name="XE40" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE40full" phimin="0" phimax="64" priority="0" thresholdval="40" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="13" range_end="13"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="298" mapping="6" name="XE45" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="329" mapping="6" name="XE45" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE45full" phimin="0" phimax="64" priority="0" thresholdval="45" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="14" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="299" mapping="7" name="XE50" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="330" mapping="7" name="XE50" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE50full" phimin="0" phimax="64" priority="0" thresholdval="50" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="15" range_end="15"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="300" mapping="8" name="XE55" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="331" mapping="8" name="XE55" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE55full" phimin="0" phimax="64" priority="0" thresholdval="55" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="8" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="301" mapping="9" name="XE60" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="332" mapping="9" name="XE60" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE60full" phimin="0" phimax="64" priority="0" thresholdval="60" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="9" range_end="9"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="302" mapping="10" name="XE65" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="333" mapping="10" name="XE65" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE65full" phimin="0" phimax="64" priority="0" thresholdval="65" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="10" range_end="10"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="303" mapping="11" name="XE70" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="334" mapping="11" name="XE70" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE70full" phimin="0" phimax="64" priority="0" thresholdval="70" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="11" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="304" mapping="12" name="XE75" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="335" mapping="12" name="XE75" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE75full" phimin="0" phimax="64" priority="0" thresholdval="75" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="12" range_end="12"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="305" mapping="13" name="XE80" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="336" mapping="13" name="XE80" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE80full" phimin="0" phimax="64" priority="0" thresholdval="80" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="13" range_end="13"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="306" mapping="14" name="XE150" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="337" mapping="14" name="XE150" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE150full" phimin="0" phimax="64" priority="0" thresholdval="150" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="14" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="307" mapping="15" name="XE300" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="338" mapping="15" name="XE300" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE300full" phimin="0" phimax="64" priority="0" thresholdval="300" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="15" range_end="15"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="308" mapping="0" name="XS20" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="339" mapping="16" name="gXERHO20" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXERHO20full" phimin="0" phimax="64" priority="0" thresholdval="20" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="340" mapping="17" name="gXERHO30" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXERHO30full" phimin="0" phimax="64" priority="0" thresholdval="30" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="341" mapping="18" name="gXERHO35" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXERHO35full" phimin="0" phimax="64" priority="0" thresholdval="35" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="342" mapping="19" name="gXERHO40" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXERHO40full" phimin="0" phimax="64" priority="0" thresholdval="40" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="343" mapping="20" name="gXERHO45" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXERHO45full" phimin="0" phimax="64" priority="0" thresholdval="45" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="344" mapping="21" name="gXERHO50" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXERHO50full" phimin="0" phimax="64" priority="0" thresholdval="50" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="345" mapping="22" name="gXEPUFIT20" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXEPUFIT20full" phimin="0" phimax="64" priority="0" thresholdval="20" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="346" mapping="23" name="gXEPUFIT50" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXEPUFIT50full" phimin="0" phimax="64" priority="0" thresholdval="50" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="347" mapping="0" name="XS20" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS20full" phimin="0" phimax="64" priority="0" thresholdval="20" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="16" range_end="16"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="309" mapping="1" name="XS30" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="348" mapping="1" name="XS30" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS30full" phimin="0" phimax="64" priority="0" thresholdval="30" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="17" range_end="17"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="310" mapping="2" name="XS40" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="349" mapping="2" name="XS40" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS40full" phimin="0" phimax="64" priority="0" thresholdval="40" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="18" range_end="18"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="311" mapping="3" name="XS45" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="350" mapping="3" name="XS45" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS45full" phimin="0" phimax="64" priority="0" thresholdval="45" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="19" range_end="19"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="312" mapping="4" name="XS50" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="351" mapping="4" name="XS50" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS50full" phimin="0" phimax="64" priority="0" thresholdval="50" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="20" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="313" mapping="5" name="XS55" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="352" mapping="5" name="XS55" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS55full" phimin="0" phimax="64" priority="0" thresholdval="55" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="21" range_end="21"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="314" mapping="6" name="XS60" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="353" mapping="6" name="XS60" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS60full" phimin="0" phimax="64" priority="0" thresholdval="60" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="22" range_end="22"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="315" mapping="7" name="XS65" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="354" mapping="7" name="XS65" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS65full" phimin="0" phimax="64" priority="0" thresholdval="65" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="23" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="316" mapping="0" name="ZB_EM15" type="ZB" input="ctpin" seed="EM15" seed_multi="1" bcdelay="3564" version="1"> + <TriggerThreshold active="1" bitnum="1" id="355" mapping="0" name="ZB_EM15" type="ZB" input="ctpin" seed="EM15" seed_multi="1" bcdelay="3564" version="1"> <Cable connector="CON0" input="SLOT7" name="EM1"> <Signal range_begin="30" range_end="30"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="317" mapping="0" name="ZDC_A" type="ZDC" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="356" mapping="0" name="ZDC_A" type="ZDC" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="ZDC_Afull" phimin="0" phimax="64" priority="0" thresholdval="250" type="ZDC" window="0"/> <Cable connector="CON1" input="SLOT9" name="CTPCAL"> <Signal range_begin="25" range_end="25"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="318" mapping="1" name="ZDC_C" type="ZDC" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="357" mapping="1" name="ZDC_C" type="ZDC" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="ZDC_Cfull" phimin="0" phimax="64" priority="0" thresholdval="250" type="ZDC" window="0"/> <Cable connector="CON1" input="SLOT9" name="CTPCAL"> <Signal range_begin="26" range_end="26"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="319" mapping="2" name="ZDC_AND" type="ZDC" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="358" mapping="2" name="ZDC_AND" type="ZDC" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="ZDC_ANDfull" phimin="0" phimax="64" priority="0" thresholdval="250" type="ZDC" window="0"/> <Cable connector="CON1" input="SLOT9" name="CTPCAL"> <Signal range_begin="27" range_end="27"/> diff --git a/Trigger/TriggerCommon/TriggerMenuXML/data/LVL1config_Physics_pp_v8_lowmu.xml b/Trigger/TriggerCommon/TriggerMenuXML/data/LVL1config_Physics_pp_v8_lowmu.xml index 6d666ee38a8b2b186c98d0ef70e3904e3734ee6e..1500ffa1044bff76b09bbdd846452912f3d7dd40 100644 --- a/Trigger/TriggerCommon/TriggerMenuXML/data/LVL1config_Physics_pp_v8_lowmu.xml +++ b/Trigger/TriggerCommon/TriggerMenuXML/data/LVL1config_Physics_pp_v8_lowmu.xml @@ -2,8 +2,8 @@ <!DOCTYPE LVL1Config SYSTEM "LVL1config.dtd"> <LVL1Config name="Physics_pp_v8_lowmu" ctpVersion="4" l1Version="1"> <!--File is generated by TriggerMenu--> - <!--No. L1 thresholds defined: 319--> - <!--No. L1 items defined: 268--> + <!--No. L1 thresholds defined: 358--> + <!--No. L1 items defined: 263--> <TriggerMenu name="Physics_pp_v8_lowmu" phase="lumi"> <TriggerItem ctpid="0" partition="1" name="L1_EM3" complex_deadtime="0" definition="(EM3[x1]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> <AND> @@ -370,13 +370,6 @@ <InternalTrigger name="BGRP1"/> </AND> </TriggerItem> - <TriggerItem ctpid="59" partition="1" name="L1_2EM10VHI" complex_deadtime="0" definition="(EM10VHI[x2]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> - <AND> - <TriggerCondition multi="2" name="EM10VHI_x2" triggerthreshold="EM10VHI"/> - <InternalTrigger name="BGRP0"/> - <InternalTrigger name="BGRP1"/> - </AND> - </TriggerItem> <TriggerItem ctpid="60" partition="1" name="L1_EM15VHI_2TAU12IM" complex_deadtime="0" definition="(EM15VHI[x1]&HA12IM[x2]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> <AND> <TriggerCondition multi="1" name="EM15VHI_x1" triggerthreshold="EM15VHI"/> @@ -490,14 +483,6 @@ <InternalTrigger name="BGRP1"/> </AND> </TriggerItem> - <TriggerItem ctpid="73" partition="1" name="L1_LFV-EM8I-MU11" complex_deadtime="0" definition="(0INVM10-0DR15-EM8abi-MU10ab[x1]&MU11[x1]&BGRP0&BGRP1)" trigger_type="10000000" monitor="LF:000|HF:000"> - <AND> - <TriggerCondition multi="1" name="0INVM10-0DR15-EM8abi-MU10ab_x1" triggerthreshold="0INVM10-0DR15-EM8abi-MU10ab"/> - <TriggerCondition multi="1" name="MU11_x1" triggerthreshold="MU11"/> - <InternalTrigger name="BGRP0"/> - <InternalTrigger name="BGRP1"/> - </AND> - </TriggerItem> <TriggerItem ctpid="74" partition="1" name="L1_TAU20IM_2J20_XE45" complex_deadtime="0" definition="(HA20IM[x1]&J20[x2]&XE45[x1]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> <AND> <TriggerCondition multi="1" name="HA20IM_x1" triggerthreshold="HA20IM"/> @@ -562,13 +547,6 @@ <InternalTrigger name="BGRP1"/> </AND> </TriggerItem> - <TriggerItem ctpid="82" partition="1" name="L1_LFV-EM12I-MU6" complex_deadtime="0" definition="(0INVM10-0DR15-EM12abi-MU6ab[x1]&BGRP0&BGRP1)" trigger_type="10000000" monitor="LF:000|HF:000"> - <AND> - <TriggerCondition multi="1" name="0INVM10-0DR15-EM12abi-MU6ab_x1" triggerthreshold="0INVM10-0DR15-EM12abi-MU6ab"/> - <InternalTrigger name="BGRP0"/> - <InternalTrigger name="BGRP1"/> - </AND> - </TriggerItem> <TriggerItem ctpid="83" partition="1" name="L1_TAU20IM_2TAU12IM_XE35" complex_deadtime="0" definition="(HA20IM[x1]&HA12IM[x2]&XE35[x1]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> <AND> <TriggerCondition multi="1" name="HA20IM_x1" triggerthreshold="HA20IM"/> @@ -592,20 +570,6 @@ <InternalTrigger name="BGRP1"/> </AND> </TriggerItem> - <TriggerItem ctpid="86" partition="1" name="L1_ZAFB-04DPHI-EM15I" complex_deadtime="0" definition="(60INVM9999-04DPHI32-EM15abhi-FJj15s623ETA49[x1]&BGRP0&BGRP1)" trigger_type="10000000" monitor="LF:000|HF:000"> - <AND> - <TriggerCondition multi="1" name="60INVM9999-04DPHI32-EM15abhi-FJj15s623ETA49_x1" triggerthreshold="60INVM9999-04DPHI32-EM15abhi-FJj15s623ETA49"/> - <InternalTrigger name="BGRP0"/> - <InternalTrigger name="BGRP1"/> - </AND> - </TriggerItem> - <TriggerItem ctpid="87" partition="1" name="L1_ZAFB-25DPHI-EM15I" complex_deadtime="0" definition="(60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49[x1]&BGRP0&BGRP1)" trigger_type="10000000" monitor="LF:000|HF:000"> - <AND> - <TriggerCondition multi="1" name="60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49_x1" triggerthreshold="60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49"/> - <InternalTrigger name="BGRP0"/> - <InternalTrigger name="BGRP1"/> - </AND> - </TriggerItem> <TriggerItem ctpid="88" partition="1" name="L1_MU6_J20" complex_deadtime="0" definition="(MU6[x1]&J20[x1]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> <AND> <TriggerCondition multi="1" name="MU6_x1" triggerthreshold="MU6"/> @@ -735,14 +699,6 @@ <InternalTrigger name="BGRP1"/> </AND> </TriggerItem> - <TriggerItem ctpid="107" partition="1" name="L1_ZAFB-25DPHI-EM18I" complex_deadtime="0" definition="(60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49[x1]&EM18VHI[x1]&BGRP0&BGRP1)" trigger_type="10000000" monitor="LF:000|HF:000"> - <AND> - <TriggerCondition multi="1" name="60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49_x1" triggerthreshold="60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49"/> - <TriggerCondition multi="1" name="EM18VHI_x1" triggerthreshold="EM18VHI"/> - <InternalTrigger name="BGRP0"/> - <InternalTrigger name="BGRP1"/> - </AND> - </TriggerItem> <TriggerItem ctpid="108" partition="1" name="L1_MJJ-500-NFF" complex_deadtime="0" definition="(500INVM9999-J30s6-AJ20s6[x1]&BGRP0&BGRP1)" trigger_type="10000000" monitor="LF:111|HF:000"> <AND> <TriggerCondition multi="1" name="500INVM9999-J30s6-AJ20s6_x1" triggerthreshold="500INVM9999-J30s6-AJ20s6"/> @@ -1064,6 +1020,13 @@ <InternalTrigger name="BGRP1"/> </AND> </TriggerItem> + <TriggerItem ctpid="179" partition="1" name="L1_2EM10VHI" complex_deadtime="0" definition="(EM10VHI[x2]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> + <AND> + <TriggerCondition multi="2" name="EM10VHI_x2" triggerthreshold="EM10VHI"/> + <InternalTrigger name="BGRP0"/> + <InternalTrigger name="BGRP1"/> + </AND> + </TriggerItem> <TriggerItem ctpid="181" partition="1" name="L1_J40.0ETA25_2J15.31ETA49" complex_deadtime="0" definition="(J40.0ETA25[x1]&J15.31ETA49[x2]&BGRP0&BGRP1)" trigger_type="10000100" monitor="LF:000|HF:000"> <AND> <TriggerCondition multi="1" name="J40.0ETA25_x1" triggerthreshold="J40.0ETA25"/> @@ -2077,7 +2040,7 @@ <Prescale ctpid="56" cut="000001" value="1"/> <Prescale ctpid="57" cut="000001" value="1"/> <Prescale ctpid="58" cut="000001" value="1"/> - <Prescale ctpid="59" cut="000001" value="1"/> + <Prescale ctpid="59" cut="-000001" value="-1"/> <Prescale ctpid="60" cut="000001" value="1"/> <Prescale ctpid="61" cut="000001" value="1"/> <Prescale ctpid="62" cut="000001" value="1"/> @@ -2091,7 +2054,7 @@ <Prescale ctpid="70" cut="000001" value="1"/> <Prescale ctpid="71" cut="000001" value="1"/> <Prescale ctpid="72" cut="000001" value="1"/> - <Prescale ctpid="73" cut="000001" value="1"/> + <Prescale ctpid="73" cut="-000001" value="-1"/> <Prescale ctpid="74" cut="000001" value="1"/> <Prescale ctpid="75" cut="000001" value="1"/> <Prescale ctpid="76" cut="000001" value="1"/> @@ -2100,12 +2063,12 @@ <Prescale ctpid="79" cut="000001" value="1"/> <Prescale ctpid="80" cut="000001" value="1"/> <Prescale ctpid="81" cut="000001" value="1"/> - <Prescale ctpid="82" cut="000001" value="1"/> + <Prescale ctpid="82" cut="-000001" value="-1"/> <Prescale ctpid="83" cut="000001" value="1"/> <Prescale ctpid="84" cut="000001" value="1"/> <Prescale ctpid="85" cut="000001" value="1"/> - <Prescale ctpid="86" cut="000001" value="1"/> - <Prescale ctpid="87" cut="000001" value="1"/> + <Prescale ctpid="86" cut="-000001" value="-1"/> + <Prescale ctpid="87" cut="-000001" value="-1"/> <Prescale ctpid="88" cut="000001" value="1"/> <Prescale ctpid="89" cut="000001" value="1"/> <Prescale ctpid="90" cut="000001" value="1"/> @@ -2125,7 +2088,7 @@ <Prescale ctpid="104" cut="000001" value="1"/> <Prescale ctpid="105" cut="000001" value="1"/> <Prescale ctpid="106" cut="000001" value="1"/> - <Prescale ctpid="107" cut="000001" value="1"/> + <Prescale ctpid="107" cut="-000001" value="-1"/> <Prescale ctpid="108" cut="000001" value="1"/> <Prescale ctpid="109" cut="000001" value="1"/> <Prescale ctpid="110" cut="-000001" value="-1"/> @@ -2197,7 +2160,7 @@ <Prescale ctpid="176" cut="000001" value="1"/> <Prescale ctpid="177" cut="-000001" value="-1"/> <Prescale ctpid="178" cut="-000001" value="-1"/> - <Prescale ctpid="179" cut="-000001" value="-1"/> + <Prescale ctpid="179" cut="000001" value="1"/> <Prescale ctpid="180" cut="-000001" value="-1"/> <Prescale ctpid="181" cut="000001" value="1"/> <Prescale ctpid="182" cut="000001" value="1"/> @@ -4131,6 +4094,561 @@ <TriggerCounter name="1ZDC_C" type="CTPIN"> <TriggerCondition name="1ZDC_C" triggerthreshold="ZDC_C" multi="1"/> </TriggerCounter> + <TriggerCounter name="1eEM10VH" type="CTPIN"> + <TriggerCondition name="1eEM10VH" triggerthreshold="eEM10VH" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM10VH" type="CTPIN"> + <TriggerCondition name="2eEM10VH" triggerthreshold="eEM10VH" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM10VH" type="CTPIN"> + <TriggerCondition name="3eEM10VH" triggerthreshold="eEM10VH" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM10VH" type="CTPIN"> + <TriggerCondition name="4eEM10VH" triggerthreshold="eEM10VH" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM10VH" type="CTPIN"> + <TriggerCondition name="5eEM10VH" triggerthreshold="eEM10VH" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM10VH" type="CTPIN"> + <TriggerCondition name="6eEM10VH" triggerthreshold="eEM10VH" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM10VH" type="CTPIN"> + <TriggerCondition name="7eEM10VH" triggerthreshold="eEM10VH" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM15VH" type="CTPIN"> + <TriggerCondition name="1eEM15VH" triggerthreshold="eEM15VH" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM15VH" type="CTPIN"> + <TriggerCondition name="2eEM15VH" triggerthreshold="eEM15VH" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM15VH" type="CTPIN"> + <TriggerCondition name="3eEM15VH" triggerthreshold="eEM15VH" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM15VH" type="CTPIN"> + <TriggerCondition name="4eEM15VH" triggerthreshold="eEM15VH" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM15VH" type="CTPIN"> + <TriggerCondition name="5eEM15VH" triggerthreshold="eEM15VH" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM15VH" type="CTPIN"> + <TriggerCondition name="6eEM15VH" triggerthreshold="eEM15VH" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM15VH" type="CTPIN"> + <TriggerCondition name="7eEM15VH" triggerthreshold="eEM15VH" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM15VHI" type="CTPIN"> + <TriggerCondition name="1eEM15VHI" triggerthreshold="eEM15VHI" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM15VHI" type="CTPIN"> + <TriggerCondition name="2eEM15VHI" triggerthreshold="eEM15VHI" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM15VHI" type="CTPIN"> + <TriggerCondition name="3eEM15VHI" triggerthreshold="eEM15VHI" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM15VHI" type="CTPIN"> + <TriggerCondition name="4eEM15VHI" triggerthreshold="eEM15VHI" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM15VHI" type="CTPIN"> + <TriggerCondition name="5eEM15VHI" triggerthreshold="eEM15VHI" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM15VHI" type="CTPIN"> + <TriggerCondition name="6eEM15VHI" triggerthreshold="eEM15VHI" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM15VHI" type="CTPIN"> + <TriggerCondition name="7eEM15VHI" triggerthreshold="eEM15VHI" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM18VHI" type="CTPIN"> + <TriggerCondition name="1eEM18VHI" triggerthreshold="eEM18VHI" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM18VHI" type="CTPIN"> + <TriggerCondition name="2eEM18VHI" triggerthreshold="eEM18VHI" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM18VHI" type="CTPIN"> + <TriggerCondition name="3eEM18VHI" triggerthreshold="eEM18VHI" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM18VHI" type="CTPIN"> + <TriggerCondition name="4eEM18VHI" triggerthreshold="eEM18VHI" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM18VHI" type="CTPIN"> + <TriggerCondition name="5eEM18VHI" triggerthreshold="eEM18VHI" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM18VHI" type="CTPIN"> + <TriggerCondition name="6eEM18VHI" triggerthreshold="eEM18VHI" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM18VHI" type="CTPIN"> + <TriggerCondition name="7eEM18VHI" triggerthreshold="eEM18VHI" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM20VH" type="CTPIN"> + <TriggerCondition name="1eEM20VH" triggerthreshold="eEM20VH" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM20VH" type="CTPIN"> + <TriggerCondition name="2eEM20VH" triggerthreshold="eEM20VH" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM20VH" type="CTPIN"> + <TriggerCondition name="3eEM20VH" triggerthreshold="eEM20VH" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM20VH" type="CTPIN"> + <TriggerCondition name="4eEM20VH" triggerthreshold="eEM20VH" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM20VH" type="CTPIN"> + <TriggerCondition name="5eEM20VH" triggerthreshold="eEM20VH" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM20VH" type="CTPIN"> + <TriggerCondition name="6eEM20VH" triggerthreshold="eEM20VH" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM20VH" type="CTPIN"> + <TriggerCondition name="7eEM20VH" triggerthreshold="eEM20VH" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM20VHI" type="CTPIN"> + <TriggerCondition name="1eEM20VHI" triggerthreshold="eEM20VHI" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM20VHI" type="CTPIN"> + <TriggerCondition name="2eEM20VHI" triggerthreshold="eEM20VHI" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM20VHI" type="CTPIN"> + <TriggerCondition name="3eEM20VHI" triggerthreshold="eEM20VHI" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM20VHI" type="CTPIN"> + <TriggerCondition name="4eEM20VHI" triggerthreshold="eEM20VHI" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM20VHI" type="CTPIN"> + <TriggerCondition name="5eEM20VHI" triggerthreshold="eEM20VHI" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM20VHI" type="CTPIN"> + <TriggerCondition name="6eEM20VHI" triggerthreshold="eEM20VHI" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM20VHI" type="CTPIN"> + <TriggerCondition name="7eEM20VHI" triggerthreshold="eEM20VHI" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM22" type="CTPIN"> + <TriggerCondition name="1eEM22" triggerthreshold="eEM22" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM22" type="CTPIN"> + <TriggerCondition name="2eEM22" triggerthreshold="eEM22" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM22" type="CTPIN"> + <TriggerCondition name="3eEM22" triggerthreshold="eEM22" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM22" type="CTPIN"> + <TriggerCondition name="4eEM22" triggerthreshold="eEM22" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM22" type="CTPIN"> + <TriggerCondition name="5eEM22" triggerthreshold="eEM22" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM22" type="CTPIN"> + <TriggerCondition name="6eEM22" triggerthreshold="eEM22" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM22" type="CTPIN"> + <TriggerCondition name="7eEM22" triggerthreshold="eEM22" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM22VHI" type="CTPIN"> + <TriggerCondition name="1eEM22VHI" triggerthreshold="eEM22VHI" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM22VHI" type="CTPIN"> + <TriggerCondition name="2eEM22VHI" triggerthreshold="eEM22VHI" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM22VHI" type="CTPIN"> + <TriggerCondition name="3eEM22VHI" triggerthreshold="eEM22VHI" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM22VHI" type="CTPIN"> + <TriggerCondition name="4eEM22VHI" triggerthreshold="eEM22VHI" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM22VHI" type="CTPIN"> + <TriggerCondition name="5eEM22VHI" triggerthreshold="eEM22VHI" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM22VHI" type="CTPIN"> + <TriggerCondition name="6eEM22VHI" triggerthreshold="eEM22VHI" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM22VHI" type="CTPIN"> + <TriggerCondition name="7eEM22VHI" triggerthreshold="eEM22VHI" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM7" type="CTPIN"> + <TriggerCondition name="1eEM7" triggerthreshold="eEM7" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM7" type="CTPIN"> + <TriggerCondition name="2eEM7" triggerthreshold="eEM7" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM7" type="CTPIN"> + <TriggerCondition name="3eEM7" triggerthreshold="eEM7" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM7" type="CTPIN"> + <TriggerCondition name="4eEM7" triggerthreshold="eEM7" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM7" type="CTPIN"> + <TriggerCondition name="5eEM7" triggerthreshold="eEM7" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM7" type="CTPIN"> + <TriggerCondition name="6eEM7" triggerthreshold="eEM7" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM7" type="CTPIN"> + <TriggerCondition name="7eEM7" triggerthreshold="eEM7" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eEM8VH" type="CTPIN"> + <TriggerCondition name="1eEM8VH" triggerthreshold="eEM8VH" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eEM8VH" type="CTPIN"> + <TriggerCondition name="2eEM8VH" triggerthreshold="eEM8VH" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eEM8VH" type="CTPIN"> + <TriggerCondition name="3eEM8VH" triggerthreshold="eEM8VH" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eEM8VH" type="CTPIN"> + <TriggerCondition name="4eEM8VH" triggerthreshold="eEM8VH" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eEM8VH" type="CTPIN"> + <TriggerCondition name="5eEM8VH" triggerthreshold="eEM8VH" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eEM8VH" type="CTPIN"> + <TriggerCondition name="6eEM8VH" triggerthreshold="eEM8VH" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eEM8VH" type="CTPIN"> + <TriggerCondition name="7eEM8VH" triggerthreshold="eEM8VH" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU100" type="CTPIN"> + <TriggerCondition name="1eTAU100" triggerthreshold="eTAU100" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU100" type="CTPIN"> + <TriggerCondition name="2eTAU100" triggerthreshold="eTAU100" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU100" type="CTPIN"> + <TriggerCondition name="3eTAU100" triggerthreshold="eTAU100" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU100" type="CTPIN"> + <TriggerCondition name="4eTAU100" triggerthreshold="eTAU100" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU100" type="CTPIN"> + <TriggerCondition name="5eTAU100" triggerthreshold="eTAU100" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU100" type="CTPIN"> + <TriggerCondition name="6eTAU100" triggerthreshold="eTAU100" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU100" type="CTPIN"> + <TriggerCondition name="7eTAU100" triggerthreshold="eTAU100" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU12" type="CTPIN"> + <TriggerCondition name="1eTAU12" triggerthreshold="eTAU12" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU12" type="CTPIN"> + <TriggerCondition name="2eTAU12" triggerthreshold="eTAU12" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU12" type="CTPIN"> + <TriggerCondition name="3eTAU12" triggerthreshold="eTAU12" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU12" type="CTPIN"> + <TriggerCondition name="4eTAU12" triggerthreshold="eTAU12" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU12" type="CTPIN"> + <TriggerCondition name="5eTAU12" triggerthreshold="eTAU12" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU12" type="CTPIN"> + <TriggerCondition name="6eTAU12" triggerthreshold="eTAU12" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU12" type="CTPIN"> + <TriggerCondition name="7eTAU12" triggerthreshold="eTAU12" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU12IM" type="CTPIN"> + <TriggerCondition name="1eTAU12IM" triggerthreshold="eTAU12IM" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU12IM" type="CTPIN"> + <TriggerCondition name="2eTAU12IM" triggerthreshold="eTAU12IM" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU12IM" type="CTPIN"> + <TriggerCondition name="3eTAU12IM" triggerthreshold="eTAU12IM" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU12IM" type="CTPIN"> + <TriggerCondition name="4eTAU12IM" triggerthreshold="eTAU12IM" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU12IM" type="CTPIN"> + <TriggerCondition name="5eTAU12IM" triggerthreshold="eTAU12IM" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU12IM" type="CTPIN"> + <TriggerCondition name="6eTAU12IM" triggerthreshold="eTAU12IM" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU12IM" type="CTPIN"> + <TriggerCondition name="7eTAU12IM" triggerthreshold="eTAU12IM" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU20" type="CTPIN"> + <TriggerCondition name="1eTAU20" triggerthreshold="eTAU20" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU20" type="CTPIN"> + <TriggerCondition name="2eTAU20" triggerthreshold="eTAU20" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU20" type="CTPIN"> + <TriggerCondition name="3eTAU20" triggerthreshold="eTAU20" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU20" type="CTPIN"> + <TriggerCondition name="4eTAU20" triggerthreshold="eTAU20" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU20" type="CTPIN"> + <TriggerCondition name="5eTAU20" triggerthreshold="eTAU20" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU20" type="CTPIN"> + <TriggerCondition name="6eTAU20" triggerthreshold="eTAU20" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU20" type="CTPIN"> + <TriggerCondition name="7eTAU20" triggerthreshold="eTAU20" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU20IM" type="CTPIN"> + <TriggerCondition name="1eTAU20IM" triggerthreshold="eTAU20IM" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU20IM" type="CTPIN"> + <TriggerCondition name="2eTAU20IM" triggerthreshold="eTAU20IM" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU20IM" type="CTPIN"> + <TriggerCondition name="3eTAU20IM" triggerthreshold="eTAU20IM" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU20IM" type="CTPIN"> + <TriggerCondition name="4eTAU20IM" triggerthreshold="eTAU20IM" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU20IM" type="CTPIN"> + <TriggerCondition name="5eTAU20IM" triggerthreshold="eTAU20IM" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU20IM" type="CTPIN"> + <TriggerCondition name="6eTAU20IM" triggerthreshold="eTAU20IM" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU20IM" type="CTPIN"> + <TriggerCondition name="7eTAU20IM" triggerthreshold="eTAU20IM" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU25IM" type="CTPIN"> + <TriggerCondition name="1eTAU25IM" triggerthreshold="eTAU25IM" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU25IM" type="CTPIN"> + <TriggerCondition name="2eTAU25IM" triggerthreshold="eTAU25IM" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU25IM" type="CTPIN"> + <TriggerCondition name="3eTAU25IM" triggerthreshold="eTAU25IM" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU25IM" type="CTPIN"> + <TriggerCondition name="4eTAU25IM" triggerthreshold="eTAU25IM" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU25IM" type="CTPIN"> + <TriggerCondition name="5eTAU25IM" triggerthreshold="eTAU25IM" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU25IM" type="CTPIN"> + <TriggerCondition name="6eTAU25IM" triggerthreshold="eTAU25IM" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU25IM" type="CTPIN"> + <TriggerCondition name="7eTAU25IM" triggerthreshold="eTAU25IM" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU40" type="CTPIN"> + <TriggerCondition name="1eTAU40" triggerthreshold="eTAU40" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU40" type="CTPIN"> + <TriggerCondition name="2eTAU40" triggerthreshold="eTAU40" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU40" type="CTPIN"> + <TriggerCondition name="3eTAU40" triggerthreshold="eTAU40" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU40" type="CTPIN"> + <TriggerCondition name="4eTAU40" triggerthreshold="eTAU40" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU40" type="CTPIN"> + <TriggerCondition name="5eTAU40" triggerthreshold="eTAU40" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU40" type="CTPIN"> + <TriggerCondition name="6eTAU40" triggerthreshold="eTAU40" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU40" type="CTPIN"> + <TriggerCondition name="7eTAU40" triggerthreshold="eTAU40" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1eTAU60" type="CTPIN"> + <TriggerCondition name="1eTAU60" triggerthreshold="eTAU60" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2eTAU60" type="CTPIN"> + <TriggerCondition name="2eTAU60" triggerthreshold="eTAU60" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3eTAU60" type="CTPIN"> + <TriggerCondition name="3eTAU60" triggerthreshold="eTAU60" multi="3"/> + </TriggerCounter> + <TriggerCounter name="4eTAU60" type="CTPIN"> + <TriggerCondition name="4eTAU60" triggerthreshold="eTAU60" multi="4"/> + </TriggerCounter> + <TriggerCounter name="5eTAU60" type="CTPIN"> + <TriggerCondition name="5eTAU60" triggerthreshold="eTAU60" multi="5"/> + </TriggerCounter> + <TriggerCounter name="6eTAU60" type="CTPIN"> + <TriggerCondition name="6eTAU60" triggerthreshold="eTAU60" multi="6"/> + </TriggerCounter> + <TriggerCounter name="7eTAU60" type="CTPIN"> + <TriggerCondition name="7eTAU60" triggerthreshold="eTAU60" multi="7"/> + </TriggerCounter> + <TriggerCounter name="1gXEPUFIT20" type="CTPIN"> + <TriggerCondition name="1gXEPUFIT20" triggerthreshold="gXEPUFIT20" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXEPUFIT50" type="CTPIN"> + <TriggerCondition name="1gXEPUFIT50" triggerthreshold="gXEPUFIT50" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXERHO20" type="CTPIN"> + <TriggerCondition name="1gXERHO20" triggerthreshold="gXERHO20" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXERHO30" type="CTPIN"> + <TriggerCondition name="1gXERHO30" triggerthreshold="gXERHO30" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXERHO35" type="CTPIN"> + <TriggerCondition name="1gXERHO35" triggerthreshold="gXERHO35" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXERHO40" type="CTPIN"> + <TriggerCondition name="1gXERHO40" triggerthreshold="gXERHO40" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXERHO45" type="CTPIN"> + <TriggerCondition name="1gXERHO45" triggerthreshold="gXERHO45" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1gXERHO50" type="CTPIN"> + <TriggerCondition name="1gXERHO50" triggerthreshold="gXERHO50" multi="1"/> + </TriggerCounter> + <TriggerCounter name="1jJ100" type="CTPIN"> + <TriggerCondition name="1jJ100" triggerthreshold="jJ100" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ100" type="CTPIN"> + <TriggerCondition name="2jJ100" triggerthreshold="jJ100" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ100" type="CTPIN"> + <TriggerCondition name="3jJ100" triggerthreshold="jJ100" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ12" type="CTPIN"> + <TriggerCondition name="1jJ12" triggerthreshold="jJ12" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ12" type="CTPIN"> + <TriggerCondition name="2jJ12" triggerthreshold="jJ12" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ12" type="CTPIN"> + <TriggerCondition name="3jJ12" triggerthreshold="jJ12" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ12.0ETA23" type="CTPIN"> + <TriggerCondition name="1jJ12.0ETA23" triggerthreshold="jJ12.0ETA23" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ12.0ETA23" type="CTPIN"> + <TriggerCondition name="2jJ12.0ETA23" triggerthreshold="jJ12.0ETA23" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ12.0ETA23" type="CTPIN"> + <TriggerCondition name="3jJ12.0ETA23" triggerthreshold="jJ12.0ETA23" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ15" type="CTPIN"> + <TriggerCondition name="1jJ15" triggerthreshold="jJ15" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ15" type="CTPIN"> + <TriggerCondition name="2jJ15" triggerthreshold="jJ15" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ15" type="CTPIN"> + <TriggerCondition name="3jJ15" triggerthreshold="jJ15" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ15.0ETA25" type="CTPIN"> + <TriggerCondition name="1jJ15.0ETA25" triggerthreshold="jJ15.0ETA25" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ15.0ETA25" type="CTPIN"> + <TriggerCondition name="2jJ15.0ETA25" triggerthreshold="jJ15.0ETA25" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ15.0ETA25" type="CTPIN"> + <TriggerCondition name="3jJ15.0ETA25" triggerthreshold="jJ15.0ETA25" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ15.31ETA49" type="CTPIN"> + <TriggerCondition name="1jJ15.31ETA49" triggerthreshold="jJ15.31ETA49" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ15.31ETA49" type="CTPIN"> + <TriggerCondition name="2jJ15.31ETA49" triggerthreshold="jJ15.31ETA49" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ15.31ETA49" type="CTPIN"> + <TriggerCondition name="3jJ15.31ETA49" triggerthreshold="jJ15.31ETA49" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ20" type="CTPIN"> + <TriggerCondition name="1jJ20" triggerthreshold="jJ20" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ20" type="CTPIN"> + <TriggerCondition name="2jJ20" triggerthreshold="jJ20" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ20" type="CTPIN"> + <TriggerCondition name="3jJ20" triggerthreshold="jJ20" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ20.31ETA49" type="CTPIN"> + <TriggerCondition name="1jJ20.31ETA49" triggerthreshold="jJ20.31ETA49" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ20.31ETA49" type="CTPIN"> + <TriggerCondition name="2jJ20.31ETA49" triggerthreshold="jJ20.31ETA49" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ20.31ETA49" type="CTPIN"> + <TriggerCondition name="3jJ20.31ETA49" triggerthreshold="jJ20.31ETA49" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ25" type="CTPIN"> + <TriggerCondition name="1jJ25" triggerthreshold="jJ25" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ25" type="CTPIN"> + <TriggerCondition name="2jJ25" triggerthreshold="jJ25" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ25" type="CTPIN"> + <TriggerCondition name="3jJ25" triggerthreshold="jJ25" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ25.0ETA23" type="CTPIN"> + <TriggerCondition name="1jJ25.0ETA23" triggerthreshold="jJ25.0ETA23" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ25.0ETA23" type="CTPIN"> + <TriggerCondition name="2jJ25.0ETA23" triggerthreshold="jJ25.0ETA23" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ25.0ETA23" type="CTPIN"> + <TriggerCondition name="3jJ25.0ETA23" triggerthreshold="jJ25.0ETA23" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ30" type="CTPIN"> + <TriggerCondition name="1jJ30" triggerthreshold="jJ30" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ30" type="CTPIN"> + <TriggerCondition name="2jJ30" triggerthreshold="jJ30" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ30" type="CTPIN"> + <TriggerCondition name="3jJ30" triggerthreshold="jJ30" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ35.0ETA23" type="CTPIN"> + <TriggerCondition name="1jJ35.0ETA23" triggerthreshold="jJ35.0ETA23" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ35.0ETA23" type="CTPIN"> + <TriggerCondition name="2jJ35.0ETA23" triggerthreshold="jJ35.0ETA23" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ35.0ETA23" type="CTPIN"> + <TriggerCondition name="3jJ35.0ETA23" triggerthreshold="jJ35.0ETA23" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ40" type="CTPIN"> + <TriggerCondition name="1jJ40" triggerthreshold="jJ40" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ40" type="CTPIN"> + <TriggerCondition name="2jJ40" triggerthreshold="jJ40" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ40" type="CTPIN"> + <TriggerCondition name="3jJ40" triggerthreshold="jJ40" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ40.0ETA25" type="CTPIN"> + <TriggerCondition name="1jJ40.0ETA25" triggerthreshold="jJ40.0ETA25" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ40.0ETA25" type="CTPIN"> + <TriggerCondition name="2jJ40.0ETA25" triggerthreshold="jJ40.0ETA25" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ40.0ETA25" type="CTPIN"> + <TriggerCondition name="3jJ40.0ETA25" triggerthreshold="jJ40.0ETA25" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ50" type="CTPIN"> + <TriggerCondition name="1jJ50" triggerthreshold="jJ50" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ50" type="CTPIN"> + <TriggerCondition name="2jJ50" triggerthreshold="jJ50" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ50" type="CTPIN"> + <TriggerCondition name="3jJ50" triggerthreshold="jJ50" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ75.31ETA49" type="CTPIN"> + <TriggerCondition name="1jJ75.31ETA49" triggerthreshold="jJ75.31ETA49" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ75.31ETA49" type="CTPIN"> + <TriggerCondition name="2jJ75.31ETA49" triggerthreshold="jJ75.31ETA49" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ75.31ETA49" type="CTPIN"> + <TriggerCondition name="3jJ75.31ETA49" triggerthreshold="jJ75.31ETA49" multi="3"/> + </TriggerCounter> + <TriggerCounter name="1jJ85" type="CTPIN"> + <TriggerCondition name="1jJ85" triggerthreshold="jJ85" multi="1"/> + </TriggerCounter> + <TriggerCounter name="2jJ85" type="CTPIN"> + <TriggerCondition name="2jJ85" triggerthreshold="jJ85" multi="2"/> + </TriggerCounter> + <TriggerCounter name="3jJ85" type="CTPIN"> + <TriggerCondition name="3jJ85" triggerthreshold="jJ85" multi="3"/> + </TriggerCounter> </TriggerCounterList> <TriggerThresholdList> <TriggerThreshold active="1" bitnum="1" id="1" mapping="2" name="ALFA_B7R1L" type="ALFA" input="ctpcore" version="1"> @@ -4659,91 +5177,267 @@ <Signal range_begin="21" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="66" mapping="0" name="J12" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="66" mapping="16" name="eEM7" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eEM7full" phimin="0" phimax="64" priority="1" thresholdval="7" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="67" mapping="17" name="eEM22" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eEM22full" phimin="0" phimax="64" priority="1" thresholdval="22" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="68" mapping="18" name="eEM8VH" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="1" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-18" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="8" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-18" etamax="-15" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="7" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="5" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-11" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="6" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-11" etamax="-8" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="7" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-8" etamax="0" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="8" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="8" etamax="11" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="7" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="11" etamax="14" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="6" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="5" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="18" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="7" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="18" etamax="25" had_isolation="63" had_veto="99" isobits="00001" name="eEM8VHfull" phimin="0" phimax="64" priority="2" thresholdval="8" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="69" mapping="19" name="eEM10VH" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="1" thresholdval="11" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-18" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="10" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-18" etamax="-15" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="7" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-11" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="8" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-11" etamax="-8" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-8" etamax="0" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="11" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="8" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="11" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="8" etamax="11" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="11" etamax="14" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="8" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="7" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="18" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="9" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="18" etamax="25" had_isolation="63" had_veto="99" isobits="00001" name="eEM10VHfull" phimin="0" phimax="64" priority="2" thresholdval="10" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="70" mapping="20" name="eEM15VH" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="1" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-17" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-17" etamax="-15" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="13" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-12" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="14" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-12" etamax="-9" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-9" etamax="-7" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-7" etamax="0" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="7" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="7" etamax="9" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="9" etamax="12" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="12" etamax="14" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="14" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="13" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="17" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="17" etamax="25" had_isolation="63" had_veto="99" isobits="00001" name="eEM15VHfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="71" mapping="21" name="eEM20VH" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="1" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-17" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-17" etamax="-15" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-13" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="18" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-13" etamax="-11" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-11" etamax="-8" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-8" etamax="-7" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-7" etamax="0" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="7" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="7" etamax="8" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="8" etamax="11" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="11" etamax="13" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="13" etamax="14" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="18" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="17" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="17" etamax="25" had_isolation="63" had_veto="99" isobits="00001" name="eEM20VHfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="72" mapping="22" name="eEM15VHI" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="1" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-17" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-17" etamax="-15" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="13" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-12" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="14" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-12" etamax="-9" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-9" etamax="-7" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-7" etamax="0" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="7" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="7" etamax="9" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="9" etamax="12" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="12" etamax="14" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="14" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="13" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="17" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="17" etamax="25" had_isolation="63" had_veto="99" isobits="00100" name="eEM15VHIfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="73" mapping="23" name="eEM18VHI" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="1" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-17" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-17" etamax="-15" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-13" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-13" etamax="-11" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-11" etamax="-8" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="18" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-8" etamax="-7" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-7" etamax="0" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="7" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="7" etamax="8" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="8" etamax="11" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="18" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="11" etamax="13" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="13" etamax="14" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="16" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="15" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="17" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="17" etamax="25" had_isolation="63" had_veto="99" isobits="00100" name="eEM18VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="74" mapping="24" name="eEM20VHI" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="1" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-17" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-17" etamax="-15" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-13" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="18" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-13" etamax="-11" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-11" etamax="-8" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-8" etamax="-7" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-7" etamax="0" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="7" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="7" etamax="8" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="8" etamax="11" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="11" etamax="13" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="13" etamax="14" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="18" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="17" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="17" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="17" etamax="25" had_isolation="63" had_veto="99" isobits="00100" name="eEM20VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="75" mapping="25" name="eEM22VHI" type="EM" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="1" thresholdval="24" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="-17" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="23" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-17" etamax="-15" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-15" etamax="-14" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-14" etamax="-13" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-13" etamax="-11" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-11" etamax="-8" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-8" etamax="-7" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="23" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="-7" etamax="0" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="24" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="0" etamax="7" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="24" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="7" etamax="8" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="23" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="8" etamax="11" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="22" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="11" etamax="13" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="13" etamax="14" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="20" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="14" etamax="15" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="19" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="15" etamax="17" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="21" type="EM" window="0"/> + <TriggerThresholdValue em_isolation="63" etamin="17" etamax="25" had_isolation="63" had_veto="99" isobits="00100" name="eEM22VHIfull" phimin="0" phimax="64" priority="2" thresholdval="23" type="EM" window="0"/> + <Cable connector="CON1" input="SLOT7" name="EM2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="76" mapping="0" name="J12" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J12full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J12full" phimin="0" phimax="64" priority="1" thresholdval="12" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="0" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="67" mapping="1" name="J12.0ETA23" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="77" mapping="1" name="J12.0ETA23" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J12.0ETA23full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-23" etamax="23" had_isolation="63" had_veto="63" name="J12.0ETA23full" phimin="0" phimax="64" priority="1" thresholdval="12" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="3" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="68" mapping="2" name="J15" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="78" mapping="2" name="J15" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J15full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J15full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="6" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="69" mapping="3" name="J15.0ETA25" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="79" mapping="3" name="J15.0ETA25" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J15.0ETA25full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="25" had_isolation="63" had_veto="63" name="J15.0ETA25full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="9" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="70" mapping="4" name="J20" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="80" mapping="4" name="J20" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J20full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J20full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="12" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="71" mapping="5" name="J25" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="81" mapping="5" name="J25" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J25full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J25full" phimin="0" phimax="64" priority="1" thresholdval="25" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="15" range_end="17"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="72" mapping="6" name="J25.0ETA23" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="82" mapping="6" name="J25.0ETA23" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J25.0ETA23full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-23" etamax="23" had_isolation="63" had_veto="63" name="J25.0ETA23full" phimin="0" phimax="64" priority="1" thresholdval="25" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="18" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="73" mapping="7" name="J30" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="83" mapping="7" name="J30" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J30full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J30full" phimin="0" phimax="64" priority="1" thresholdval="30" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="21" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="74" mapping="8" name="J20.0ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="84" mapping="8" name="J20.0ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J20.0ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J20.0ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="24" range_end="26"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="75" mapping="9" name="J30.0ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="85" mapping="9" name="J30.0ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J30.0ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J30.0ETA49full" phimin="0" phimax="64" priority="1" thresholdval="30" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON0" input="SLOT8" name="JET1"> <Signal range_begin="27" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="76" mapping="10" name="J35.0ETA23" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="86" mapping="10" name="J35.0ETA23" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J35.0ETA23full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-23" etamax="23" had_isolation="63" had_veto="63" name="J35.0ETA23full" phimin="0" phimax="64" priority="1" thresholdval="35" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> <Signal range_begin="0" range_end="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="77" mapping="11" name="J40.0ETA25" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="87" mapping="11" name="J40.0ETA25" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J40.0ETA25full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="25" had_isolation="63" had_veto="63" name="J40.0ETA25full" phimin="0" phimax="64" priority="1" thresholdval="40" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> <Signal range_begin="2" range_end="3"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="78" mapping="12" name="J20.28ETA31" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="88" mapping="12" name="J20.28ETA31" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J20.28ETA31full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="-28" had_isolation="63" had_veto="63" name="J20.28ETA31full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="28" etamax="31" had_isolation="63" had_veto="63" name="J20.28ETA31full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> @@ -4751,88 +5445,186 @@ <Signal range_begin="4" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="79" mapping="13" name="J40" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="89" mapping="13" name="jJ12.0ETA23" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ12.0ETA23full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-23" etamax="23" had_isolation="63" had_veto="63" name="jJ12.0ETA23full" phimin="0" phimax="64" priority="1" thresholdval="12" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="6" range_end="7"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="90" mapping="14" name="jJ15.0ETA25" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ15.0ETA25full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="25" had_isolation="63" had_veto="63" name="jJ15.0ETA25full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="8" range_end="9"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="91" mapping="15" name="jJ25.0ETA23" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ25.0ETA23full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-23" etamax="23" had_isolation="63" had_veto="63" name="jJ25.0ETA23full" phimin="0" phimax="64" priority="1" thresholdval="25" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="10" range_end="11"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="92" mapping="16" name="jJ35.0ETA23" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ35.0ETA23full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-23" etamax="23" had_isolation="63" had_veto="63" name="jJ35.0ETA23full" phimin="0" phimax="64" priority="1" thresholdval="35" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="12" range_end="13"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="93" mapping="17" name="jJ40.0ETA25" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ40.0ETA25full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-25" etamax="25" had_isolation="63" had_veto="63" name="jJ40.0ETA25full" phimin="0" phimax="64" priority="1" thresholdval="40" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="14" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="94" mapping="18" name="J40" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J40full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J40full" phimin="0" phimax="64" priority="1" thresholdval="40" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="6" range_end="7"/> + <Signal range_begin="16" range_end="17"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="80" mapping="14" name="J50" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="95" mapping="19" name="J50" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J50full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J50full" phimin="0" phimax="64" priority="1" thresholdval="50" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="8" range_end="9"/> + <Signal range_begin="18" range_end="19"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="81" mapping="15" name="J75" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="96" mapping="20" name="J75" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J75full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J75full" phimin="0" phimax="64" priority="1" thresholdval="75" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="10" range_end="11"/> + <Signal range_begin="20" range_end="21"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="82" mapping="16" name="J85" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="97" mapping="21" name="J85" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J85full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J85full" phimin="0" phimax="64" priority="1" thresholdval="85" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="12" range_end="13"/> + <Signal range_begin="22" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="83" mapping="17" name="J100" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="98" mapping="22" name="J100" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J100full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J100full" phimin="0" phimax="64" priority="1" thresholdval="100" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="14" range_end="15"/> + <Signal range_begin="24" range_end="25"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="84" mapping="18" name="J45.0ETA20" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="99" mapping="23" name="J45.0ETA20" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J45.0ETA20full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-20" etamax="20" had_isolation="63" had_veto="63" name="J45.0ETA20full" phimin="0" phimax="64" priority="1" thresholdval="45" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="16" range_end="17"/> + <Signal range_begin="26" range_end="27"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="85" mapping="19" name="J120" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="100" mapping="24" name="J120" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J120full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="J120full" phimin="0" phimax="64" priority="1" thresholdval="120" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="18" range_end="19"/> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="101" mapping="25" name="jJ12" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ12full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ12full" phimin="0" phimax="64" priority="1" thresholdval="12" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="102" mapping="26" name="jJ15" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ15full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ15full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="103" mapping="27" name="jJ20" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ20full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ20full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="104" mapping="28" name="jJ25" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ25full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ25full" phimin="0" phimax="64" priority="1" thresholdval="25" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="105" mapping="29" name="jJ30" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ30full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ30full" phimin="0" phimax="64" priority="1" thresholdval="30" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="106" mapping="30" name="jJ40" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ40full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ40full" phimin="0" phimax="64" priority="1" thresholdval="40" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="107" mapping="31" name="jJ50" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ50full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ50full" phimin="0" phimax="64" priority="1" thresholdval="50" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="86" mapping="20" name="J15.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="108" mapping="32" name="jJ85" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ85full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ85full" phimin="0" phimax="64" priority="1" thresholdval="85" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="109" mapping="33" name="jJ100" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ100full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-31" etamax="31" had_isolation="63" had_veto="63" name="jJ100full" phimin="0" phimax="64" priority="1" thresholdval="100" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="110" mapping="34" name="J15.31ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J15.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="J15.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="J15.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="20" range_end="21"/> + <Signal range_begin="28" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="87" mapping="21" name="J20.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="111" mapping="35" name="J20.31ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J20.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="J20.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="J20.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="22" range_end="23"/> + <Signal range_begin="28" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="88" mapping="22" name="J30.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="112" mapping="36" name="J30.31ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J30.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="J30.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="30" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="J30.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="30" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="24" range_end="25"/> + <Signal range_begin="28" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="89" mapping="23" name="J50.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="113" mapping="37" name="J50.31ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J50.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="J50.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="50" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="J50.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="50" type="JET" window="8" windowSize="LARGE"/> <Cable connector="CON1" input="SLOT8" name="JET2"> - <Signal range_begin="26" range_end="27"/> + <Signal range_begin="28" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="90" mapping="24" name="J75.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="114" mapping="38" name="J75.31ETA49" type="JET" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="J75.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="J75.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="75" type="JET" window="8" windowSize="LARGE"/> <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="J75.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="75" type="JET" window="8" windowSize="LARGE"/> @@ -4840,19 +5632,43 @@ <Signal range_begin="28" range_end="29"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="91" mapping="0" name="LUCID_A" type="LUCID" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="2" id="115" mapping="39" name="jJ15.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ15.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="jJ15.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="jJ15.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="15" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="116" mapping="40" name="jJ20.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ20.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="jJ20.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="jJ20.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="2" id="117" mapping="41" name="jJ75.31ETA49" type="JET" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="jJ75.31ETA49full" phimin="0" phimax="64" priority="0" thresholdval="1023" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-31" had_isolation="63" had_veto="63" name="jJ75.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="75" type="JET" window="8" windowSize="LARGE"/> + <TriggerThresholdValue em_isolation="63" etamin="31" etamax="49" had_isolation="63" had_veto="63" name="jJ75.31ETA49full" phimin="0" phimax="64" priority="1" thresholdval="75" type="JET" window="8" windowSize="LARGE"/> + <Cable connector="CON1" input="SLOT8" name="JET2"> + <Signal range_begin="28" range_end="29"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="118" mapping="0" name="LUCID_A" type="LUCID" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="LUCID_Afull" phimin="0" phimax="64" priority="0" thresholdval="650" type="LUCID" window="0"/> <Cable connector="CON1" input="SLOT9" name="CTPCAL"> <Signal range_begin="19" range_end="19"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="92" mapping="1" name="LUCID_C" type="LUCID" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="119" mapping="1" name="LUCID_C" type="LUCID" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="LUCID_Cfull" phimin="0" phimax="64" priority="0" thresholdval="650" type="LUCID" window="0"/> <Cable connector="CON1" input="SLOT9" name="CTPCAL"> <Signal range_begin="20" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="93" mapping="0" name="MBTS_A" type="MBTS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="120" mapping="0" name="MBTS_A" type="MBTS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A0full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A10full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A11full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> @@ -4873,7 +5689,7 @@ <Signal range_begin="16" range_end="18"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="94" mapping="1" name="MBTS_C" type="MBTS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="121" mapping="1" name="MBTS_C" type="MBTS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C0full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C10full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C11full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> @@ -4894,457 +5710,505 @@ <Signal range_begin="16" range_end="18"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="95" mapping="0" name="MBTS_A0" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="122" mapping="0" name="MBTS_A0" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A0full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="0" range_end="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="96" mapping="1" name="MBTS_A1" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="123" mapping="1" name="MBTS_A1" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A1full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="1" range_end="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="97" mapping="2" name="MBTS_A2" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="124" mapping="2" name="MBTS_A2" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A2full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="2" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="98" mapping="3" name="MBTS_A3" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="125" mapping="3" name="MBTS_A3" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A3full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="3" range_end="3"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="99" mapping="4" name="MBTS_A4" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="126" mapping="4" name="MBTS_A4" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A4full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="4" range_end="4"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="100" mapping="5" name="MBTS_A5" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="127" mapping="5" name="MBTS_A5" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A5full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="5" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="101" mapping="6" name="MBTS_A6" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="128" mapping="6" name="MBTS_A6" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A6full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="6" range_end="6"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="102" mapping="7" name="MBTS_A7" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="129" mapping="7" name="MBTS_A7" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A7full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="7" range_end="7"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="103" mapping="8" name="MBTS_A8" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="130" mapping="8" name="MBTS_A8" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A8full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="8" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="104" mapping="9" name="MBTS_A10" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="131" mapping="9" name="MBTS_A10" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A10full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="9" range_end="9"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="105" mapping="10" name="MBTS_A12" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="132" mapping="10" name="MBTS_A12" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A12full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="10" range_end="10"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="106" mapping="11" name="MBTS_A14" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="133" mapping="11" name="MBTS_A14" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A14full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="11" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="107" mapping="12" name="MBTS_A9" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="134" mapping="12" name="MBTS_A9" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A9full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="12" range_end="12"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="108" mapping="13" name="MBTS_A11" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="135" mapping="13" name="MBTS_A11" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A11full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="13" range_end="13"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="109" mapping="14" name="MBTS_A13" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="136" mapping="14" name="MBTS_A13" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A13full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="14" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="110" mapping="15" name="MBTS_A15" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="137" mapping="15" name="MBTS_A15" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_A15full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="15" range_end="15"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="111" mapping="16" name="MBTS_C0" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="138" mapping="16" name="MBTS_C0" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C0full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="0" range_end="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="112" mapping="17" name="MBTS_C1" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="139" mapping="17" name="MBTS_C1" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C1full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="1" range_end="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="113" mapping="18" name="MBTS_C2" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="140" mapping="18" name="MBTS_C2" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C2full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="2" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="114" mapping="19" name="MBTS_C3" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="141" mapping="19" name="MBTS_C3" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C3full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="3" range_end="3"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="115" mapping="20" name="MBTS_C4" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="142" mapping="20" name="MBTS_C4" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C4full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="4" range_end="4"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="116" mapping="21" name="MBTS_C5" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="143" mapping="21" name="MBTS_C5" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C5full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="5" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="117" mapping="22" name="MBTS_C6" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="144" mapping="22" name="MBTS_C6" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C6full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="6" range_end="6"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="118" mapping="23" name="MBTS_C7" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="145" mapping="23" name="MBTS_C7" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C7full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="7" range_end="7"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="119" mapping="24" name="MBTS_C8" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="146" mapping="24" name="MBTS_C8" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C8full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="8" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="120" mapping="25" name="MBTS_C10" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="147" mapping="25" name="MBTS_C10" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C10full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="9" range_end="9"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="121" mapping="26" name="MBTS_C12" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="148" mapping="26" name="MBTS_C12" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C12full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="10" range_end="10"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="122" mapping="27" name="MBTS_C14" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="149" mapping="27" name="MBTS_C14" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C14full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="11" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="123" mapping="28" name="MBTS_C11" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="150" mapping="28" name="MBTS_C11" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C11full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="12" range_end="12"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="124" mapping="29" name="MBTS_C13" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="151" mapping="29" name="MBTS_C13" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C13full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="13" range_end="13"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="125" mapping="30" name="MBTS_C9" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="152" mapping="30" name="MBTS_C9" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C9full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="14" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="126" mapping="31" name="MBTS_C15" type="MBTSSI" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="153" mapping="31" name="MBTS_C15" type="MBTSSI" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MBTS_C15full" phimin="0" phimax="64" priority="0" thresholdval="100" type="MBTSSI" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="15" range_end="15"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="127" mapping="0" name="MU4" type="MUON" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="154" mapping="0" name="MU4" type="MUON" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MU4full" phimin="0" phimax="64" priority="0" thresholdval="4" type="MUON" window="0"/> <Cable connector="CON0" input="SLOT9" name="MUCTPI"> <Signal range_begin="1" range_end="3"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="128" mapping="1" name="MU6" type="MUON" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="155" mapping="1" name="MU6" type="MUON" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MU6full" phimin="0" phimax="64" priority="0" thresholdval="6" type="MUON" window="0"/> <Cable connector="CON0" input="SLOT9" name="MUCTPI"> <Signal range_begin="4" range_end="6"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="129" mapping="2" name="MU10" type="MUON" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="156" mapping="2" name="MU10" type="MUON" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MU10full" phimin="0" phimax="64" priority="0" thresholdval="10" type="MUON" window="0"/> <Cable connector="CON0" input="SLOT9" name="MUCTPI"> <Signal range_begin="7" range_end="9"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="130" mapping="3" name="MU11" type="MUON" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="157" mapping="3" name="MU11" type="MUON" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MU11full" phimin="0" phimax="64" priority="0" thresholdval="11" type="MUON" window="0"/> <Cable connector="CON0" input="SLOT9" name="MUCTPI"> <Signal range_begin="10" range_end="12"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="131" mapping="4" name="MU20" type="MUON" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="158" mapping="4" name="MU20" type="MUON" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MU20full" phimin="0" phimax="64" priority="0" thresholdval="20" type="MUON" window="0"/> <Cable connector="CON0" input="SLOT9" name="MUCTPI"> <Signal range_begin="13" range_end="15"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="132" mapping="5" name="MU21" type="MUON" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="159" mapping="5" name="MU21" type="MUON" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="MU21full" phimin="0" phimax="64" priority="0" thresholdval="21" type="MUON" window="0"/> <Cable connector="CON0" input="SLOT9" name="MUCTPI"> <Signal range_begin="16" range_end="18"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="133" mapping="0" name="NIML1A" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="160" mapping="0" name="NIML1A" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="NIML1Afull" phimin="0" phimax="64" priority="0" thresholdval="40" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="19" range_end="19"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="134" mapping="1" name="NIMLHCF" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="161" mapping="1" name="NIMLHCF" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="NIMLHCFfull" phimin="0" phimax="64" priority="0" thresholdval="40" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="20" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="135" mapping="2" name="AFP_NSC" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="162" mapping="2" name="AFP_NSC" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_NSCfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="21" range_end="21"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="136" mapping="3" name="AFP_NSA" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="163" mapping="3" name="AFP_NSA" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_NSAfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="22" range_end="22"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="137" mapping="4" name="AFP_FSA_SIT" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="164" mapping="4" name="AFP_FSA_SIT" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_FSA_SITfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="23" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="138" mapping="5" name="AFP_FSA_TOF" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="165" mapping="5" name="AFP_FSA_TOF" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_FSA_TOFfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="24" range_end="24"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="139" mapping="6" name="AFP_FSA_LOG" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="166" mapping="6" name="AFP_FSA_LOG" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_FSA_LOGfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="25" range_end="25"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="140" mapping="7" name="AFP_FSC_SIT" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="167" mapping="7" name="AFP_FSC_SIT" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_FSC_SITfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="26" range_end="26"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="141" mapping="8" name="AFP_FSC_LOG" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="168" mapping="8" name="AFP_FSC_LOG" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_FSC_LOGfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="27" range_end="27"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="142" mapping="9" name="AFP_FSC_TOF" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="169" mapping="9" name="AFP_FSC_TOF" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="AFP_FSC_TOFfull" phimin="0" phimax="64" priority="0" thresholdval="50" type="NIM" window="0"/> <Cable connector="CON2" input="SLOT9" name="NIM1"> <Signal range_begin="28" range_end="28"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="143" mapping="12" name="NIMTGC" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="170" mapping="12" name="NIMTGC" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="NIMTGCfull" phimin="0" phimax="64" priority="0" thresholdval="40" type="NIM" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="19" range_end="19"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="144" mapping="13" name="NIMRPC" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="171" mapping="13" name="NIMRPC" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="NIMRPCfull" phimin="0" phimax="64" priority="0" thresholdval="40" type="NIM" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="20" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="145" mapping="14" name="NIMTRT" type="NIM" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="172" mapping="14" name="NIMTRT" type="NIM" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="NIMTRTfull" phimin="0" phimax="64" priority="0" thresholdval="40" type="NIM" window="0"/> <Cable connector="CON3" input="SLOT9" name="NIM2"> <Signal range_begin="21" range_end="21"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="146" mapping="0" name="HA5" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="173" mapping="0" name="HA5" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA5full" phimin="0" phimax="64" priority="1" thresholdval="5" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="0" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="147" mapping="1" name="HA8" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="174" mapping="1" name="HA8" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA8full" phimin="0" phimax="64" priority="1" thresholdval="8" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="3" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="148" mapping="2" name="HA12" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="175" mapping="2" name="HA12" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA12full" phimin="0" phimax="64" priority="1" thresholdval="12" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="6" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="149" mapping="3" name="HA12IL" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="176" mapping="3" name="HA12IL" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00001" name="HA12ILfull" phimin="0" phimax="64" priority="1" thresholdval="12" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="9" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="150" mapping="4" name="HA12IM" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="177" mapping="4" name="HA12IM" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00010" name="HA12IMfull" phimin="0" phimax="64" priority="1" thresholdval="12" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="12" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="151" mapping="5" name="HA12IT" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="178" mapping="5" name="HA12IT" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00100" name="HA12ITfull" phimin="0" phimax="64" priority="1" thresholdval="12" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="15" range_end="17"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="152" mapping="6" name="HA15" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="179" mapping="6" name="HA15" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA15full" phimin="0" phimax="64" priority="1" thresholdval="15" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="18" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="153" mapping="7" name="HA20" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="180" mapping="7" name="HA20" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA20full" phimin="0" phimax="64" priority="1" thresholdval="20" type="TAU" window="0"/> <Cable connector="CON2" input="SLOT7" name="TAU1"> <Signal range_begin="21" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="154" mapping="8" name="HA20IL" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="181" mapping="8" name="HA20IL" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00001" name="HA20ILfull" phimin="0" phimax="64" priority="1" thresholdval="20" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="0" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="155" mapping="9" name="HA20IM" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="182" mapping="9" name="HA20IM" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00010" name="HA20IMfull" phimin="0" phimax="64" priority="1" thresholdval="20" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="3" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="156" mapping="10" name="HA25" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="183" mapping="10" name="HA25" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA25full" phimin="0" phimax="64" priority="1" thresholdval="25" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="6" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="157" mapping="11" name="HA25IM" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="184" mapping="11" name="HA25IM" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00010" name="HA25IMfull" phimin="0" phimax="64" priority="1" thresholdval="25" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="9" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="158" mapping="12" name="HA30" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="185" mapping="12" name="HA30" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA30full" phimin="0" phimax="64" priority="1" thresholdval="30" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="12" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="159" mapping="13" name="HA40" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="186" mapping="13" name="HA40" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA40full" phimin="0" phimax="64" priority="1" thresholdval="40" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="15" range_end="17"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="160" mapping="14" name="HA60" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="187" mapping="14" name="HA60" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA60full" phimin="0" phimax="64" priority="1" thresholdval="60" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="18" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="3" id="161" mapping="15" name="HA100" type="TAU" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="188" mapping="15" name="HA100" type="TAU" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="HA100full" phimin="0" phimax="64" priority="1" thresholdval="100" type="TAU" window="0"/> <Cable connector="CON3" input="SLOT7" name="TAU2"> <Signal range_begin="21" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="162" mapping="0" name="TE5" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="3" id="189" mapping="16" name="eTAU12" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eTAU12full" phimin="0" phimax="64" priority="1" thresholdval="12" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="190" mapping="17" name="eTAU20" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eTAU20full" phimin="0" phimax="64" priority="1" thresholdval="20" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="191" mapping="18" name="eTAU40" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eTAU40full" phimin="0" phimax="64" priority="1" thresholdval="40" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="192" mapping="19" name="eTAU60" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eTAU60full" phimin="0" phimax="64" priority="1" thresholdval="60" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="193" mapping="20" name="eTAU100" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00000" name="eTAU100full" phimin="0" phimax="64" priority="1" thresholdval="100" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="194" mapping="21" name="eTAU12IM" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00010" name="eTAU12IMfull" phimin="0" phimax="64" priority="1" thresholdval="12" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="195" mapping="22" name="eTAU20IM" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00010" name="eTAU20IMfull" phimin="0" phimax="64" priority="1" thresholdval="20" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="3" id="196" mapping="23" name="eTAU25IM" type="TAU" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="99" isobits="00010" name="eTAU25IMfull" phimin="0" phimax="64" priority="1" thresholdval="25" type="TAU" window="0"/> + <Cable connector="CON3" input="SLOT7" name="TAU2"> + <Signal range_begin="21" range_end="23"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="197" mapping="0" name="TE5" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE5full" phimin="0" phimax="64" priority="0" thresholdval="5" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="0" range_end="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="163" mapping="1" name="TE10" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="198" mapping="1" name="TE10" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE10full" phimin="0" phimax="64" priority="0" thresholdval="10" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="1" range_end="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="164" mapping="2" name="TE15" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="199" mapping="2" name="TE15" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE15full" phimin="0" phimax="64" priority="0" thresholdval="15" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="2" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="165" mapping="3" name="TE20" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="200" mapping="3" name="TE20" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE20full" phimin="0" phimax="64" priority="0" thresholdval="20" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="3" range_end="3"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="166" mapping="4" name="TE25" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="201" mapping="4" name="TE25" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE25full" phimin="0" phimax="64" priority="0" thresholdval="25" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="4" range_end="4"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="167" mapping="5" name="TE30" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="202" mapping="5" name="TE30" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE30full" phimin="0" phimax="64" priority="0" thresholdval="30" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="5" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="168" mapping="6" name="TE40" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="203" mapping="6" name="TE40" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE40full" phimin="0" phimax="64" priority="0" thresholdval="40" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="6" range_end="6"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="169" mapping="7" name="TE50" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="204" mapping="7" name="TE50" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE50full" phimin="0" phimax="64" priority="0" thresholdval="50" type="TE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="7" range_end="7"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="170" mapping="8" name="TE5.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="205" mapping="8" name="TE5.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE5.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE5.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="5" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE5.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="5" type="TE" window="0"/> @@ -5352,7 +6216,7 @@ <Signal range_begin="0" range_end="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="171" mapping="9" name="TE10.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="206" mapping="9" name="TE10.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE10.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE10.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="10" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE10.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="10" type="TE" window="0"/> @@ -5360,7 +6224,7 @@ <Signal range_begin="1" range_end="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="172" mapping="10" name="TE15.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="207" mapping="10" name="TE15.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE15.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE15.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="15" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE15.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="15" type="TE" window="0"/> @@ -5368,7 +6232,7 @@ <Signal range_begin="2" range_end="2"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="173" mapping="11" name="TE20.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="208" mapping="11" name="TE20.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE20.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE20.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE20.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="20" type="TE" window="0"/> @@ -5376,7 +6240,7 @@ <Signal range_begin="3" range_end="3"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="174" mapping="12" name="TE25.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="209" mapping="12" name="TE25.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE25.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE25.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="25" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE25.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="25" type="TE" window="0"/> @@ -5384,7 +6248,7 @@ <Signal range_begin="4" range_end="4"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="175" mapping="13" name="TE30.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="210" mapping="13" name="TE30.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE30.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE30.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="30" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE30.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="30" type="TE" window="0"/> @@ -5392,7 +6256,7 @@ <Signal range_begin="5" range_end="5"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="176" mapping="14" name="TE40.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="211" mapping="14" name="TE40.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE40.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE40.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="40" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE40.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="40" type="TE" window="0"/> @@ -5400,7 +6264,7 @@ <Signal range_begin="6" range_end="6"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="177" mapping="15" name="TE70.24ETA49" type="TE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="212" mapping="15" name="TE70.24ETA49" type="TE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="TE70.24ETA49full" phimin="0" phimax="64" priority="0" thresholdval="32767" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="-24" had_isolation="63" had_veto="63" name="TE70.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="70" type="TE" window="0"/> <TriggerThresholdValue em_isolation="63" etamin="24" etamax="49" had_isolation="63" had_veto="63" name="TE70.24ETA49full" phimin="0" phimax="64" priority="1" thresholdval="70" type="TE" window="0"/> @@ -5408,738 +6272,766 @@ <Signal range_begin="7" range_end="7"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="178" mapping="0" name="900INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="213" mapping="0" name="900INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="0" range_end="0" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="179" mapping="1" name="800INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="214" mapping="1" name="800INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="1" range_end="1" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="180" mapping="2" name="700INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="215" mapping="2" name="700INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="2" range_end="2" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="181" mapping="3" name="500INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="216" mapping="3" name="500INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="3" range_end="3" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="182" mapping="4" name="400INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="217" mapping="4" name="400INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="4" range_end="4" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="183" mapping="5" name="300INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="218" mapping="5" name="300INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="5" range_end="5" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="184" mapping="6" name="200INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="219" mapping="6" name="200INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="6" range_end="6" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="185" mapping="7" name="100INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="220" mapping="7" name="100INVM9999-AJ30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="7" range_end="7" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="186" mapping="8" name="0INVM9-EM7ab-EMab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="221" mapping="8" name="0INVM9-EM7ab-EMab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="8" range_end="8" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="187" mapping="9" name="HT150-J20s5.ETA31" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="222" mapping="9" name="HT150-J20s5.ETA31" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="9" range_end="9" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="188" mapping="10" name="HT190-J15s5.ETA21" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="223" mapping="10" name="HT190-J15s5.ETA21" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="10" range_end="10" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="189" mapping="11" name="1INVM5-EMs1-EMs6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="224" mapping="11" name="1INVM5-EMs1-EMs6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="11" range_end="11" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="190" mapping="12" name="1INVM5-EM7s1-EMs6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="225" mapping="12" name="1INVM5-EM7s1-EMs6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="12" range_end="12" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="191" mapping="13" name="1INVM5-EM12s1-EMs6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="226" mapping="13" name="1INVM5-EM12s1-EMs6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="13" range_end="13" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="192" mapping="14" name="05MINDPHI-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="227" mapping="14" name="05MINDPHI-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="14" range_end="14" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="193" mapping="15" name="400INVM9999-AJ30s6.ETA31-AJ20s6.31ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="228" mapping="15" name="400INVM9999-AJ30s6.ETA31-AJ20s6.31ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="15" range_end="15" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="194" mapping="18" name="1DISAMB-EM15his2-TAU12abi-J25ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="229" mapping="18" name="1DISAMB-EM15his2-TAU12abi-J25ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="18" range_end="18" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="195" mapping="19" name="1DISAMB-J25ab-0DR28-EM15his2-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="230" mapping="19" name="1DISAMB-J25ab-0DR28-EM15his2-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="19" range_end="19" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="196" mapping="20" name="2INVM9-2MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="231" mapping="20" name="2INVM9-2MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="20" range_end="20" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="197" mapping="22" name="2INVM8-ONEBARREL-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="232" mapping="22" name="2INVM8-ONEBARREL-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="22" range_end="22" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="198" mapping="24" name="5DETA99-5DPHI99-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="233" mapping="24" name="5DETA99-5DPHI99-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="24" range_end="24" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="199" mapping="25" name="5DETA99-5DPHI99-2MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="234" mapping="25" name="5DETA99-5DPHI99-2MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="25" range_end="25" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="200" mapping="26" name="1DISAMB-TAU20abi-TAU12abi-J25ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="235" mapping="26" name="1DISAMB-TAU20abi-TAU12abi-J25ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="26" range_end="26" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="201" mapping="27" name="0DR28-MU10ab-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="236" mapping="27" name="0DR28-MU10ab-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="27" range_end="27" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="202" mapping="28" name="0DETA20-0DPHI20-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="237" mapping="28" name="0DETA20-0DPHI20-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="28" range_end="28" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="203" mapping="31" name="DISAMB-0DR28-EM15his2-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="238" mapping="31" name="DISAMB-0DR28-EM15his2-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="31" range_end="31" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="204" mapping="32" name="05MINDPHI-EM15s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="239" mapping="32" name="05MINDPHI-EM15s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="0" range_end="0" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="205" mapping="33" name="25MT-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="240" mapping="33" name="25MT-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="1" range_end="1" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="206" mapping="34" name="ZEE-EM20shi2" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="241" mapping="34" name="ZEE-EM20shi2" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="2" range_end="2" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="207" mapping="35" name="35MT-EM15s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="242" mapping="35" name="35MT-EM15s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="3" range_end="3" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="208" mapping="36" name="0DR03-EM7ab-CJ15ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="243" mapping="36" name="0DR03-EM7ab-CJ15ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="4" range_end="4" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="209" mapping="37" name="10MINDPHI-J20s2-XE30" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="244" mapping="37" name="10MINDPHI-J20s2-XE30" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="5" range_end="5" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="210" mapping="38" name="10MINDPHI-J20s2-XE50" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="245" mapping="38" name="10MINDPHI-J20s2-XE50" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="6" range_end="6" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="211" mapping="39" name="100RATIO-0MATCH-TAU30si2-EMall" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="246" mapping="39" name="100RATIO-0MATCH-TAU30si2-EMall" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="7" range_end="7" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="212" mapping="40" name="NOT-0MATCH-TAU30si1-EMall" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="247" mapping="40" name="NOT-0MATCH-TAU30si1-EMall" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="8" range_end="8" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="213" mapping="41" name="LAR-EM20shi1" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="248" mapping="41" name="LAR-EM20shi1" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="9" range_end="9" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="214" mapping="42" name="LAR-J100s1" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="249" mapping="42" name="LAR-J100s1" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="10" range_end="10" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="215" mapping="43" name="NOT-02MATCH-EM10s1-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="250" mapping="43" name="NOT-02MATCH-EM10s1-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="11" range_end="11" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="216" mapping="44" name="27DPHI32-EMs1-EMs6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="251" mapping="44" name="27DPHI32-EMs1-EMs6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="12" range_end="12" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="217" mapping="45" name="35MT-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="252" mapping="45" name="35MT-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="13" range_end="13" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="218" mapping="46" name="15MINDPHI-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="253" mapping="46" name="15MINDPHI-EM12s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="14" range_end="14" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="219" mapping="47" name="15MINDPHI-EM15s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="254" mapping="47" name="15MINDPHI-EM15s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="15" range_end="15" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="220" mapping="48" name="DISAMB-30INVM-EM20his2-TAU12ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="255" mapping="48" name="DISAMB-30INVM-EM20his2-TAU12ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="16" range_end="16" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="221" mapping="52" name="0DR22-2MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="256" mapping="52" name="0DR22-2MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="20" range_end="20" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="222" mapping="53" name="7INVM15-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="257" mapping="53" name="7INVM15-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="21" range_end="21" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="223" mapping="54" name="0DR22-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="258" mapping="54" name="0DR22-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="22" range_end="22" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="224" mapping="55" name="0DR15-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="259" mapping="55" name="0DR15-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="23" range_end="23" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="225" mapping="56" name="0DR24-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="260" mapping="56" name="0DR24-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="24" range_end="24" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="226" mapping="57" name="0DR15-2MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="261" mapping="57" name="0DR15-2MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="25" range_end="25" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="227" mapping="58" name="2INVM9-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="262" mapping="58" name="2INVM9-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="26" range_end="26" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="228" mapping="59" name="2INVM9-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="263" mapping="59" name="2INVM9-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="27" range_end="27" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="229" mapping="60" name="600INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="264" mapping="60" name="600INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="28" range_end="28" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="230" mapping="61" name="500INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="265" mapping="61" name="500INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="29" range_end="29" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="231" mapping="62" name="400INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="266" mapping="62" name="400INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="30" range_end="30" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="232" mapping="63" name="200INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="267" mapping="63" name="200INVM9999-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON1" input="CTPCORE" name="TOPO1"> <Signal range_begin="31" range_end="31" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="233" mapping="64" name="05MINDPHI-AJj10s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="268" mapping="64" name="05MINDPHI-AJj10s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="0" range_end="0" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="234" mapping="65" name="10MINDPHI-AJj10s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="269" mapping="65" name="10MINDPHI-AJj10s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="1" range_end="1" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="235" mapping="66" name="15MINDPHI-AJj10s6-XE0" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="270" mapping="66" name="15MINDPHI-AJj10s6-XE0" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="2" range_end="2" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="236" mapping="67" name="0DR04-MU4ab-CJ15ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="271" mapping="67" name="0DR04-MU4ab-CJ15ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="3" range_end="3" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="237" mapping="68" name="0DR04-MU4ab-CJ20ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="272" mapping="68" name="0DR04-MU4ab-CJ20ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="4" range_end="4" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="238" mapping="69" name="0DR04-MU4ab-CJ30ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="273" mapping="69" name="0DR04-MU4ab-CJ30ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="5" range_end="5" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="239" mapping="70" name="0DR04-MU6ab-CJ20ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="274" mapping="70" name="0DR04-MU6ab-CJ20ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="6" range_end="6" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="240" mapping="71" name="0DR04-MU6ab-CJ25ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="275" mapping="71" name="0DR04-MU6ab-CJ25ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="7" range_end="7" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="241" mapping="72" name="10MINDPHI-CJ20ab-XE50" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="276" mapping="72" name="10MINDPHI-CJ20ab-XE50" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="8" range_end="8" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="242" mapping="73" name="0DR24-2CMU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="277" mapping="73" name="0DR24-2CMU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="9" range_end="9" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="243" mapping="74" name="FTK-J100s1" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="278" mapping="74" name="FTK-J100s1" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="10" range_end="10" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="244" mapping="75" name="MULT-CMU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="2" id="279" mapping="75" name="MULT-CMU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="11" range_end="12" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="2" id="245" mapping="77" name="MULT-CMU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="2" id="280" mapping="77" name="MULT-CMU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="13" range_end="14" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="246" mapping="79" name="FTK-MU10s1" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="281" mapping="79" name="FTK-MU10s1" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="15" range_end="15" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="247" mapping="80" name="400INVM9999-0DPHI20-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="282" mapping="80" name="400INVM9999-0DPHI20-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="16" range_end="16" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="248" mapping="81" name="400INVM9999-0DPHI22-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="283" mapping="81" name="400INVM9999-0DPHI22-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="17" range_end="17" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="249" mapping="82" name="400INVM9999-0DPHI24-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="284" mapping="82" name="400INVM9999-0DPHI24-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="18" range_end="18" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="250" mapping="83" name="400INVM9999-0DPHI26-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="285" mapping="83" name="400INVM9999-0DPHI26-J30s6-AJ20s6" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="19" range_end="19" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="251" mapping="84" name="0INVM10-3MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="286" mapping="84" name="0INVM10-3MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="20" range_end="20" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="252" mapping="86" name="0MATCH-4AJ20.ETA31-4AJj15.ETA31" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="287" mapping="86" name="0MATCH-4AJ20.ETA31-4AJj15.ETA31" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="22" range_end="22" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="253" mapping="87" name="HT190-AJ15all.ETA21" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="288" mapping="87" name="HT190-AJ15all.ETA21" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="23" range_end="23" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="254" mapping="88" name="HT150-AJ20all.ETA31" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="289" mapping="88" name="HT150-AJ20all.ETA31" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="24" range_end="24" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="255" mapping="89" name="HT150-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="290" mapping="89" name="HT150-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="25" range_end="25" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="256" mapping="90" name="HT20-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="291" mapping="90" name="HT20-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="26" range_end="26" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="257" mapping="92" name="0DETA20-J50s1-Js2" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="292" mapping="92" name="0DETA20-J50s1-Js2" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="28" range_end="28" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="258" mapping="93" name="05RATIO-XE0-HT0-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="293" mapping="93" name="05RATIO-XE0-HT0-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="29" range_end="29" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="259" mapping="94" name="63DETA127-FJ20s1-FJ20s2" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="294" mapping="94" name="63DETA127-FJ20s1-FJ20s2" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="30" range_end="30" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="260" mapping="95" name="90RATIO2-XE0-HT0-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="295" mapping="95" name="90RATIO2-XE0-HT0-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="31" range_end="31" clock="0"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="261" mapping="96" name="60INVM9999-04DPHI32-EM15abhi-FJj15s623ETA49" type="TOPO" input="ctpcore" version="1"> - <Cable connector="CON2" input="CTPCORE" name="TOPO2"> - <Signal range_begin="0" range_end="0" clock="1"/> - </Cable> - </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="262" mapping="97" name="0INVM10-0DR15-EM8abi-MU10ab" type="TOPO" input="ctpcore" version="1"> - <Cable connector="CON2" input="CTPCORE" name="TOPO2"> - <Signal range_begin="1" range_end="1" clock="1"/> - </Cable> - </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="263" mapping="98" name="0INVM10-0DR15-EM12abi-MU6ab" type="TOPO" input="ctpcore" version="1"> - <Cable connector="CON2" input="CTPCORE" name="TOPO2"> - <Signal range_begin="2" range_end="2" clock="1"/> - </Cable> - </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="264" mapping="99" name="0DETA04-EM8abi-MU10ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="296" mapping="99" name="0DETA04-EM8abi-MU10ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="3" range_end="3" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="265" mapping="100" name="0DETA04-EM15abi-MUab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="297" mapping="100" name="0DETA04-EM15abi-MUab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="4" range_end="4" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="266" mapping="101" name="0DR24-CMU4ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="298" mapping="101" name="0DR24-CMU4ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="5" range_end="5" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="267" mapping="102" name="0DPHI03-EM8abi-MU10ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="299" mapping="102" name="0DPHI03-EM8abi-MU10ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="6" range_end="6" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="268" mapping="103" name="2INVM8-CMU4ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="300" mapping="103" name="2INVM8-CMU4ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="7" range_end="7" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="269" mapping="104" name="0DPHI03-EM15abi-MUab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="301" mapping="104" name="0DPHI03-EM15abi-MUab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="8" range_end="8" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="270" mapping="105" name="10MINDPHI-AJ20s2-XE50" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="302" mapping="105" name="10MINDPHI-AJ20s2-XE50" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="9" range_end="9" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="271" mapping="106" name="LATE-MU10s1" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="303" mapping="106" name="LATE-MU10s1" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="10" range_end="10" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="272" mapping="107" name="SC111-CJ15ab.ETA26" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="304" mapping="107" name="SC111-CJ15ab.ETA26" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="11" range_end="11" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="273" mapping="108" name="SC85-CJ15ab.ETA26" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="305" mapping="108" name="SC85-CJ15ab.ETA26" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="12" range_end="12" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="274" mapping="109" name="FTK-EM20s1" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="306" mapping="109" name="FTK-EM20s1" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="13" range_end="13" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="275" mapping="110" name="60INVM9999-25DPHI32-EM15abhi-FJj15s623ETA49" type="TOPO" input="ctpcore" version="1"> - <Cable connector="CON2" input="CTPCORE" name="TOPO2"> - <Signal range_begin="14" range_end="14" clock="1"/> - </Cable> - </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="276" mapping="112" name="250RATIO2-XE0-HT0-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="307" mapping="112" name="250RATIO2-XE0-HT0-AJj15all.ETA49" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="16" range_end="16" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="277" mapping="113" name="10MINDPHI-J20ab-XE50" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="308" mapping="113" name="10MINDPHI-J20ab-XE50" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="17" range_end="17" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="278" mapping="114" name="0DR28-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="309" mapping="114" name="0DR28-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="18" range_end="18" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="279" mapping="115" name="2DISAMB-J25ab-0DR28-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="310" mapping="115" name="2DISAMB-J25ab-0DR28-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="19" range_end="19" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="280" mapping="116" name="1DISAMB-TAU12abi-J25ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="311" mapping="116" name="1DISAMB-TAU12abi-J25ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="20" range_end="20" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="281" mapping="117" name="0DR10-MU10ab-MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="312" mapping="117" name="0DR10-MU10ab-MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="21" range_end="21" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="282" mapping="118" name="2DR99-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="313" mapping="118" name="2DR99-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="22" range_end="22" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="283" mapping="119" name="0DR34-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="314" mapping="119" name="0DR34-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="23" range_end="23" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="284" mapping="120" name="2DR15-2MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="315" mapping="120" name="2DR15-2MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="24" range_end="24" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="285" mapping="121" name="0DR15-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="316" mapping="121" name="0DR15-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="25" range_end="25" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="286" mapping="122" name="0DR25-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="317" mapping="122" name="0DR25-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="26" range_end="26" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="287" mapping="123" name="1DISAMB-J25ab-0DR25-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="318" mapping="123" name="1DISAMB-J25ab-0DR25-TAU20abi-TAU12abi" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="27" range_end="27" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="288" mapping="124" name="8INVM15-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="319" mapping="124" name="8INVM15-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="28" range_end="28" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="289" mapping="125" name="8INVM15-2MU6ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="320" mapping="125" name="8INVM15-2MU6ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="29" range_end="29" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="290" mapping="126" name="2INVM8-2MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="321" mapping="126" name="2INVM8-2MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="30" range_end="30" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="291" mapping="127" name="2INVM8-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> + <TriggerThreshold active="1" bitnum="1" id="322" mapping="127" name="2INVM8-MU6ab-MU4ab" type="TOPO" input="ctpcore" version="1"> <Cable connector="CON2" input="CTPCORE" name="TOPO2"> <Signal range_begin="31" range_end="31" clock="1"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="292" mapping="0" name="XE10" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="323" mapping="0" name="XE10" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE10full" phimin="0" phimax="64" priority="0" thresholdval="10" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="8" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="293" mapping="1" name="XE20" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="324" mapping="1" name="XE20" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE20full" phimin="0" phimax="64" priority="0" thresholdval="20" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="9" range_end="9"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="294" mapping="2" name="XE25" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="325" mapping="2" name="XE25" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE25full" phimin="0" phimax="64" priority="0" thresholdval="25" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="10" range_end="10"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="295" mapping="3" name="XE30" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="326" mapping="3" name="XE30" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE30full" phimin="0" phimax="64" priority="0" thresholdval="30" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="11" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="296" mapping="4" name="XE35" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="327" mapping="4" name="XE35" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE35full" phimin="0" phimax="64" priority="0" thresholdval="35" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="12" range_end="12"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="297" mapping="5" name="XE40" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="328" mapping="5" name="XE40" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE40full" phimin="0" phimax="64" priority="0" thresholdval="40" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="13" range_end="13"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="298" mapping="6" name="XE45" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="329" mapping="6" name="XE45" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE45full" phimin="0" phimax="64" priority="0" thresholdval="45" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="14" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="299" mapping="7" name="XE50" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="330" mapping="7" name="XE50" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE50full" phimin="0" phimax="64" priority="0" thresholdval="50" type="XE" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="15" range_end="15"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="300" mapping="8" name="XE55" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="331" mapping="8" name="XE55" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE55full" phimin="0" phimax="64" priority="0" thresholdval="55" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="8" range_end="8"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="301" mapping="9" name="XE60" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="332" mapping="9" name="XE60" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE60full" phimin="0" phimax="64" priority="0" thresholdval="60" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="9" range_end="9"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="302" mapping="10" name="XE65" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="333" mapping="10" name="XE65" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE65full" phimin="0" phimax="64" priority="0" thresholdval="65" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="10" range_end="10"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="303" mapping="11" name="XE70" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="334" mapping="11" name="XE70" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE70full" phimin="0" phimax="64" priority="0" thresholdval="70" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="11" range_end="11"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="304" mapping="12" name="XE75" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="335" mapping="12" name="XE75" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE75full" phimin="0" phimax="64" priority="0" thresholdval="75" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="12" range_end="12"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="305" mapping="13" name="XE80" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="336" mapping="13" name="XE80" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE80full" phimin="0" phimax="64" priority="0" thresholdval="80" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="13" range_end="13"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="306" mapping="14" name="XE150" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="337" mapping="14" name="XE150" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE150full" phimin="0" phimax="64" priority="0" thresholdval="150" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="14" range_end="14"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="307" mapping="15" name="XE300" type="XE" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="338" mapping="15" name="XE300" type="XE" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XE300full" phimin="0" phimax="64" priority="0" thresholdval="300" type="XE" window="0"/> <Cable connector="CON3" input="SLOT8" name="EN2"> <Signal range_begin="15" range_end="15"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="308" mapping="0" name="XS20" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="339" mapping="16" name="gXERHO20" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXERHO20full" phimin="0" phimax="64" priority="0" thresholdval="20" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="340" mapping="17" name="gXERHO30" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXERHO30full" phimin="0" phimax="64" priority="0" thresholdval="30" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="341" mapping="18" name="gXERHO35" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXERHO35full" phimin="0" phimax="64" priority="0" thresholdval="35" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="342" mapping="19" name="gXERHO40" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXERHO40full" phimin="0" phimax="64" priority="0" thresholdval="40" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="343" mapping="20" name="gXERHO45" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXERHO45full" phimin="0" phimax="64" priority="0" thresholdval="45" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="344" mapping="21" name="gXERHO50" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXERHO50full" phimin="0" phimax="64" priority="0" thresholdval="50" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="345" mapping="22" name="gXEPUFIT20" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXEPUFIT20full" phimin="0" phimax="64" priority="0" thresholdval="20" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="346" mapping="23" name="gXEPUFIT50" type="XE" input="ctpin" version="1"> + <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="gXEPUFIT50full" phimin="0" phimax="64" priority="0" thresholdval="50" type="XE" window="0"/> + <Cable connector="CON3" input="SLOT8" name="EN2"> + <Signal range_begin="15" range_end="15"/> + </Cable> + </TriggerThreshold> + <TriggerThreshold active="1" bitnum="1" id="347" mapping="0" name="XS20" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS20full" phimin="0" phimax="64" priority="0" thresholdval="20" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="16" range_end="16"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="309" mapping="1" name="XS30" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="348" mapping="1" name="XS30" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS30full" phimin="0" phimax="64" priority="0" thresholdval="30" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="17" range_end="17"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="310" mapping="2" name="XS40" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="349" mapping="2" name="XS40" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS40full" phimin="0" phimax="64" priority="0" thresholdval="40" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="18" range_end="18"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="311" mapping="3" name="XS45" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="350" mapping="3" name="XS45" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS45full" phimin="0" phimax="64" priority="0" thresholdval="45" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="19" range_end="19"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="312" mapping="4" name="XS50" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="351" mapping="4" name="XS50" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS50full" phimin="0" phimax="64" priority="0" thresholdval="50" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="20" range_end="20"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="313" mapping="5" name="XS55" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="352" mapping="5" name="XS55" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS55full" phimin="0" phimax="64" priority="0" thresholdval="55" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="21" range_end="21"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="314" mapping="6" name="XS60" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="353" mapping="6" name="XS60" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS60full" phimin="0" phimax="64" priority="0" thresholdval="60" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="22" range_end="22"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="315" mapping="7" name="XS65" type="XS" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="354" mapping="7" name="XS65" type="XS" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="XS65full" phimin="0" phimax="64" priority="0" thresholdval="65" type="XS" window="0"/> <Cable connector="CON2" input="SLOT8" name="EN1"> <Signal range_begin="23" range_end="23"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="316" mapping="0" name="ZB_EM15" type="ZB" input="ctpin" seed="EM15" seed_multi="1" bcdelay="3564" version="1"> + <TriggerThreshold active="1" bitnum="1" id="355" mapping="0" name="ZB_EM15" type="ZB" input="ctpin" seed="EM15" seed_multi="1" bcdelay="3564" version="1"> <Cable connector="CON0" input="SLOT7" name="EM1"> <Signal range_begin="30" range_end="30"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="317" mapping="0" name="ZDC_A" type="ZDC" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="356" mapping="0" name="ZDC_A" type="ZDC" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="ZDC_Afull" phimin="0" phimax="64" priority="0" thresholdval="250" type="ZDC" window="0"/> <Cable connector="CON1" input="SLOT9" name="CTPCAL"> <Signal range_begin="25" range_end="25"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="318" mapping="1" name="ZDC_C" type="ZDC" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="357" mapping="1" name="ZDC_C" type="ZDC" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="ZDC_Cfull" phimin="0" phimax="64" priority="0" thresholdval="250" type="ZDC" window="0"/> <Cable connector="CON1" input="SLOT9" name="CTPCAL"> <Signal range_begin="26" range_end="26"/> </Cable> </TriggerThreshold> - <TriggerThreshold active="1" bitnum="1" id="319" mapping="2" name="ZDC_AND" type="ZDC" input="ctpin" version="1"> + <TriggerThreshold active="1" bitnum="1" id="358" mapping="2" name="ZDC_AND" type="ZDC" input="ctpin" version="1"> <TriggerThresholdValue em_isolation="63" etamin="-49" etamax="49" had_isolation="63" had_veto="63" name="ZDC_ANDfull" phimin="0" phimax="64" priority="0" thresholdval="250" type="ZDC" window="0"/> <Cable connector="CON1" input="SLOT9" name="CTPCAL"> <Signal range_begin="27" range_end="27"/> diff --git a/Trigger/TriggerRelease/python/Modifiers.py b/Trigger/TriggerRelease/python/Modifiers.py index d181a4fda0e210f30f8926d773cac542e31fcfc0..64076f42e4d5248f0e38eefa8951d810fd597cb4 100644 --- a/Trigger/TriggerRelease/python/Modifiers.py +++ b/Trigger/TriggerRelease/python/Modifiers.py @@ -786,8 +786,22 @@ class rerunLVL1(_modifier): """ Reruns the L1 simulation on real data """ + + __wasExecuted = False + + @classmethod + def wasExecuted(cls): + return cls.__wasExecuted + + def preSetup(self): + log.info("JOERG Seeting up rerunLVL1 for Run 2") + + if rerunLVL1PhaseI.wasExecuted(): + raise RuntimeError("ERROR modifiers 'rerunLVL1PhaseI' and 'rerunLVL1' have both been set, but they are exclusive. Please specify only one") + rerunLVL1.__wasExecuted = True + # Do nothing for EF only running if TriggerFlags.doLVL2()==False and TriggerFlags.doEF()==True: return @@ -884,6 +898,37 @@ class rerunLVL1(_modifier): "CTP_RIO/CTP_RIO" ] + +class rerunLVL1PhaseI(_modifier): + """ + Reruns the L1 simulation on real data with the new Phase-I L1Calo + """ + + __wasExecuted = False + + @classmethod + def wasExecuted(cls): + return cls.__wasExecuted + + def postSetup(self): + if rerunLVL1.wasExecuted(): + raise RuntimeError("ERROR modifiers 'rerunLVL1PhaseI' and 'rerunLVL1' have both been set, but they are exclusive. Please specify only one") + rerunLVL1.__wasExecuted = True + log = logging.getLogger('Modifiers.py:rerunLVL1PhaseI') + log.info("JOERG setting up rerunLVL1 for Run 3") + + from AthenaCommon.Include import include + include("TrigT1CaloFexSim/createL1SimulationSequenceBS.py") + + + # def postSetup(self): + svcMgr.ByteStreamAddressProviderSvc.TypeNames += [ + "MuCTPI_RIO/MUCTPI_RIO", + "CTP_RIO/CTP_RIO" + ] + + + class rerunDMLVL1(_modifier): """ Reruns the L1 simulation on real data with dead material corrections