CMS 3D CMS Logo

autoCond.py
Go to the documentation of this file.
1 autoCond = {
2 
3  ### NEW KEYS ###
4  # GlobalTag for MC production with perfectly aligned and calibrated detector for Run1
5  'run1_design' : '93X_mcRun1_design_v0',
6  # GlobalTag for MC production (pp collisions) with realistic alignment and calibrations for Run1
7  'run1_mc' : '93X_mcRun1_realistic_v0',
8  # GlobalTag for MC production (Heavy Ions collisions) with realistic alignment and calibrations for Run1
9  'run1_mc_hi' : '93X_mcRun1_HeavyIon_v0',
10  # GlobalTag for MC production (p-Pb collisions) with realistic alignment and calibrations for Run1
11  'run1_mc_pa' : '93X_mcRun1_pA_v0',
12  # GlobalTag for MC production with perfectly aligned and calibrated detector for Run2
13  'run2_design' : '93X_mcRun2_design_v0',
14  # GlobalTag for MC production with pessimistic alignment and calibrations for Run2
15  'run2_mc_50ns' : '93X_mcRun2_startup_v0',
16  #GlobalTag for MC production with optimistic alignment and calibrations for Run2
17  'run2_mc' : '93X_mcRun2_asymptotic_v1',
18  # GlobalTag for MC production (cosmics) with starup-like alignment and calibrations for Run2, Strip tracker in peak mode
19  'run2_mc_cosmics' : '93X_mcRun2cosmics_startup_deco_v0',
20  # GlobalTag for MC production (Heavy Ions collisions) with optimistic alignment and calibrations for Run2
21  'run2_mc_hi' : '93X_mcRun2_HeavyIon_v0',
22  # GlobalTag for MC production (p-Pb collisions) with realistic alignment and calibrations for Run2
23  'run2_mc_pa' : '93X_mcRun2_pA_v0',
24  # GlobalTag for Run1 data reprocessing
25  'run1_data' : '93X_dataRun2_v0',
26  # GlobalTag for Run2 data reprocessing
27  'run2_data' : '93X_dataRun2_v0',
28  # GlobalTag for Run2 data relvals: allows customization to run with fixed L1 menu
29  'run2_data_relval' : '93X_dataRun2_relval_v0',
30  # GlobalTag for Run2 data 2016H relvals only: Prompt Conditions + fixed L1 menu (to be removed)
31  'run2_data_promptlike' : '93X_dataRun2_PromptLike_v0',
32  # GlobalTag for Run1 HLT: it points to the online GT
33  'run1_hlt' : '93X_dataRun2_HLT_frozen_v0',
34  # GlobalTag for Run2 HLT: it points to the online GT
35  'run2_hlt' : '93X_dataRun2_HLT_frozen_v0',
36  # GlobalTag for Run2 HLT RelVals: customizations to run with fixed L1 Menu
37  'run2_hlt_relval' : '93X_dataRun2_HLT_relval_v1',
38  # GlobalTag for Run2 HLT for HI: it points to the online GT
39  'run2_hlt_hi' : '93X_dataRun2_HLTHI_frozen_v0',
40  # GlobalTag for MC production with perfectly aligned and calibrated detector for Phase1 2017 (and 0,0,~0-centred beamspot)
41  'phase1_2017_design' : '93X_mc2017_design_IdealBS_v3',
42  # GlobalTag for MC production with realistic conditions for Phase1 2017 detector
43  'phase1_2017_realistic' : '93X_mc2017_realistic_v3',
44  # GlobalTag for MC production (cosmics) with realistic alignment and calibrations for Phase1 2017 detector, Strip tracker in DECO mode
45  'phase1_2017_cosmics' : '93X_mc2017cosmics_realistic_deco_v3',
46  # GlobalTag for MC production (cosmics) with realistic alignment and calibrations for Phase1 2017 detector, Strip tracker in PEAK mode
47  'phase1_2017_cosmics_peak' : '93X_mc2017cosmics_realistic_peak_v3',
48  # GlobalTag for MC production with perfectly aligned and calibrated detector for full Phase1 2018 (and 0,0,0-centred beamspot)
49  'phase1_2018_design' : '93X_upgrade2018_design_IdealBS_v2',
50  # GlobalTag for MC production with realistic conditions for full Phase1 2018 detector
51  'phase1_2018_realistic' : '93X_upgrade2018_realistic_v2',
52  # GlobalTag for MC production (cosmics) with realistic conditions for full Phase1 2018 detector, Strip tracker in DECO mode
53  'phase1_2018_cosmics' : '93X_upgrade2018cosmics_realistic_deco_v2',
54  # GlobalTag for MC production with perfectly aligned and calibrated detector for Phase1 2019
55  'phase1_2019_design' : 'DES19_70_V2', # placeholder (GT not meant for standard RelVal)
56  # GlobalTag for MC production with realistic conditions for Phase2 2023
57  'phase2_realistic' : '93X_upgrade2023_realistic_v5'
58 }
59 
60 aliases = {
61  'MAINGT' : 'FT_P_V42D|AN_V4',
62  'BASEGT' : 'BASE1_V1|BASE2_V1'
63 }
64 
65 # dedicated GlobalTags for HLT
66 from Configuration.HLT.autoCondHLT import autoCondHLT
67 autoCond = autoCondHLT(autoCond)
68 
69 ### OLD KEYS ### kept for backward compatibility
70  # GlobalTag for MC production with perfectly aligned and calibrated detector
71 autoCond['mc'] = ( autoCond['run1_design'] )
72  # GlobalTag for MC production with realistic alignment and calibrations
73 autoCond['startup'] = ( autoCond['run1_mc'] )
74  # GlobalTag for MC production of Heavy Ions events with realistic alignment and calibrations
75 autoCond['starthi'] = ( autoCond['run1_mc_hi'] )
76  # GlobalTag for MC production of p-Pb events with realistic alignment and calibrations
77 autoCond['startpa'] = ( autoCond['run1_mc_pa'] )
78  # GlobalTag for data reprocessing
79 autoCond['com10'] = ( autoCond['run1_data'] )
80  # GlobalTag for running HLT on recent data: it points to the online GT (remove the snapshot!)
81 autoCond['hltonline'] = ( autoCond['run1_hlt'] )
82  # GlobalTag for POSTLS1 upgrade studies:
83 autoCond['upgradePLS1'] = ( autoCond['run2_mc'] )
84 autoCond['upgradePLS150ns'] = ( autoCond['run2_mc_50ns'] )
85 autoCond['upgrade2017'] = ( autoCond['phase1_2017_design'] )
86 autoCond['upgrade2019'] = ( autoCond['phase1_2019_design'] )
87 autoCond['upgradePLS3'] = ( autoCond['phase2_realistic'] )