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' : '76X_mcRun1_design_v11',
6  # GlobalTag for MC production (pp collisions) with realistic alignment and calibrations for Run1
7  'run1_mc' : '76X_mcRun1_realistic_v11',
8  # GlobalTag for MC production (Heavy Ions collisions) with realistic alignment and calibrations for Run1
9  'run1_mc_hi' : '76X_mcRun1_HeavyIon_v11',
10  # GlobalTag for MC production (p-Pb collisions) with realistic alignment and calibrations for Run1
11  'run1_mc_pa' : '76X_mcRun1_pA_v11',
12  # GlobalTag for MC production with perfectly aligned and calibrated detector for Run2
13  'run2_design' : '76X_mcRun2_design_v14',
14  # GlobalTag for MC production with pessimistic alignment and calibrations for Run2
15  'run2_mc_50ns' : '76X_mcRun2_startup_v13',
16  #GlobalTag for MC production with optimistic alignment and calibrations for Run2
17  'run2_mc' : '76X_mcRun2_asymptotic_v14',
18  # GlobalTag for MC production (Heavy Ions collisions) with optimistic alignment and calibrations for Run2
19  'run2_mc_hi' : '76X_mcRun2_HeavyIon_v14',
20  # GlobalTag for MC production (cosmics) with starup-like alignment and calibrations for Run2, Strip tracker in peak mode
21  'run2_mc_cosmics' : '76X_mcRun2cosmics_startup_peak_v0',
22  # GlobalTag for Run1 data reprocessing
23  'run1_data' : '76X_dataRun1_v16',
24  # GlobalTag for Run2 data reprocessing
25  'run2_data' : '76X_dataRun2_v16',
26  # GlobalTag for Run1 HLT: it points to the online GT
27  'run1_hlt' : '76X_dataRun1_HLT_frozen_v11',
28  # GlobalTag for Run2 HLT: it points to the online GT
29  'run2_hlt' : '76X_dataRun2_HLT_frozen_v11',
30  # GlobalTag for Run2 HLT for HI: it points to the online GT
31  'run2_hlt_hi' : '76X_dataRun2_HLTHI_frozen_v2',
32  # GlobalTag for MC production with perfectly aligned and calibrated detector for Phase1 2017
33  'phase1_2017_design' : '76X_upgrade2017_design_v9',
34  # GlobalTag for MC production with perfectly aligned and calibrated detector for Phase1 2019
35  'phase1_2019_design' : 'DES19_70_V2', # placeholder (GT not meant for standard RelVal)
36  # GlobalTag for MC production with perfectly aligned and calibrated detector for Phase2
37  'phase2_design' : 'POSTLS262_V1', # placeholder (GT not meant for standard RelVal)
38 }
39 
40 aliases = {
41  'MAINGT' : 'FT_P_V42D|AN_V4',
42  'BASEGT' : 'BASE1_V1|BASE2_V1'
43 }
44 
45 # dedicated GlobalTags for HLT
46 from Configuration.HLT.autoCondHLT import autoCondHLT
47 autoCond = autoCondHLT(autoCond)
48 
49 ### OLD KEYS ### kept for backward compatibility
50  # GlobalTag for MC production with perfectly aligned and calibrated detector
51 autoCond['mc'] = ( autoCond['run1_design'] )
52  # GlobalTag for MC production with realistic alignment and calibrations
53 autoCond['startup'] = ( autoCond['run1_mc'] )
54  # GlobalTag for MC production of Heavy Ions events with realistic alignment and calibrations
55 autoCond['starthi'] = ( autoCond['run1_mc_hi'] )
56  # GlobalTag for MC production of p-Pb events with realistic alignment and calibrations
57 autoCond['startpa'] = ( autoCond['run1_mc_pa'] )
58  # GlobalTag for data reprocessing: this should always be the GR_R tag
59 autoCond['com10'] = ( autoCond['run1_data'] )
60  # GlobalTag for running HLT on recent data: this should be the GR_P (prompt reco) global tag until a compatible GR_H tag is available,
61  # then it should point to the GR_H tag and override the connection string and pfnPrefix for use offline
62 autoCond['hltonline'] = ( autoCond['run1_hlt'] )
63  # GlobalTag for POSTLS1 upgrade studies:
64 autoCond['upgradePLS1'] = ( autoCond['run2_mc'] )
65 autoCond['upgradePLS150ns'] = ( autoCond['run2_mc_50ns'] )
66 autoCond['upgrade2017'] = ( autoCond['phase1_2017_design'] )
67 autoCond['upgrade2019'] = ( autoCond['phase1_2019_design'] )
68 autoCond['upgradePLS3'] = ( autoCond['phase2_design'] )