ATLAS Offline Software
FPGATrackSimGenScanCuts_incr.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
2 '''
3 @author Elliot Lipeles - lipeles@cern.ch
4 @date Oct 10th, 2024
5 @brief This file specifies cuts for the FPGATrackSimGenScanTool
6 '''
7 
8 # Cut Values for incremental L4 to L0 track building
9 
10 NoCut = 10000000
11 
12 # structure is dictionary of region and then cut
13 cuts = {
14  0: {
15  "rin" : 30.0,
16  "rout" : 300.0,
17  "parSet" : "PhiSlicedKeyLyrPars",
18  "parMin" : [-159.72599999999997, -132.192, 0.2162999990582466, 0.19339999257773163, -5.94],
19  "parMax" : [171.72600000000006, 252.192, 0.5825999742746353, 0.6026000139191747, 5.9399999999999995],
20  "parBins" : [20, 20, 5, 20, 3],
21  "pairFilterDeltaPhiCut" : [NoCut,NoCut,NoCut,NoCut],
22  "pairFilterDeltaEtaCut" : [NoCut,NoCut,NoCut,NoCut],
23  "pairFilterPhiExtrapCut" : [7.5,4.0],
24  "pairFilterEtaExtrapCut" : [11.2,10.0],
25  "pairSetMatchPhiCut" : NoCut,
26  "pairSetMatchEtaCut" : NoCut,
27  "pairSetDeltaDeltaPhiCut" : NoCut,
28  "pairSetDeltaDeltaEtaCut" : NoCut,
29  "pairSetPhiCurvatureCut" : 0.00025,
30  "pairSetEtaCurvatureCut" : 0.00010,
31  "pairSetDeltaPhiCurvatureCut" : 0.00012,
32  "pairSetDeltaEtaCurvatureCut" : NoCut,
33  "pairSetPhiExtrapCurvedCut" : [2.0,NoCut],
34  },
35  3: {
36  "rin" : 30.0,
37  "rout" : 300.0,
38  "parSet" : "PhiSlicedKeyLyrPars",
39  "parMin" : [-54.09299999999998, 940.656, 0.2302720041632652, 0.2101899934336543, -5.559840098190307],
40  "parMax" : [287.70300000000003, 1486.3439999999998, 0.5697279928565026, 0.595509973488748, 5.559840098190308],
41  "parBins" : [20, 20, 5, 20, 3],
42  "pairFilterDeltaPhiCut" : [NoCut,NoCut,NoCut,NoCut],
43  "pairFilterDeltaEtaCut" : [NoCut,NoCut,NoCut,NoCut],
44  "pairFilterPhiExtrapCut" : [6.2,4.0],
45  "pairFilterEtaExtrapCut" : [15.0,16.0],
46  "pairSetMatchPhiCut" : NoCut,
47  "pairSetMatchEtaCut" : NoCut,
48  "pairSetDeltaDeltaPhiCut" : NoCut,
49  "pairSetDeltaDeltaEtaCut" : NoCut,
50  "pairSetPhiCurvatureCut" : 0.00023,
51  "pairSetEtaCurvatureCut" : 0.00050,
52  "pairSetDeltaPhiCurvatureCut" : 0.00055,
53  "pairSetDeltaEtaCurvatureCut" : NoCut,
54  "pairSetPhiExtrapCurvedCut" : [2.0,NoCut]
55  },
56 }