test
CMS 3D CMS Logo

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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' : '90X_mcRun1_design_v0',
6  # GlobalTag for MC production (pp collisions) with realistic alignment and calibrations for Run1
7  'run1_mc' : '90X_mcRun1_realistic_v0',
8  # GlobalTag for MC production (Heavy Ions collisions) with realistic alignment and calibrations for Run1
9  'run1_mc_hi' : '90X_mcRun1_HeavyIon_v0',
10  # GlobalTag for MC production (p-Pb collisions) with realistic alignment and calibrations for Run1
11  'run1_mc_pa' : '90X_mcRun1_pA_v0',
12  # GlobalTag for MC production with perfectly aligned and calibrated detector for Run2
13  'run2_design' : '90X_mcRun2_design_v0',
14  # GlobalTag for MC production with pessimistic alignment and calibrations for Run2
15  'run2_mc_50ns' : '90X_mcRun2_startup_v0',
16  #GlobalTag for MC production with optimistic alignment and calibrations for Run2
17  'run2_mc' : '90X_mcRun2_asymptotic_v0',
18  # GlobalTag for MC production (cosmics) with starup-like alignment and calibrations for Run2, Strip tracker in peak mode
19  'run2_mc_cosmics' : '90X_mcRun2cosmics_startup_peak_v0',
20  # GlobalTag for MC production (Heavy Ions collisions) with optimistic alignment and calibrations for Run2
21  'run2_mc_hi' : '90X_mcRun2_HeavyIon_v0',
22  # GlobalTag for MC production (p-Pb collisions) with realistic alignment and calibrations for Run2
23  'run2_mc_pa' : '90X_mcRun2_pA_v1',
24  # GlobalTag for Run1 data reprocessing
25  'run1_data' : '90X_dataRun2_v0',
26  # GlobalTag for Run2 data reprocessing
27  'run2_data' : '90X_dataRun2_v0',
28  # GlobalTag for Run2 data relvals: allows customization to run with fixed L1 menu
29  'run2_data_relval' : '90X_dataRun2_relval_v0',
30  # GlobalTag for Run2 data 2016H relvals only: Prompt Conditions + fixed L1 menu (to be removed)
31  'run2_data_promptlike' : '90X_dataRun2_PromptLike_v0',
32  # GlobalTag for Run1 HLT: it points to the online GT
33  'run1_hlt' : '90X_dataRun2_HLT_frozen_v0',
34  # GlobalTag for Run2 HLT: it points to the online GT
35  'run2_hlt' : '90X_dataRun2_HLT_frozen_v0',
36  # GlobalTag for Run2 HLT RelVals: customizations to run with fixed L1 Menu
37  'run2_hlt_relval' : '90X_dataRun2_HLT_relval_v0',
38  # GlobalTag for Run2 HLT for HI: it points to the online GT
39  'run2_hlt_hi' : '90X_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' : '90X_upgrade2017_design_IdealBS_v0',
42  # GlobalTag for MC production with realistic conditions for Phase1 2017 detector
43  'phase1_2017_realistic': '90X_upgrade2017_realistic_v0',
44  # GlobalTag for MC production (cosmics) with realistic alignment and calibrations for Phase1 2017 detector, Strip tracker in peak mode
45  'phase1_2017_cosmics' : '90X_upgrade2017cosmics_realistic_peak_v0',
46  # GlobalTag for MC production with perfectly aligned and calibrated detector for Phase1 2019
47  'phase1_2019_design' : 'DES19_70_V2', # placeholder (GT not meant for standard RelVal)
48  # GlobalTag for MC production with realistic conditions for Phase2 2023
49  'phase2_realistic' : '90X_upgrade2023_realistic_v1'
50 }
51 
52 aliases = {
53  'MAINGT' : 'FT_P_V42D|AN_V4',
54  'BASEGT' : 'BASE1_V1|BASE2_V1'
55 }
56 
57 # dedicated GlobalTags for HLT
58 from Configuration.HLT.autoCondHLT import autoCondHLT
59 autoCond = autoCondHLT(autoCond)
60 
61 ### OLD KEYS ### kept for backward compatibility
62  # GlobalTag for MC production with perfectly aligned and calibrated detector
63 autoCond['mc'] = ( autoCond['run1_design'] )
64  # GlobalTag for MC production with realistic alignment and calibrations
65 autoCond['startup'] = ( autoCond['run1_mc'] )
66  # GlobalTag for MC production of Heavy Ions events with realistic alignment and calibrations
67 autoCond['starthi'] = ( autoCond['run1_mc_hi'] )
68  # GlobalTag for MC production of p-Pb events with realistic alignment and calibrations
69 autoCond['startpa'] = ( autoCond['run1_mc_pa'] )
70  # GlobalTag for data reprocessing
71 autoCond['com10'] = ( autoCond['run1_data'] )
72  # GlobalTag for running HLT on recent data: it points to the online GT (remove the snapshot!)
73 autoCond['hltonline'] = ( autoCond['run1_hlt'] )
74  # GlobalTag for POSTLS1 upgrade studies:
75 autoCond['upgradePLS1'] = ( autoCond['run2_mc'] )
76 autoCond['upgradePLS150ns'] = ( autoCond['run2_mc_50ns'] )
77 autoCond['upgrade2017'] = ( autoCond['phase1_2017_design'] )
78 autoCond['upgrade2019'] = ( autoCond['phase1_2019_design'] )
79 autoCond['upgradePLS3'] = ( autoCond['phase2_realistic'] )