CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
autoCond_condDBv1.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' : 'DESRUN1_75_V2::All',
6  # GlobalTag for MC production (pp collisions) with realistic alignment and calibrations for Run1
7  'run1_mc' : 'MCRUN1_75_V2::All',
8  # GlobalTag for MC production (Heavy Ions collisions) with realistic alignment and calibrations for Run1
9  'run1_mc_hi' : 'MCHI1_75_V2::All',
10  # GlobalTag for MC production (p-Pb collisions) with realistic alignment and calibrations for Run1
11  'run1_mc_pa' : 'MCPA1_75_V2::All',
12  # GlobalTag for MC production with perfectly aligned and calibrated detector for Run2
13  'run2_design' : 'DESRUN2_75_V2::All',
14  # GlobalTag for MC production with pessimistic alignment and calibrations for Run2
15  'run2_mc_50ns' : 'MCRUN2_75_V4:All',
16  #GlobalTag for MC production with optimistic alignment and calibrations for Run2
17  'run2_mc' : 'MCRUN2_75_V5::All',
18  # GlobalTag for MC production (Heavy Ions collisions) with optimistic alignment and calibrations for Run2
19  'run2_mc_hi' : 'MCHI2_75_V2::All',
20  # GlobalTag for Run1 data reprocessing
21  'run1_data' : 'GR_R_75_V4A::All',
22  # GlobalTag for Run2 data reprocessing
23  'run2_data' : 'GR_R_75_V5A::All',
24  # GlobalTag for Run1 HLT: it points to the online GT and overrides the connection string and pfnPrefix for use offline
25  'run1_hlt' : 'GR_H_V61A::All,frontier://FrontierProd/CMS_COND_31X_GLOBALTAG,frontier://FrontierProd/',
26  # GlobalTag for Run2 HLT: it points to the online GT and overrides the connection string and pfnPrefix for use offline
27  'run2_hlt' : 'GR_H_V62A::All,frontier://FrontierProd/CMS_COND_31X_GLOBALTAG,frontier://FrontierProd/',
28  # GlobalTag for MC production with perfectly aligned and calibrated detector for Phase1 2017
29  'phase1_2017_design' : 'DES17_70_V2::All', # placeholder (GT not meant for standard RelVal)
30  # GlobalTag for MC production with perfectly aligned and calibrated detector for Phase1 2019
31  'phase1_2019_design' : 'DES19_70_V2::All', # placeholder (GT not meant for standard RelVal)
32  # GlobalTag for MC production with perfectly aligned and calibrated detector for Phase2
33  'phase2_design' : 'POSTLS262_V1::All', # placeholder (GT not meant for standard RelVal)
34 }
35 
36 aliases = {
37  'MAINGT' : 'FT_P_V42D::All|AN_V4::All',
38  'BASEGT' : 'BASE1_V1::All|BASE2_V1::All'
39 }
40 
41 # dedicated GlobalTags for HLT
42 from Configuration.HLT.autoCondHLT import autoCondHLT
43 autoCond = autoCondHLT(autoCond)
44 
45 ### OLD KEYS ### kept for backward compatibility
46  # GlobalTag for MC production with perfectly aligned and calibrated detector
47 autoCond['mc'] = ( autoCond['run1_design'] )
48  # GlobalTag for MC production with realistic alignment and calibrations
49 autoCond['startup'] = ( autoCond['run1_mc'] )
50  # GlobalTag for MC production of Heavy Ions events with realistic alignment and calibrations
51 autoCond['starthi'] = ( autoCond['run1_mc_hi'] )
52  # GlobalTag for MC production of p-Pb events with realistic alignment and calibrations
53 autoCond['startpa'] = ( autoCond['run1_mc_pa'] )
54  # GlobalTag for data reprocessing: this should always be the GR_R tag
55 autoCond['com10'] = ( autoCond['run1_data'] )
56  # 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,
57  # then it should point to the GR_H tag and override the connection string and pfnPrefix for use offline
58 autoCond['hltonline'] = ( autoCond['run1_hlt'] )
59  # GlobalTag for POSTLS1 upgrade studies:
60 autoCond['upgradePLS1'] = ( autoCond['run2_mc'] )
61 autoCond['upgradePLS150ns'] = ( autoCond['run2_mc_50ns'] )
62 autoCond['upgrade2017'] = ( autoCond['phase1_2017_design'] )
63 autoCond['upgrade2019'] = ( autoCond['phase1_2019_design'] )
64 autoCond['upgradePLS3'] = ( autoCond['phase2_design'] )