Global Tags for Conditions Data

Contents:

Introduction

This page is intended for the detailed recording of conditions used in the CMS data processing workflows, and description of some key tools. If you're looking for which global tag should be used to analyse a specific dataset, please refer to the analysis recipe session.

Conditions data for consumption in CMSSW are defined in the Offline Conditions Database, which is read in CMSSW applications via Frontier caching servers.

The set of database tags which together define the offline conditions data are collected together in a Global Tag, which is itself stored in the database. This removes the need for the list of database tags to be defined in separate cffs and therefore decouples the conditions database from the CMSSW release; different Global Tags can be used with a given CMSSW release, with the tag itself specified in the cfg file.

The following file should be included in the cfg for any CMSSW application for which needs to read conditions data:

It is then necessary to specify which global tag is to be used, as follows:

process.GlobalTag.globaltag = 'GlobalTagName'

For example, for a CMSSW job to process simulated dataset produced in the RunIISpring16DR8 80X campaign, you need to :

from Configuration.AlCa.GlobalTag import GlobalTag
process.GlobalTag.globaltag = '80X_mcRun2_asymptotic_2016_miniAODv2_v1'

Note that the global tag to be used should always be explicitly specified.

Browsing the Global Tag content

There are 2 main ways to access the content of a Global Tag:

  • web interface for browsing and monitoring the changes to a Global Tag is available:
  • command line tool: the following script can also be run to examine the contents of a global tag
       cmsenv
       conddb list TAGNAME

How to find out which conditions were used in an existing reconstructed dataset

Tier0 datasets:

You can check the T0Mon page for the runs currently processed at Tier0: T0Mon clicking on the run # will show you the Global-Tag in use.

You can also refer to the table Global Tags for Data Taking in this page.

Other datasets

You can query DBS with:

dbs search --query='find dataset.tag where dataset=/MyFavorite/Dataset/RECO'

For Monte Carlo production, and for skims and reprocessed data, the name of the global tag for conditions is included in the DBS dataset name. For example:

/Zmumu/CSA08_CSA08_S156_v1/GEN-SIM-RECO

In this case, the global tag used is CSA08_S156 which can be found in the table above.

Alternatively, you can search for the global tag in the cfg.py file, e.g.:

process.GlobalTag.globaltag = "80X_mcRun2_asymptotic_2016_miniAODv2_v1"

Analysis recipes

The recommendation of which global tag (together with other ingredients) should be used to analyze a specific dataset is best found in the analysis recipe page maintained by the PdmV team.

Customization of Global Tags

You may want to use an existing global tag with a modification to one or more of the conditions defined within it. For example, when running muon alignment, it is desirable to use the very latest tracker alignment conditions, which may not yet be in a published global tag, or to use a particular misalignment scenario which is not included in an existing MC global tag.

Note that in the following the connect string is untracked so this is only suitable for tests in which full provenance tracking is not important. See the alternative method using es_prefer below for a fully tracked configuration.

The following example shows a configuration in which the tag Early900GeVCollision_7p4cm_STARTUP_mc, read from the production database, is used for the beamspot, replacing whatever beamspot is specified in the global tag:

process.GlobalTag.toGet = cms.VPSet(
  cms.PSet(record = cms.string("BeamSpotObjectsRcd"),
           tag = cms.string("Early900GeVCollision_7p4cm_STARTUP_mc"),
           connect = cms.string("frontier://FrontierProd/CMS_CONDITIONS")
          )
)

The following example shows a configuration in which the tags for TrackerAlignmentRcd and TrackerAlignmentErrorRcd are taken from an sqlite file, in place of whatever tags are specified for those records in the global tag:

process.GlobalTag.toGet = cms.VPSet(
  cms.PSet(record = cms.string("TrackerAlignmentRcd"),
           tag = cms.string("Alignments"),
           connect = cms.string("sqlite_file:myAlignments.db")
          ),
  cms.PSet(record = cms.string("TrackerAlignmentErrorRcd"),
           tag = cms.string("AlignmentErrors"),
           connect = cms.string("sqlite_file:myAlignments.db")
          )
)

The following example shows a configuration for which a 100pb scenario for tracker mis-alignment is read from the production database, in place of whatever tags are specified for those records in the global tag:

process.GlobalTag.toGet = cms.VPSet(
  cms.PSet(record = cms.string("TrackerAlignmentRcd"),
           tag = cms.string("Tracker100pbScenario310_mc"),
           connect = cms.string("frontier://FrontierProd/CMS_CONDITIONS)
          ),
  cms.PSet(record = cms.string("TrackerAlignmentErrorRcd"),
           tag = cms.string("Tracker100pbScenarioErrors310_mc"),
           connect = cms.string("frontier://FrontierProd/CMS_CONDITIONS")
          )
)

The set of mis-alignment scenario tags for each release can be found here.

Alternative method using es_prefer

An alternative method for global tag customization is to use es_prefer: In this case, an es_source is added to the cfg to define the alternative conditions to be used, followed by an es_prefer statement to indicate that this es_source should take precedence over any other source for that condition object (in particular, the global tag). The advantage of this method is that all parameters are tracked, whereas the connect string is untracked in the above approach. The equivalent of the second example above would be:

from CondCore.CondDB.CondDB_cfi import *
process.CondDB.connect = 'sqlite_file:myAlignments.db"'
process.trackerAlignment = cms.ESSource("PoolDBESSource",CondDB,
                                        toGet = cms.VPSet(cms.PSet(record = cms.string("TrackerAlignmentRcd"),
                                                                   tag = cms.string("Alignments")),
                                                          cms.PSet(record = cms.string("TrackerAlignmentErrorRcd"),
                                                                   tag = cms.string("AlignmentErrors"))
                                                          )
                                        )
process.es_prefer_trackerAlignment = cms.ESPrefer("PoolDBESSource","trackerAlignment")

Special Instructions for using es_prefer with 2XY Releases

For 21X and 22X releases there is an es_prefer on the global tag FrontierConditions_GlobalTag_cff.py. For 22X releases it is necessary to use:

process.load("Configuration.StandardSequences.FrontierConditions_CMS.GlobalTag_noesprefer_cff")
in your cfg.py in place of:
process.load("Configuration.StandardSequences.FrontierConditions_CMS.GlobalTag_cff")
For 21X releases, it is necessary to check out Configuration/StandardSequences and edit FrontierConditions_CMS.GlobalTag_cff to remove the es_prefer.

For both 21X and 22X, depending on the global tag used, you may additionally need to remove lines from FrontierConditions_CMS.GlobalTag_noesprefer_cff.py (22X) or FrontierConditions_CMS.GlobalTag_cff.py (21X) to avoid EventSetup conflicts due to a condition being provided by both the global tag and a fake source. e.g. if you see:

---- EventSetupConflict BEGIN
two EventSetup Sources want to deliver type="DTMtime" label=""
from record DTMtimeRcd. The two providers are
1) type="DTFakeVDriftESProducer" label=""
2) type="PoolDBESSource" label="CMS.GlobalTag"
Please either
  remove one of these Sources
  or find a way of configuring one of them so it does not deliver this data
  or use an es_prefer statement in the configuration to choose one.
---- EventSetupConflict END

it means DT VDrift conditions are included in the global tag you are using, so you need to remove the fake source from the cff by (in this case) removing the line:

from CalibMuon.DTCalibration.DTFakeVDriftESProducer_cfi import *
from FrontierConditions_CMS.GlobalTag_noesprefer_cff.py (22X) or FrontierConditions_CMS.GlobalTag_cff.py (21X). If you change a cff.py file, remember to do scram b python.

Finally, make sure you do not have anywhere in your cfg:

process.prefer("CMS.GlobalTag")

Global Tags keys for RelVal workflows

See GT for release cycle page

Global Tags used in official data reprocessing / MC productions

Global Tags for PdmVMCcampaignPhaseISpring17GS MC Production for for 2017 DPG/POG studies and PF calibration
GT name Validity Comments
90X_upgrade2017_realistic_v20 GT for 9_0_0 PhaseI CMS, with plan1 HE and realistic conditions
90X_upgrade2017_realistic_ExtendedZeroMaterial_EGM_PFCalib GT for 9_0_0 PhaseI CMS, with plan1 HE and realistic conditions - same as 90X_upgrade2017_realistic_v20 adding no-tracker-material, for egamma
90X_upgrade2017_realistic_PerfectEcalIc_EGM_PFCalib GT for 9_0_0 PhaseI CMS, with plan1 HE and realistic conditions - same as 90X_upgrade2017_realistic_v20 perfect knowledge of ECAL IC's, for egamma

Global Tags for PdmVMCcampaignPhaseIFall16DR MC Production for for early 2017 TSG studies with plan0 phaseI detector
GT name Validity Comments
90X_upgrade2017_realistic_v6_C1 GT for 8_3_0 PhaseI Detector, with plan0 HE

Global Tags for PdmVMCcampaignRunIISummer16DR80Premix MC Production for Moriond 17 (80X)
GT name Validity Comments
80X_mcRun2_asymptotic_2016_TrancheIV_v8 GT for 80X (X>=20) as 80X_mcRun2_asymptotic_2016_TrancheIV_v6 with the following change:
new JEC for reMiniAod 02Feb2017 campaign (based on Summer16 MC)
80X_mcRun2_asymptotic_2016_TrancheIV_v7 GT for 80X (X>=20) as 80X_mcRun2_asymptotic_2016_TrancheIV_v6 with the following change:
addded e/gamma regressions labels as in PR #16968; egamma regressions not to be used as reported here
80X_mcRun2_asymptotic_2016_TrancheIV_v6 GT for 80X (X>=20) as 80X_mcRun2_asymptotic_2016_miniAODv2_v1 with the following change:
- L1T menu (as per HLT post MD2)
- Jet Energy Corrections (version Summer16)
- realistic CSC bad chambers
- Fixed ECAL TPG conditions for 2016 run simulation
- version of MC JEC to version Summer16_25nsV5
- update b-tagging HIP mitigation in jet probability calibration
- reverted RPC noise tag to 2012 values fixed centering in Pixel Barrel of Tracker misaligned scenario
- Beamspot according to new misalignment scenario
- Strip DQM AlCaRecoTriggerBit
- AlCaRecoTriggerBit for EcalTrg AlCaReco
- Tracker Alignment asymptotic sceanrio removing z-shrinkage effect
- EcalChannelStatus (as in Aug 2016)
- RPC noise and efficiency
- SiPixel dynamic inefficiency for 2016 data (high PU)
- Pixel channel status (as in Aug 2016)
- Strip channel status (as in Aug 2016)

Global Tags for 2016 legacy data re-reco for YYApr2017 reprocessing of 2016A-H (CMSSW_8_0_29)

GT name Validity Comments
80X_dataRun2_2016LegacyRepro_v4 GT for 80X (X>=29) as 80X_dataRun2_2016LegacyRepro_v3 with: fix of ECAL ICs to fix the high-eta EM deposits Sign-off talk
80X_dataRun2_2016LegacyRepro_v3 GT for 80X (X>=27) as 80X_dataRun2_2016SeptRepro_v4 with:
- Change in SiPixel Templates, GenError and Lorentz Angle. Sign-off talk
- Change in SiStrip Gain2 calibration, mostly adjustment of IOVs and a new IOV added. Announced here and signed-off talk
- Tracker alignment, APEs and surface deformations updated. signed-off talk
- Update of BeamSpot corresponding to the changes in tracker alignment package. signed-off talk
- Update of muon alignment and APEs. announcement
- Update of DtTrig. Announced here
- Update of whole ECAL package. signed-off talk. Changes includes update of ECAL pedestals, ADCtoGeV, ECAL alpha values, pulse shapes, time calibrations, channel status of both ECAL and ES, ECAL Laser corrections, ECAL and ES Channel quality, ECAL intercalibration and ES intercalibration.
- Update of HCAL gains and response corrections. announced here
- Update of global alignment (GPR)
- Update of L1 caloParam tag and addition of L1 muon param tags. announced here

Global Tags for 2016 data re-reco for 23Sept16 reprocessing of 2016A-G (80X)

GT name Validity Comments
80X_dataRun2_2016SeptRepro_v7 GT for 80X (X>24) as 80X_dataRun2_2016SeptRepro_v5 with:
- new jet energy corrections as announced here for 02Feb2017 reminiAOD (based on Summer16 MC)
80X_dataRun2_2016SeptRepro_v6 GT for 80X (X>20) as 80X_dataRun2_2016SeptRepro_v5 with:
- new labels for e/gamma regressions as in PR #16968 the PR was closed, waiting for update
80X_dataRun2_2016SeptRepro_v5 GT for 80X (X>20) as 80X_dataRun2_2016SeptRepro_v4 with:
- added record for L1TGlobalPrescalesVetoesRcd (L1T global prescales)
80X_dataRun2_2016SeptRepro_v4 GT for 80X (X>20) as 80X_dataRun2_Prompt_v11 with:
- updated beamspot to fix IOV assignment of 2016B-v2
- TrackerSurfaceDeformationRcd fixed to be consistent with TK alignment
- tag for Hcal Response corrections containing the history previous to 2016
- updated AlCaRecoTriggerBits to allow usage of EcalAlCaTrg in all 2016
- ECAL transparency and ADC2GEV
- CSCAlignmentErrorExtended_6x6_offline
- DTAlignmentErrorExtended_6x6_offline
- Pixel templates, Generic errors, LA
- Tracker Alignment, Surface Deformations, APE
- LS-based BeamSpot
- HCAL Response corrections
- ES channel status
- DT TTrig
- IOVs of the SiStrip particle gains
- ECAL channel status
- HCAL channel status
- SiStrip bad channel map
- TrackProbabilityCalibration
- JetEnergy corrections and resolutions

Global Tags for 2016 data re-reco for ICHEP 2016 (80X)

GT name Validity Comments
80X_dataRun2_ICHEP16_repro_v0 GT for 80X (X>10) as 80X_dataRun2_Prompt_v9 with:
- updated pixel templates and generic errors from 2016B
- updated module level tracker alignment and APE from 2016B
- updated EB ES and EE alignment from 2016B
- updated DT CSS and global position record alignments from 2016B
- amended HCAL quality from 2016B
- amended HCAL gains from 2016B
- updated ECAL time calibration and pulse shape from 2016B
- updated ECAL ADC2GeV from 2016B
- refit lumi-based beamspot

Special Global Tags for Run2 MC production with realistic beamspot (80X)

3.8T beamspot

GT name Validity Comments
80X_mcRun2_asymptotic_RealisticBS_25ns_13TeV2016_v1_mc GT for 80X (X>10) Digi-Reco to be run on 71X GEN-SIM-RAW as 80X_mcRun2_asymptotic_v14 with:
- updated luminous region parameters as measured in data after pixel barycenter translation to simulate illumination in 3.8T 2016 data (i.e BeamSpotObjects_Realistic25ns_13TeV2016Collisions_v1_mc)

Global Tags for RunIISpring16DR80 MC Production(80X)
GT name Validity Comments
80X_mcRun2_asymptotic_2016_v3 GT for 80X (X>=3) as 80X_mcRun2_asymptotic_v6 with the following change:
- SiStrip updated channel map (all FEDs are unpacked)
- Pixel dynamic inefficiency, updated including measurement with 2015 data
- ECAL selective readout update as in 2016 DAQ
- ECAL noise and transparency loss (extrapolated from measurements in 2015) for 15/fb
- ES updated noise and pedestals (rom measurements in 2015)
- ES channel map, updated to start of 2016
- muon APE > 0 (derived comparing Ideal with Asymptotic alignment scenarios)
- HCAL updated channel map (removed 2 channels from re-worked HF PMT box)
80X_mcRun2_asymptotic_2016_miniAODv2 GT for 80X (X>=4) as 80X_mcRun2_asymptotic_2016_v3 with the following change:
- JECs for Spring15 MC miniAODv2 production
80X_mcRun2_asymptotic_2016_miniAODv2_v0 GT for 80X (X>=11) as 80X_mcRun2_asymptotic_2016_miniAODv2 with the following change:
updated Jet Energy corrections for HLT
- introducing uGT menu for Stage-II L1T
80X_mcRun2_asymptotic_2016_miniAODv2_v1 GT for 80X (X>=11) as 80X_mcRun2_asymptotic_2016_miniAODv2_v0 with the following change:
- updated offline JEC and JER
- updated uGT menu for Stage-II L1T

Special Global Tags for preparation of CosmicSpring16DR80 Cosmics Run2 MC production in 80X
GT name Validity Comments
80X_mcRun2cosmics_asymptotic_deco_v0 GT for 80X (X>=3) as 80X_mcRun2_asymptotic_2016_v3 with the following changes:
- top-bottom L1T trigger configuration for DT,RCP and CSC.
80X_mcRun2cosmics_asymptotic_peak_v0 GT for 80X (X>=3) as 80X_mcRun2_asymptotic_2016_v3 with the following changes:
- top-bottom L1T trigger configuration for DT,RCP and CSC.
- SiStrip noise for peak mode.

Special Global Tags for preparation of Run2 MC production in 80X
GT name Validity Comments
80X_mcRun2_asymptotic_v5_2016PixDynIneff GT for 80X (X>=0) as 80X_mcRun2_asymptotic_v5 with the following change:
- updated pixel dynamic inefficiency for 2016 digi-reco, based on 2015 data.
80X_mcRun2_asymptotic_2016EcalTune_15fb_v0 GT for 80X (X<=0) as 80X_mcRun2_asymptotic_v1 with the following changes:
- tuning of the thresholds of the zero-suppression (ZS tag) and the selective-readout (TPG tag) to safely run with a PU up to ~ 40-50 - end of 2015
- 15/fb integrated dose equivalent Ecal noise
80X_mcRun2_asymptotic_2016EcalTune_30fb_v0 GT for 80X (X<=0) as 80X_mcRun2_asymptotic_v1 with the following changes:
- tuning of the thresholds of the zero-suppression (ZS tag) and the selective-readout (TPG tag) to safely run with a PU up to ~ 40-50 - end of 2015
- 30/fb integrated dose equivalent Ecal noise

Special Global Tags for Run2 MC production with all channels working (80X)
GT name Validity Comments
80X_mcRun2_asymptotic_2016_AllChannelsGood_v0 GT for 80X (X>4) Digi-Reco to be run on 71X GEN-SIM-RAW as 80X_mcRun2_asymptotic_2016_v3 with:
- all channels working

Global Tags for RunIIFall15DR76 MC campaign (76X)
GT name Validity Comments
76X_mcRun2_asymptotic_v12 GT for 76X (X>=3) RunIIFall15DR76 campaign as 76X_dataRun2_v11 with the following change:
- latest version of JEC for offline (Summer15_25nsV6).
76X_mcRun2_asymptotic_RunIIFall15DR76_v1 GT for 76X (X>=3) RunIIFall15DR76 campaign as 76X_mcRun2_asymptotic_RunIIFall15DR76_v0 with: - updated JEC, adding L2L3 residuals corrections and uncertainties

Global Tags for 2015 EOY Re-reco (76X)
GT name Validity Comments
76X_dataRun2_v15 GT for 76X (X>=3) 2015 End of the Yerar data-reprocessing as 76X_dataRun2_v14 with the following change:
- updated Ecal ADC to GeV calibration with the correct value for B on.
76X_dataRun2_16Dec2015_v0 GT for 76X (X>=3) 2015 End of the Yerar data-reprocessing as 76X_dataRun2_v15 with the following change: - update of Fall15 V1 JEC, adding L2L3 residuals corrections and uncertainties.

Special Global Tags for Run2 MC production with all channels working (74X)
GT name Validity Comments
74X_mcRun2_asymptotic_AllChannelsGood_v0 GT for 74X (X>1) Digi-Reco to be run on 71X GEN-SIM-RAW as MCRUN2_74_V9 with:
- all channels working

Special Global Tags for Run2 MC production with realistic beamspot (74X)

3.8T beamspot

GT name Validity Comments
74X_mcRun2_asymptotic_realisticBS_v1 GT for 74X (X>6) Digi-Reco to be run on 71X GEN-SIM-RAW as MCRUN2_74_V9 with:
- updated luminous region parameters as measured in data after pixel barycenter translation to simulate illumination in 3.8T data with asymptotic alignment:
(i.e BeamSpotObjects_Realistic50ns_13TeVCollisions_Asymptotic_v0_mc)
- added Negative energy filter
- adding 74X DR L1 menu for 25ns
- changed the pixel dead channels map to v27
741_p1_mcRun2_Realistic_50ns_v0 GT for 741_patch1 Digi-Reco to be run on 71X GEN-SIM-RAW as MCRUN2_74_V8 with:
- updated luminous region parameters as measured in data after pixel barycenter translation to simulate illumination in 3.8T data with startup alignment: (i.e. BeamSpotObjects_Realistic50ns_13TeVCollisions_Startup_v0_mc )
- changed the pixel dead channels map to v27

0T beamspot

74X_mcRun2_asymptotic_realisticBS_v0 GT for 74X Digi-Reco to be run on 71X GEN-SIM-RAW as MCRUN2_74_V9 with:
- updated luminous region parameters as measured in data after pixel barycenter translation to simulate illumination in 0T data
(i.e. BeamSpotObjects_Realistic50ns_13TeVCollisions_v5_mc)
- added Negative energy filter
- adding 74X DR L1 menu for 25ns
74X_mcRun2_startup_realisticBS_v0 GT for 74X Digi-Reco to be run on 71X GEN-SIM-RAW as MCRUN2_74_V8 with: :
- updated luminous region parameters as measured in data after pixel barycenter translation simulate illumination in 0T data
(i.e. BeamSpotObjects_Realistic50ns_13TeVCollisions_v5_mc)
- added Negative energy filter
- adding 74X DR L1 menu for 50ns
74X_mcRun2_startup_realistic50ns_v0 GT for 74X Digi-Reco to be run on 71X GEN-SIM-RAW as MCRUN2_74_V8 with:
- updated Tracker Alignment Startup scenario
- updated SiPixel Quality map (v27)
- updated beamspot to simulate pixel barrel illumination in run2015B B=0T data
(i.e. BeamSpotObjects_Realistic50ns_13TeVCollisions_v4_mc), re-fitting with realistic tracker conditions
- added negative energy filter
- adding 74X DR L1 menu for 50ns

Global Tags for Run2 MC Production(74X)
GT name Validity Comments
MCRUN2_74_V9 GT for 74X Digi-Reco to be run on 71X GEN-SIM-RAW 25ns, asymptotic scenario as in RelValGT
MCRUN2_74_V9A GT for 74X Digi-Reco to be run on 71X GEN-SIM-RAW 50ns, asymptotic scenario as in RelValGT
MCRUN2_74_V8 GT for 74X Digi-Reco to be run on 71X GEN-SIM-RAW 50ns, startup scenario as in RelValGT

Global Tags for large gun sample (72X)
GT name Validity Comments
MCRUN2_72_V3 GT for 72X to be run on 71X GEN-SIM-RAW as GT for release MCRUN2_72_V1 with
- updated Reconstruction beamspot, matching the vertex smearing used for the GEN-SIM

Global Tags for Run2 TSG studies (72X)
GT name Validity Comments
MCRUN2_72_V4A GT for 72X to be run on 62X GEN-SIM-RAW (50ns) as GT for release PRE_LS172_V15 with
- ECAL conditions compatibility tags to run over the 62X GEN-SIM-RAW produced in TSG Fall13dr campaign
- latest HCAL conditions to avoid "spikes" in HCAL
- updated L1 tags
- updated JEC with Winter14/CSA14 first version for 50 ns
MCRUN2_72_V3A GT for 72X to be run on 62X GEN-SIM-RAW (25ns) as GT for release PRE_LS172_V15 with
- ECAL conditions compatibility tags to run over the 62X GEN-SIM-RAW produced in TSG Fall13dr campaign
- latest HCAL conditions to avoid "spikes" in HCAL
- updated L1 tags
- updated JEC with Winter14/CSA14 first version for 25 ns

Run2 MC production (71X)
GT name Validity Comments
MCRUN2_71_V0 GT for 71X GEN-SIM (50ns) as last GT for release POSTLS171_V18 with
- removed ExtendedTest2014 geometry (it is a Run1 geometry)
- added zero material geometry for Run2
- updated Extended geometry for Run2 with tracker material budget, including TEC bulkhead material description, and RPC RE4 rotation fix
- updated Ideal geometry for Run2 with tracker material budget, not including TEC bulkhead material description, and RPC RE4 rotation fix
- updated RPC reconstruction geometry with the fix in station 4 strip numbering
- updated Reconstruction beamspot with first estimate after Chamonix
- updated JEC with Winter14/CSA14 first version
MCRUN2_71_V1 GT for 71X GEN-SIM (25ns) as last GT for release POSTLS171_V17 with
- removed ExtendedTest2014 geometry (it is a Run1 geometry)
- added zero material geometry for Run2
- updated Extended geometry for Run2 with tracker material budget, including TEC bulkhead material description, and RPC RE4 rotation fix
- updated Ideal geometry for Run2 with tracker material budget, not including TEC bulkhead material description, and RPC RE4 rotation fix
- updated RPC reconstruction geometry with the fix in station 4 strip numbering
- updated Reconstruction beamspot with first estimate after Chamonix
- updated JEC with Winter14/CSA14 first version

PHYS14 exercise (72X)
GT name Validity Comments
PHYS14_25_V1 GT for 72X DIGI-RECO (25ns asymptotic) as last GT for release PRE_LS172_V15 with
- consistent reco geometries for matching the Fall13 GEN-SIM production
PHYS14_50_V1 GT for 72X DIGI-RECO (50ns asymptotic) as last GT for release PRE_LS172_V15 with
- consistent reco geometries for matching the Fall13 GEN-SIM production
- L1 RPC configuration for run 2 with HSCP triggers enabled
- HLT AK4 and AK8 JEC for 50 ns bunch spacing
PHYS14_ST_V1 GT for 72X DIGI-RECO (50ns startup) as last GT for release MCRUN2_72_V0 with
- consistent reco geometries for matching the Fall13 GEN-SIM production
- fix of the ECAL end cap misalignment to be pessimistic
- fix for ECAL pedestals: very noisy channels are removed (standard deviation larger than 10 ADC fixed at 5)
- HLT AK4 and AK8 JEC for 50 ns bunch spacing
PHYS14_25_V2 GT for 72X DIGI-RECO (25ns asymptotic) as PHYS14_25_V1 with
- fix for ECAL pedestals: very noisy channels are removed (standard deviation larger than 10 ADC fixed at 5)
- updated AK4/5/7/8 JEC
PHYS14_25_V3 GT for 72X DIGI-RECO (25ns asymptotic) Same as PHYS14_25_V2, but with CSA14 jet energy corrections(!). Do not use this tag for analyzing PHYS14 samples if you want the latest jet energy corrections; use PHYS14_25_V2 instead.
PHYS14_50_V2 GT for 72X DIGI-RECO (50ns asymptotic) as PHYS14_50_V1 with
- fix for ECAL pedestals: very noisy channels are removed (standard deviation larger than 10 ADC fixed at 5)

Notes:

  • PHYS14_25_V1 has all the tags stored in the CondDBv2 production account, while the HCAL OOT PU corrections are still in development DB for CondDBv1. Given that 720 is reading the new Conditions, this Global Tag is ok for production. As soon as the tags are migrated to old production accounts, we will anyhow create a new Global Tag.
  • The RPC L1T in 2015 will not have any special configuration for 50 ns w.r.t 25 ns, anyway it will be HSCP-oriented: hence, for Run2 simulations, there is no more difference between the two bunch crossing scenarios.
  • Unfortunately, there are no existing SIM geometry tags containing only the TECR7 bug-fix for Run2 in 62X, in order to match the one used by the GEN-SIM production (6.2.12.patch1), so we cannot include in this Global Tag -for sake of consistency- the "bug-fixed" SIM geometry (even if not consumed).

2013 re-reco for pp and pA (53X)
GT name Validity Comments
GR_R_53_V21 Re-reco of 2013 pp (@ 2.76 TeV) as GR_R_53_V21 for 2012 re-reco with
- IOV extension for Tracker alignment, covering Pixel large structures movements occurring after the end of 2012 pp

DATA.MC validation exercise (71X)

GT name Validity Comments
START71_V8 GT for 71X GEN-SIM step as last GT for release START71_V7
- extended material budget XML geometry
START71_V8A GT for 71X DIGI-RECO MC step (50ns) as START71_V8
- ECAL 2012 run dependent conditions
GR_R_71_V5 GT for 71X data reco as the last GT for release GR_R_71_V5

CSA14 exercise

miniAOD production
GT name Comments
PLS170_V7AN2 GT for 25ns (asymptotic alignment and calibration scenario) 2nd production, as PLS170_V7AN1 + updated JEC
PLS170_V6AN2 GT for 50ns (more pessimistic alignment and calibration scenario) 2nd production, as PLS170_V6AN1 + updated JEC
PLS170_V7AN1 GT for 25ns (asymptotic alignment and calibration scenario), as POSTLS170_V7 + updated JEC
PLS170_V6AN1 GT for 50ns (more pessimistic alignment and calibration scenario), as POSTLS170_V6 + updated JEC
GR_70_V2_AN1 GT for data in 70X, as GR_R_70_V2 + updated JEC

Collisions
GT name Validity Comments
POSTLS170_V5 GT for 70X DIGI-RECO MC step (25ns) as POSTLS170_V3 plus
- updated AlCa conditions for the 25 ns CSA14 scenario
POSTLS170_V6 GT for 70X DIGI-RECO MC step (50ns) as POSTLS170_V4 plus
- updated AlCa conditions for the 50 ns CSA14 scenario
- pre-mixing
- SiStrip offsets for APV cycle
POSTLS170_V7 GT for 70X DIGI-RECO MC step (25ns) as POSTLS170_V5 plus
- pre-mixing

Cosmics (70X)
GT name Validity Comments
COSM70_DEC_V2 GT for 70X DIGI-RECO DECO cosmic simulation (optimistic scenario) as COSMC_53_DECC plus
- updated AlCa conditions for the 25 ns CSA14 scenario
- updated L1 trigger top-bottom conditions (LHC9)
COSM70_DEC_V1 GT for 70X DIGI-RECO DECO cosmic simulation (pessimistic scenario) as COSMC_53_DECC plus
- updated AlCa conditions for the 50 ns CSA14 scenario
- updated L1 trigger top-bottom conditions (LHC9)
COSM70_PEA_V2 GT for 70X DIGI-RECO PEAK cosmic simulation (optimistic scenario) as COSMC_53_PEAC plus
- updated AlCa conditions for the 25 ns CSA14 scenario
- updated L1 trigger top-bottom conditions (LHC9)
COSM70_PEA_V1 GT for 70X DIGI-RECO PEAK cosmic simulation (pessimistic scenario) as COSMC_53_PEAC plus
- updated AlCa conditions for the 50 ns CSA14 scenario
- updated L1 trigger top-bottom conditions (LHC9)

Cosmics (72X)
GT name Validity Comments
COSM72_DEC_V1 GT for 72X DIGI-RECO DECO cosmic simulation (optimistic scenario) as COSM70_DEC_V2 plus
- compatibility tags
- updated L1 DT menu
COSM72_PEA_V1 GT for 72X DIGI-RECO PEAK cosmic simulation (optimistic scenario) as COSM70_PEA_V2 plus
- compatibility tags
- updated L1 DT menu
COSM72_DES_V1 GT for 72X DIGI-RECO cosmic simulation (DESIGN scenario) as DESRUN2_72_V0 plus
- compatibility tags
- updated L1 menu

ReReco of 2012D in CMSSW_7_0_0
GT name Comments
FT_R_70_V1 GT for re-reco of 2012 data in 7_0_0 , including best 2012 conditions as in FT_R_53_V21 + release compatibility tags

8 TeV MC Production in CMSSW_7_0_0 (special ECAL request)
GT name Comments
START70_V7A GT for MC production in 7_0_0, as START70_V7 including ECAL run dependent 2012 conditions ( START53_V29A )

13 TeV DR in CMSSW_7_0_0 (special ECAL request)
GT name Comments
DESIGN70_V7 design GT for 13TeV digi-reco production (no dead modules/channels) in 7_0_0 with ideal detector conditions

8 TeV MC Production in CMSSW_5_3_X (special ECAL request)
GT name Comments
START53_V29B GT for MC production in 5_3_X, including ECAL run dependent 2012 conditions ( START53_V29A ), and ideal ECAL inter calibration constants.

7TeV Heavy Ion MC "Legacy" reprocessing
GT name Comments
STARTHI53_LV1 GT for 53X DIGI-RECO MC step, as START53_LV6 + compatibility tags and Castor tags
STARTHI53_F44 reference GT (44X contidions ported into 53X), as STARTHI44_V12 + compatibility tags for 53X
STARTHI44_V12 reference GT for 44X release

2011 Heavy Ion data "Legacy" reprocessing
GT name Comments
FT_R_53_LV9 GT for 53X peripheral PbPb data reprocessing using pp reconstruction, as GR_R_53_LV6 with:
- updated centrality tag
- new JEC as requested here
GR_R_53_LV6 GT for 53X data re-RECO, as FT_R_53_LV5 (legacy pp re-reco) with
- compatibility tags
- updated Tracker alignment
- updated BeamSpot
- Castor conditions
- HCAL ZS tags
GR_R_53_LV6A reference GT (44X conditions ported into 53X), as GR_P_V27A with
- compatibility tags for 53X
GR_P_V27A reference GT for 44X release (used for 2011 HI reprocessing in 44X, same as in prompt)

7TeV MC "Legacy" reprocessing in CMSSW_5_3_X
GT name Campaign Comments Latest analysis GT
START53_LV6 DIGI-RECO GT for 53X DIGI-RECO MC step (updated conditions, see this page), as START53_LV4 + updated TRK and MUO misalignment scenario, beamspot and b-tag JP START53_LV6A1
START53_LV4 HLT-reDIGI GT for 53X HLT-reDIGI MC step (updated conditions, see GT44XTo53X), as START53_LV3 + updated L1 menu and measured reco BS not needed
START53_LV3 GEN-SIM GT for 53X GEN-SIM MC Production (updated conditions, see GT44XTo53X) not needed

NOTE : The newly derived 2011 JEC have been included in the analysis GTs. b-tagging SF are under evaluation and will be included afterwards.

2011AB Legacy re-reco (CMSSW_5_3_11)
GT used for production Period Re-reco Comments Latest analysis GT
FT_R_53_LV5 2011A+B 12Oct2013ReReco Legacy re-reco of 2011A+B in 53X FT_53_LV5_AN1
FT_R_53_LV3 2011A+B 21June2013ReReco Legacy re-reco of 2011A+B in 53X for Hgg ONLY FT_53_LV5_AN1

NOTE : The newly derived 2011 JEC have been included in the analysis GTs.

Winter13 2012 A, B, C, D datasets re-reco with CMSSW_5_3_7_patch6

NOTE : The new 2013 JEC (Summer13_V4) have been included in the data GT (FT_53_V21_AN6) and in the MC GTs (START53_V26 & START53_V27). The BTag scale factors are included in the MC GTs.

GT used for production Period Re-reco Comments Latest analysis GT for data Latest analysis GT for data (for CMSSW>=538_patch3) Analysis GTs for MC Analysis GTs for MC (for CMSSW>=538_patch3)
FT_R_53_V18 2012ABC 22Jan2013 re-reco CMSSW_5_3_7_patch6 First part of the staged reprocessing of 2012 collision data FT_53_V21_AN6 FT53_V21A_AN6 START53_V26 START53_V27
FT_R_53_V21 2012D 22Jan2013 re-reco CMSSW_5_3_7_patch6 Second part of the staged reprocessing of 2012 collision data FT_53_V21_AN6 FT53_V21A_AN6 START53_V26 START53_V27

2012ABCD datasets re-reco + prompt (CMSSW = [5_3_3_patch1 ; 5_3_8_patch2])

Please see section "Summary of Global Tags used in official data re-recos or MC productions" for the latest recommendations.

Mixing prompt and re-reco dataset as recommended here. The GTs provided here for the analysis are only compatible with 5_3_3_patch1 <= CMSSW < 5_3_8_patch3. The upper release limit is due to Castor saturations compatibility issues.

NOTE1: for all the details concerning how to combine these datasets, please refer to the official PdmV page

NOTE2: the GT suffix "AN4" indicates that the new 2012 b-tag SF have been included in the data GT, with respect to the previous version ("AN3")

NOTE3: the correspondent MC GTs including the new 2012 b-tag SF are also indicated and have to be "paired" with the corresponding datasets Prompt + Reco (here the suffix "PR"), to be consistent with the dataset used to derive them.

GT used for production Period Re-reco Comments Latest analysis GT Corresponding MC GTs Corresponding MC GTs (for CMSSW>=538_patch3)
FT_R_53_V6 2012AB July13 2012 re-reco of 2012AB in 53X FT_53_V6C_AN4 START53_V18PR START53_V19PR
FT_R_53_V6C 2012A Aug06 2012 re-reco of run-range 190782-190949 FT_53_V6C_AN4 START53_V18PR START53_V19PR
FT_R_53_V10 2012C-v1 Aug24 2012 re-reco of 2012C (v1) FT53_V10A_AN4 START53_V18PR START53_V19PR
GR_P_V41 2012C-v2 prompt reco for 2012C_v2 prompt reco GR_P_V42_AN4 START53_V18PR START53_V19PR
FT_P_V42C 2012C (only 201191) 11Dec 2012 ecal recovery of run 201191 FT_P_V42C_AN4 START53_V18PR START53_V19PR
GR_P_V42 2012D prompt reco for 2012D prompt reco GR_P_V42_AN4 START53_V18PR START53_V19PR

Special Pixel re-reco(16Jan), please refer here how to combine correctly the JSON!

TAGNAME Period Re-reco Comments Latest analysis GT Corresponding MC GTs Corresponding MC GTs (for CMSSW>=538_patch3)
FT_P_V43E 2012D (only range: 207883-208307) 16Jan 2013 recovery of 2012D run range 207883-208307 FT_P_V43E_AN4 START53_V18PR START53_V19PR

2012 B, C, D: multijet parked dataset (CMSSW_5_3_6)

TAGNAME Period Re-reco Comments Latest analysis GT Corresponding MC GTs Corresponding MC GTs (for CMSSW>=538_patch3)
FT_R_53_V6C 2012B parked Same as 2012B July13 re-reco FT_53_V6C_AN4 START53_V18PR START53_V19PR
FT_R_53_V10A 2012Cv1 parked Same as 2012Cv1 Aug24 re-reco FT53_V10A_AN4 START53_V18PR START53_V19PR
FT_P_V42C 2012Cv2 parked Same as 2012Cv2 prompt reco, fixed ECAL laser tag (for run 201191) FT_P_V42C_AN4 START53_V18PR START53_V19PR
FT_P_V42 2012D (part1) parked Same as 2012D prompt reco FT_P_V42_AN4 START53_V18PR START53_V19PR
FT_P_V42D 2012D (part2) parked Same as 2012D prompt reco FT_P_V42D_AN4 START53_V18PR START53_V19PR

2012 C v1: data re-reco (CMSSW_5_3_2_patch4)

TAGNAME Re-reco Latest analysis GT
FT_R_53_V10 Aug24, 2012 FT_53_V10_AN4

2012 A and B: data re-reco (CMSSW_5_3_2_patch4 and CMSSW_5_3_3_patch1)

TAGNAME Re-reco Latest analysis GT
FT_R_53_V6 July13, 2012 CMSSW_5_3_2_patch4 FT_53_V6_AN4
FT_R_53_V6C Aug06, 2012 CMSSW_5_3_3_patch1 FT_53_V6C_AN4

2012: post-ICHEP data re-reco ( CMSSW_5_2_5_patch3 and CMSSW_5_2_5_ecalpatch1 ) for H->gg and H->ZZ
TAGNAME Re-reco Latest analysis GT
FT_R_52_V8D June27, 2012 CMSSW_5_2_5_patch3 FT_52_V8D_AN4
FT_R_52_V8E June27, 2012 CMSSW_5_2_5_ecalpatch1 FT_52_V8E_AN4

2012: pre-ICHEP data re-reco with CMSSW_5_2_5_patch3 and CMSSW_5_2_5_ecalpatch1 for H->gammagamma
TAGNAME Re-reco Latest analysis GT
FT_R_52_V8 Jun8, 2012 CMSSW_5_2_5_patch3 FT_52_V8_AN4
FT_R_52_V8A Jun8, 2012, CMSSW_5_2_5_ecalpatch1 FT_52_V8A_AN4

2012: special data re-reco with CMSSW_5_2_5_ecalpatch1 to recover corrupted ECAL data
TAGNAME Re-reco Latest analysis GT
FT_P_V32B May23 FT_P_V32B_AN4

2011 data re-reco with 44X
TAGNAME Re-reco Latest analysis GT
FT_R_44_V11 Nov19 FT44_V11_AN1
FT_R_44_V9 Nov8 FT44_V9_AN1

2011 data re-reco with 42X
TAGNAME Re-reco Analysis GT
FT_R_42_V24 Jan16 FT42_V24_AN1
FT_R_42_V21B Nov30 FT42_V21B_AN1
GR_R_42_V22 Nov4, 2011B GR42_V22_AN1
GR_R_42_V22A Nov4, 2011A GR42_V22A_AN1
FT_R_42_V21A Oct4 FT42_V21A_AN1
FT_R_42_V20A Aug5 FT42_V20A_AN1
FT_R_42_V18A Jul5-HF FT42_V18A_AN1
FT_R_42_V17A Jul5 FT42_V17A_AN1
FT_R_42_V16A Jul2-HF FT42_V16A_AN1
FT_R_42_V15A Jul2 FT42_V15A_AN1
FT_R_42_V13A May10 FT42_V13A_AN1
FT_R_42_V10A 42X re-reco of 2010 data

2012 MC production
production release (used for reco) TAGNAME (used for reco) Suggested for analysis comments
Summer12_DR53X 53X START53_V7A START53_V7G same Gen/Sim as Summer12_DR51X. Only re-digi, re-reco
Summer12_DR52X 52X START52_V9 START52_V9F same Gen/Sim as Summer12_DR51X. Only re-digi, re-reco
Summer12_DR51X 51X START50_V15    

2011 MC production
production release (used for reco) TAGNAME (used for reco) comments
Fall11_Chamonix 2012 44X START44_V10 same as Fall11_R3, compatible with V6 L1 menu
Fall11_R4 44X START44_V9B close to Fall11_R3, with updated ECAL and alignment conditions
Fall11_R3 44X START44_V5 same digis as Fall11_R2
Fall11_R2 42X START42_V14B redigi of Summer11 samples with more pileup
Summer11 42X START42_V11  

Global Tags for Data Taking

Global Tags for 2017 data taking

HLT reconstruction Global Tags

TAGNAME Validity Description Comments
92X_dataRun2_HLT_v7 for CMSSW_9_2_8 onwards collisions with v2.2 menu 92X_dataRun2_HLT_v5 with
- change the tag for PF calibrations for HLT
- change the tag for PF calibrations at HLT
92X_dataRun2_HLT_v5 for CMSSW_9_2_6 onwards first collisions 92X_dataRun2_HLT_v4 with
- includes CTPPS tags and remove offline PF corrections tags
- includes CTPPS tags and remove offline PF corrections tags which are not used in HLT and DQM
92X_dataRun2_HLT_v4 for CMSSW_9_2_0 onwards first collisions 92X_dataRun2_HLT_v2 with
- updated JEC tags to fix synchronisation and allow to append IOVs
- updated PFCalibration tag to fix synchronisation and allow to append IOVs
90X_dataRun2_HLT_v2 for CMSSW_9_0_2 onwards CRUZET/CRAFT 90X_dataRun2_HLT_v1 with
- in GEM reco geometry tag the IOV has been moved to first run of 2017
- update of L1T CaloParam and addition of L1T MuonParam tags
- technical update of HCAL reco param tag
90X_dataRun2_HLT_v1 for CMSSW_9_0_0_pre5 onwards first test of HLT MWGR1 with phaseI plan1 HCAL detector in raw as 90X_dataRun2_HLT_v1 with
- a run-dependent HCAL reco geometry to serve the phaseI-plan1 for runs >=287446
- the full set of HCAL calibrations which include the upgraded HF and plan1 HE

Express reconstruction Global Tags

TAGNAME Validity Description Comments
92X_dataRun2_Express_v7 for CMSSW_9_2_7 onwards collisions 92X_dataRun2_Express_v6 with
- include CTPPS tags
92X_dataRun2_Express_v6 for CMSSW_9_2_7 onwards collisions 92X_dataRun2_Express_v4 with
- update HAD and EM PF cluster calibration
92X_dataRun2_Express_v4 for CMSSW_9_2_6 onwards collisions 92X_dataRun2_Express_v2 with
- change of pixel local calibration and derived alignment to account for the recalibrarted pixel VCAL
92X_dataRun2_Express_v2 for CMSSW_9_2_0 onwards first collisions 90X_dataRun2_Express_v4 with
- change of pixel mapping tag to fix the phaseI history
- PGeometricDetExtra, PGeometricDet, PTrackerParameters adapted to have the same history
90X_dataRun2_Express_v4 for CMSSW_9_0_2 onwards CRUZET/CRAFT as 90X_dataRun2_Express_v2 with
- In GEM reco geometry tag the IOV has been moved to first run of 2017
- update of L1T CaloParam and addition of L1T MuonParam tags
- technical update of HCAL reco param tag.
90X_dataRun2_Express_v2 for CMSSW_9_0_0_pre5 onwards first test of T0 with phaseI plan1 HCAL detector in raw as 90X_dataRun2_Express_v1 with
- Jet Energy Correction adapted to pA and energy with better accuracy at low pT
- inclusion of GEM geometry, required by the 2017 CMSSW eras
- a run-dependent HCAL reco geometry to serve the phaseI-plan1 for runs >=287446
- the full set of HCAL calibrations which include the upgraded HF and plan1 HE
- the updated Jet Energy corrections
90X_dataRun2_Express_v1 for CMSSW_9_0_0_pre4 onwards First Express GT for 90X to address the replay request by Slava : https://hypernews.cern.ch/HyperNews/CMS/get/tier0-Ops/1564.html Copy of 90X_dataRun2_Express_v0. as 90X_dataRun2_Express_Queue

Prompt reconstruction Global Tags

TAGNAME Validity Description Comments
92X_dataRun2_Prompt_v9 for CMSSW_9_2_11 onwards collisions 92X_dataRun2_Prompt_v8 with
- remove the separation of express and prompt tags for pixel offline and tracker alignment tags. bring back the consistency in beamspot computation
92X_dataRun2_Prompt_v8 for CMSSW_9_2_7 onwards collisions 92X_dataRun2_Prompt_v7 with
- adding CTPPS tags
92X_dataRun2_Prompt_v7 for CMSSW_9_2_7 onwards collisions 92X_dataRun2_Prompt_v7 with
- update HAD and EM PF cluster calibration
92X_dataRun2_Prompt_v6 for CMSSW_9_2_6 onwards collisions 92X_dataRun2_Prompt_v5 with
- change of pixel local calibration and derived alignment to account for the recalibrarted pixel VCAL
92X_dataRun2_Prompt_v5 for CMSSW_9_2_6 onwards collisions 92X_dataRun2_Prompt_v4 with
- temporarily DECOUPLE express and prompt for pixel commissioning , which will be reverted
- pixel genErrors, templates, lorenzAngle . tracker Alignmenet, APE and SURFACES: all these tags are copied from their express versio
92X_dataRun2_Prompt_v4 for CMSSW_9_2_0 onwards first collisions 92X_dataRun2_Prompt_v2 with
- splitting of pixel gain between express and prompt
92X_dataRun2_Prompt_v2 for CMSSW_9_2_0 onwards first collisions 90X_dataRun2_Prompt_v3 with
- change of pixel mapping tag to fix the phaseI history
- PGeometricDetExtra, PGeometricDet, PTrackerParameters adapted to have the same history
90X_dataRun2_Prompt_v3 for CMSSW_9_0_2 onwards CRUZET/CRAFT as 90X_dataRun2_Prompt_v2 with
- In GEM reco geometry tag the IOV has been moved to first run of 2017
- update of L1T CaloParam and addition of L1T MuonParam tags
- technical update of HCAL reco param tag and prompt version of HCAL channel quality, gains and response corrections are added instead of hlt ones.
90X_dataRun2_Prompt_v2 for CMSSW_9_0_0_pre5 onwards first test of T0 with phaseI plan1 HCAL detector in raw as 90X_dataRun2_Prompt_v1 with
- Jet Energy Correction adapted to pA and energy with better accuracy at low pT
- inclusion of GEM geometry, required by the 2017 CMSSW eras
- a run-dependent HCAL reco geometry to serve the phaseI-plan1 for runs >=287446
- the full set of HCAL calibrations which include the upgraded HF and plan1 HE
- the updated Jet Energy corrections
90X_dataRun2_Prompt_v1 for CMSSW_9_0_0_pre4 onwards First prompt GT for 90X to address the replay request by Slava : https://hypernews.cern.ch/HyperNews/CMS/get/tier0-Ops/1564.html. Copy of 90X_dataRun2_Prompt_v0 with infinite snapshot time. as 90X_dataRun2_Prompt_Queue

Global Tags for 2016 data taking

HLT reconstruction Global Tags
TAGNAME Validity Description Comments
80X_dataRun2_pA_HLT_v0 for CMSSW_8_0_X X>=22 To be used for 2016 pA operations as 80X_dataRun2_HLT_v12 with
- Jet Energy Correction adapted to pA and energy with better accuracy at low pT
80X_dataRun2_HLT_v12 for CMSSW_8_0_X X>4 To be used for 2016 pre-beam operations as 80X_dataRun2_HLT_v11 with
- new tags for DT and CSC Alignment errors (allow updates via append IOV with HLT synchronization)
80X_dataRun2_HLT_v11 for CMSSW_8_0_X X>4 To be used for 2016 pre-beam operations as 80X_dataRun2_HLT_v10 with
- adding 7 payloads for GBRWrapperRcd for tracking MVA needed by CMSHLT-716
80X_dataRun2_HLT_v10 for CMSSW_8_0_X X>3 To be used for 2016 pre-beam operations as 80X_dataRun2_HLT_v9 with
-updated set of HLT Jet Energy correction (v11)
80X_dataRun2_HLT_v9 for CMSSW_8_0_X X>3 To be used for 2016 pre-beam operations as 80X_dataRun2_HLT_v8 with
- updated set of HLT Jet Energy correction (v10)
80X_dataRun2_HLT_v8 for CMSSW_8_0_X X>2 To be used for 2016 pre-beam operations as 80X_dataRun2_HLT_v7
- better nomenclature for L1TUtmTriggerMenuRcd for stage-2 L1 menu (will receive O2O updates)
80X_dataRun2_HLT_v7 for CMSSW_8_0_X X>2 To be used for 2016 pre-beam operations as 80X_dataRun2_HLT_v6
- adding new Condition Format L1TUtmTriggerMenuRcd for stage-2 L1 menu (will receive O2O updates)
80X_dataRun2_HLT_v6 for CMSSW_8_0_X X>0 To be used for 2016 MWGR-III operations as 80X_dataRun2_HLT_v4
- introducing an IOV in 2016 for Hcal Parameters to include 1x1 HF trigger primitives
80X_dataRun2_HLT_v4 for CMSSW_8_0_X X>0 To be used for 2016 MWGR-II operations as 80X_dataRun2_HLT_v3
- updated Hcal e-maps (unlabeled and full) for unpacking of uTCA FEDs in HBHE
80X_dataRun2_HLT_v3 for CMSSW_8_0_X X>0 To be used for 2016 MWGR-II operations as 80X_dataRun2_HLT_v2
- updated ES intercalibrations and ESEE intercalibrations
- added e-gamma mustache regressions for HLT
- updated HLT JEC energy correction with L2L3 residuals and hadron PF calibration
80X_dataRun2_HLT_v2 for CMSSW_8_0_X X>0 To be used for 2016 MWGR-II operations as 75X_dataRun2_HLT_v7
- added HLT label for B-tagging MVA calibrations
- new egamma regresions for 2016
- added payload for HCalParameterRcd
- added payload for HCalQIETypesRcd
- added label HLT for PFCalibrations
- added payload for PHcalParametersRcd
- technical change on the DTRecoUncertainties tag name to remove fully qualified V1 account name
- technical change on the ESInterCalibConstantsRcd and EcalGainRationsRcd to remove fully qualified V1 account name
- new version for PHcalRcd
- changed CaloTower topology

Express reconstruction Global Tags
TAGNAME Validity Description Comments
80X_dataRun2_Express_v15 for CMSSW_8_0_X X>=20 To be used for 2016 beam operations as 80X_dataRun2_Express_v15 with
- tags for JER and JER SF with content for DATA and with express synchronization
80X_dataRun2_Express_v14 for CMSSW_8_0_X X>=20 To be used for 2016 beam operations as 80X_dataRun2_Express_v13 with
- updated/added JER and JER Data/MC scale factors
80X_dataRun2_Express_v13 for CMSSW_8_0_X X>=19 To be used for 2016 beam operations as 80X_dataRun2_Express_v12 with
- added needed AlCaReco trigger keys for HIP monitoring
80X_dataRun2_Express_v12 for CMSSW_8_0_X X>=14 To be used for 2016 beam operations as 80X_dataRun2_Express_v11 with
- updated DropBoxMetaData (v5.1) to activate SiPixelAli PCL workflow in express/prompt production tag.
80X_dataRun2_Express_v11 for CMSSW_8_0_X X>=14 To be used for 2016 beam operations as 80X_dataRun2_Express_v10 with
- updated SiStrip and Tracking DQM TriggerBits from DB
80X_dataRun2_Express_v10 for CMSSW_8_0_X X>=10 To be used for 2016 beam operations as 80X_dataRun2_Express_v9 with
- correct snapshot time (set to infinity: 9999-12-31 23:59:59,000000)
80X_dataRun2_Express_v9 for CMSSW_8_0_X X>=10 Red led NOT TO USE! WRONG SYNCHRONIZATION Red led as 80X_dataRun2_Express_v8 with
- updated Jet Energy Corrections for 2016C including 2016 data-mc residuals and uncertainties
- added JEC for algortihm AK4PT and AK4Calo
- introduced new Tracker Alignment tag (copy of the existing one) for the purpose of switching on the SiPixelAli PCL.
80X_dataRun2_Express_v8 for CMSSW_8_0_X X>=10 To be used for 2016 beam operations as 80X_dataRun2_Prompt_v7 updating
- updated DropBoxMetadata payload to fix the SiStripGainAfterAbortGap PCL worflow.
80X_dataRun2_Express_v7 for CMSSW_8_0_X X>=8 To be used for 2016 beam operations as 80X_dataRun2_Prompt_v6 updating
- updated DropBoxMetadata payload to fix the SiPixeAli PCL worflow.
80X_dataRun2_Express_v6 for CMSSW_8_0_X X>=5 To be used for 2016 beam operations as 80X_dataRun2_Prompt_v4 updating
- splitting ECAL pedestal tag between HLT and EXPRESS/PROMPT
80X_dataRun2_Express_v4 for CMSSW_8_0_X X>3 To be used for 2016 pre-beam operations as 80X_dataRun2_Express_v3 adding
- better nomenclature for L1TUtmTriggerMenuRcd for stage-2 L1 menu (will receive O2O updates)
- 4 labels for JetResolutionScaleFactorRcd and 10 labels for JetResolutionRcd needed for MET code updates.
80X_dataRun2_Express_v3 for CMSSW_8_0_X X>2 To be used for 2016 pre-beam operations as 80X_dataRun2_Express_v2 adding
- new Condition Format L1TUtmTriggerMenuRcd for stage-2 L1 menu (will receive O2O updates)
80X_dataRun2_Express_v2 for CMSSW_8_0_X X>0 To be used for 2016 MWGR-III operations as 80X_dataRun2_Express_v1
- introducing an IOV in 2016 for Hcal Parameters to include 1x1 HF trigger primitives
80X_dataRun2_Express_v1 for CMSSW_8_0_X X>0 To be used for 2016 MWGR-II operations as 80X_dataRun2_Express_v0
- updated Hcal e-maps (unlabeled and full) for unpacking of uTCA FEDs in HBHE
80X_dataRun2_Express_v0 for CMSSW_8_0_X X>0 To be used for 2016 MWGR-II operations as 75X_dataRun2_Express_v0
- added HLT label for B-tagging MVA calibrations
- new egamma regresions for 2016
- added payload for HCalParameterRcd
- added payload for HCalQIETypesRcd
- added label HLT for PFCalibrations
- added payload for PHcalParametersRcd
- technical change on the DTRecoUncertainties tag name to remove fully qualified V1 account name
- new version for PHcalRcd
- changed CaloTower topology

Prompt reconstruction Global Tags
TAGNAME Validity Description Comments
80X_dataRun2_Prompt_v16 for CMSSW_8_0_X X>=24 Moriond17 recommandation for 02Feb2016 reminiaod as 80X_dataRun2_Prompt_v15 with
- new JEC for reMiniAod 02Feb2017 campaign (based on Summer16 MC)
80X_dataRun2_Prompt_v15 for CMSSW_8_0_X X>=20 To be used for 2016 beam operations as 80X_dataRun2_Prompt_v14 with
- castor local reconstruction tags cloned and separated from the hlt ones
80X_dataRun2_Prompt_v14 for CMSSW_8_0_X X>=20 To be used for 2016 beam operations as 80X_dataRun2_Prompt_v13 with
- tags for JER and JER SF with content for DATA and with express synchronization
80X_dataRun2_Prompt_v13 for CMSSW_8_0_X X>=20 To be used for 2016 beam operations as 80X_dataRun2_Prompt_v12 with
- updated/added JER and JER Data/MC scale factors
80X_dataRun2_Prompt_v12 for CMSSW_8_0_X X>=19 To be used for 2016 beam operations as 80X_dataRun2_Prompt_v11 with
- added needed AlCaReco trigger keys for HIP monitoring
80X_dataRun2_Prompt_v11 for CMSSW_8_0_X X>=14 To be used for 2016 beam operations as 80X_dataRun2_Prompt_v10 with
- amended SiPixelQuality history during post-MD2 Prompt Reco pause (split tag from HLT/Express)
80X_dataRun2_Prompt_v10 for CMSSW_8_0_X X>=14 To be used for 2016 beam operations as 80X_dataRun2_Prompt_v9 with
- updated SiStrip and Tracking DQM TriggerBits from DB
80X_dataRun2_Prompt_v9 for CMSSW_8_0_X X>=10 To be used for 2016 beam operations as 80X_dataRun2_Prompt_v8 with
- updated Jet Energy Corrections for 2016C including 2016 data-mc residuals and uncertainties
- added JEC for algortihm AK4PT and AK4Calo
- introduced new Tracker Alignment tag (copy of the existing one) for the purpose of switching on the SiPixelAli PCL.
80X_dataRun2_Prompt_v8 for CMSSW_8_0_X X>=5 To be used for 2016 beam operations as 80X_dataRun2_Prompt_v7 updating
- splitting ECAL pedestal tag between HLT and EXPRESS/PROMPT
80X_dataRun2_Prompt_v6 for CMSSW_8_0_X X>=5 To be used for 2016 pre-beam operations as 80X_dataRun2_Prompt_v5 updating
- new tags to accommodate DT and CSC Alignment errors (allow updates via append IOV with express synchronization)
- new tag for HBHENegativeEFilter (allows updates via append IOV with express synchronization)
- latest set of HLT JECs (v11)
80X_dataRun2_Prompt_v5 for CMSSW_8_0_X X>3 To be used for 2016 pre-beam operations as 80X_dataRun2_Prompt_v4 with:
- propagation of latest available set of HLT JECs (v10)
80X_dataRun2_Prompt_v4 for CMSSW_8_0_X X>3 To be used for 2016 pre-beam operations as 80X_dataRun2_Prompt_v3 adding
- better nomenclature for L1TUtmTriggerMenuRcd for stage-2 L1 menu (will receive O2O updates)
- 4 labels for JetResolutionScaleFactorRcd and 10 labels for JetResolutionRcd needed for MET code updates.
80X_dataRun2_Prompt_v3 for CMSSW_8_0_X X>2 To be used for 2016 pre-bem operations as 80X_dataRun2_Prompt_v2 adding
- new Condition Format L1TUtmTriggerMenuRcd for stage-2 L1 menu (will receive O2O updates)
80X_dataRun2_Prompt_v2 for CMSSW_8_0_X X>0 To be used for 2016 MWGR-III operations as 80X_dataRun2_Prompt_v1
- introducing an IOV in 2016 for Hcal Parameters to include 1x1 HF trigger primitives
80X_dataRun2_Prompt_v1 for CMSSW_8_0_X X>0 To be used for 2016 MWGR-II operations as 80X_dataRun2_Prompt_v0
- updated Hcal e-maps (unlabeled and full) for unpacking of uTCA FEDs in HBHE
80X_dataRun2_Prompt_v0 for CMSSW_8_0_X X>0 To be used for 2016 MWGR-II operations as 75X_dataRun2_Prompt_v2
- added HLT label for B-tagging MVA calibrations
- new egamma regresions for 2016
- added payload for HCalParameterRcd
- added payload for HCalQIETypesRcd
- added label HLT for PFCalibrations
- added payload for PHcalParametersRcd
- technical change on the DTRecoUncertainties tag name to remove fully qualified V1 account name
- new version for PHcalRcd
- changed CaloTower topology

Global Tags for 2015 data taking

HLT reconstruction Global Tags
TAGNAME Validity Description Comments
74X_dataRun2_HLT_ppAt5TeV_v0 for CMSSW_7_4_X X>=6 To be used for pp reference run @ 5.02TeV operations As 74X_dataRun2_HLT_v3 changing:
- replaced AK4Calo HLT JEC for pp reference run at 5 TeV and HI run
74X_dataRun2_HLT_v3 for CMSSW_7_4_X X>=6 To be used for 2015C (25 ns collisions) As 74X_dataRun2_HLT_v2 changing:
- taxonomy changes for the muon APE
- replacing tag names containing fully qualified conddB v1 account
74X_dataRun2_HLT_v2 for CMSSW_7_4_X X>=6 To be used for 2015C (25 ns collisions) As 74X_dataRun2_HLT_v1 changing:
- re-introducing the HLT Tracker backplane corrections tag
74X_dataRun2_HLT_v1 for CMSSW_7_4_X X>=6 To be used for 2015C (25 ns collisions) As GR_H_V58C changing:
- updated ECAL cluster parametric corrections: first IOV is identical to the latest data corrections as in EcalClusterLocalContCorrParameters_jun2012_offline, second IOV, starting after AGR, has corrections set to 0, as in EcalClusterLocalContCorrParameters_invalidate_offline, third IOV, starting in Run2015B, is identical to the latest data corrections as in EcalClusterLocalContCorrParameters_jun2012_offline, validated as of 2015-06-18;
- added record for HB HE negative energy filter.
74X_dataRun2_HLT_v0 for CMSSW_7_4_X X>=0 To be used for 2015C (25 ns collisions) As GR_H_V58C changing:
- updated ECAL cluster parametric corrections: first IOV is identical to the latest data corrections as in EcalClusterLocalContCorrParameters_jun2012_offline, second IOV, starting after AGR, has corrections set to 0, as in EcalClusterLocalContCorrParameters_invalidate_offline, third IOV, starting in Run2015B, is identical to the latest data corrections as in EcalClusterLocalContCorrParameters_jun2012_offline, validated as of 2015-06-18.
GR_H_V58C for CMSSW_7_4_X X>=0 To be used for 2015A+B (50 ns collisions) As GR_H_V58 changing:
- changed ECAL Cluster corrections tag name to contain "hlt"
- adding: label "full" for HcalElectronicsMapRcd

Express reconstruction Global Tags
TAGNAME Validity Description Comments
75X_dataRun2_Express_ppAt5TeV_v0 for CMSSW_7_5_X X>=5 [*] To be used for pp reference run @ 5.02 TeV taking operations as 74X_dataRun2_Express_v3 changing:
-
74X_dataRun2_Express_v3 for CMSSW_7_4_X X>=10 [*] To be used Run2015D (25ns) data taking operations as 74X_dataRun2_Express_v2 changing:
- updating to new Jet Energy corrections
- taxonomy change for the Muon APE (=0 explicit)
- added new GBRForest payloads for the existing TMVA-based taggers.
74X_dataRun2_Express_v2 for CMSSW_7_4_X X>=10 [*] To be used Run2015D (25ns) data taking operations as 74X_dataRun2_Express_v1 changing:
- added e/gamma regression from ECAL multifit
- changes in taxonomy for SiStripBackPlaneCorrection (introducing express tag).
74X_dataRun2_Express_v1 for CMSSW_7_4_X X>=8 [*] To be used Run2015C (25ns) data taking operations as 74X_dataRun2_Express_v0 changing:
- adding Negative Energy Filter tag.
74X_dataRun2_Express_v0 for CMSSW_7_4_X X>=1 [*] To be used Run2015B (50ns) data taking operations as GR_E_V49 changing:
- taxonomy of the EcalClusterLocalContCorrParametersRcd
GR_E_V49 for CMSSW_7_4_X X>=1 To be used for first beam data 2015 As GR_E_V48
- improved Dropbox metadata to fix PCL uploads
- new tag for DT t0 calibration taking into account FEB path corrections
GR_E_V48 for CMSSW_7_4_X X>=1 To be used for first beam data 2015 As GR_E_V47
- adding: label "full" for HcalElectronicsMapRcd

Prompt reconstruction Global Tags
TAGNAME Validity Description Comments
75X_dataRun2_Prompt_v1 for CMSSW_7_5_X X>5 [*] To be used for Heavy Ion data-taking operations as 74X_dataRun2_Prompt_v2
-
75X_dataRun2_Prompt_v4 for CMSSW_7_4_X X>10 [*] To be used Run2015D (25ns) data taking operations as 74X_dataRun2_Prompt_v3
- updating to new Jet Energy corrections
- taxonomy change for the Muon APE (=0 explicit)
- added new GBRForest payloads for the existing TMVA-based taggers
74X_dataRun2_Prompt_v3 for CMSSW_7_4_X X>10 [*] To be used Run2015D (25ns) data taking operations as 74X_dataRun2_Prompt_v2
- introduced prompt version for Strip O2O tags
74X_dataRun2_Prompt_v2 for CMSSW_7_4_X X>10 [*] To be used Run2015D (25ns) data taking operations as 74X_dataRun2_Prompt_v1
- added e/gamma regression from ECAL multifit
- changes in taxonomy for SiStripBackPlaneCorrection (introducing express tag)
- changes in taxonomy for the TrackerAlignment (introducing prompt tag)
74X_dataRun2_Prompt_v1 for CMSSW_7_4_X X>=6 [*] To be used Run2015B/C (50/25ns) data taking operations as 74X_dataRun2_Prompt_v0
- adding Negative Energy Filter tag.
74X_dataRun2_Prompt_v0 for CMSSW_7_4_X X>=1 [*] To be used Run2015B (50ns) data taking operations as GR_P_V56
- changing name of tag for EcalClusterLocalContCorrParameters to decouple it from MC
upgrade tag for DTT0Rcd to FEB corrected one
GR_P_V56 for CMSSW_7_4_X X>=1 To be used for first beam data 2015 As GR_P_V55 with:
- changed ECAL Cluster corrections to parametric (as in run2 MC)
- added all labels for JetCorrectionsRecord (JEC), required for MINIAOD production
GR_P_V55 for CMSSW_7_4_X X>=1 To be used for first beam data 2015 As GR_P_V54 whith:
- new tag for EcalLaserAPDPNRatiosRcd to allow O2O to properly work
- adding: label "full" for HcalElectronicsMapRcd

[*] This Global Tag exists only in the conditions Database v2. This means you should include Configuration.StandardSequences.FrontierConditions_GlobalTag_condDBv2_cff in CMSSW_7_4_X.

Global Tags for pre-2015 data exercise

HLT reconstruction Global Tags
TAGNAME Validity Description Comments
GR_H_V44 for CMSSW_7_3_X X>=0 To be used for 2015 Commissioning data-taking As GR_H_V38 changing:
- added SiPixelGenErrorDBObject
- added labels for SiPixelLorentzAngle
- added new labels AK4 and AK8 for Calo and PF jest
- updated Reco geometry for RPC including RE4 chambers with chamber rotation
- update "classic" EcalClusterCorrections with zeros
GR_H_V45 for CMSSW_7_3_X X>=0 To be used for 2015 Commissioning data-taking
(for online DQM application only)
As GR_H_V44 changing:
- added HCAL OOT PU corrections for method 0
GR_H_V56 for CMSSW_7_4_X X>=0 To be used for 2015 Commissioning data-taking As GR_H_V45 changing:
- Improved BTV JetTagComputer
- added Extended versions of Muon and Tracker APE
- removed the non Extended record of Muon and Tracker APE
- Added magnetic field configuration
- Added magnetic field geometry
- Added ECAL pulse shape parameter for ECAL multifit
- EGamma PF cluster corrections
- updated hadron PF calibration
GR_H_V58 for CMSSW_7_4_X X>=1 To be used for 2015 Commissioning data-taking As GR_H_V56 changing:
- updated EGamma PF cluster corrections (light training)
- updated hadron PF calibration

Express reconstruction Global Tags
TAGNAME Validity Description Comments
GR_E_V47 for CMSSW_7_4_X X>=1 To be used for 2015 Commissioning data-taking As GR_E_V46 changing:
- updated EGamma PF cluster corrections (light training)
- updated hadron PF calibration
GR_E_V46 for CMSSW_7_4_X X>=0 To be used for 2015 Commissioning data-taking As GR_E_V43 changing:
- Improved BTV JetTagComputer
- added Extended versions of Muon and Tracker APE
- removed the non Extended record of Muon and Tracker APE
- Added magnetic field configuration
- Added magnetic field geometry
- Added Jet Correction Compatibility format for HI Voronoi algorithm
- Added ECAL pulse shape parameter for ECAL multifit
GR_E_V43 for CMSSW_7_3_X X>=4 To be used for 2015 CRUZET/CRAFT data-taking As GR_E_V42 changing:
- Added DYT configuration
- EGamma PF cluster corrections
- updated hadron PF calibration
- updated Jet Energy Corrections using the latest ones available for data.
GR_E_V42 for CMSSW_7_2_0 preX, X>=6 To be used for 2014 MW GR data taking As PRE_E_V41 changing:
- HcalOOTPileup maps and buffer to production accounts
PRE_E_V41 for CMSSW_7_2_0 preX, X>=6 To be used for 2014 MW GR data taking As GR_E_V38 adding:
- HcalOOTPileup maps and buffer
- SiPixelGenError
- SiPixel Lorentz Angle with labels
- ak4 Jet Energy Corrections
- New ak5 Jet Energy Corrections
- Fix RPC geometry
GR_E_V38 for CMSSW_7_1_X To be used for 2014 MW GR data taking As GR_E_V37 adding:
- New tracking MVA selectors for 13 TeV
- DT reconstruction uncertainties
- ECAL time bias corrections
- Reco geometry IOV for Run1 and Run2
GR_E_V37 for CMSSW_7_0_X To be used for 2014 April GR data taking As GR_E_V36 adding:
- new HO electronic map
GR_E_V36 for CMSSW_7_0_X To be used for 2014 April GR tests As GR_E_V33 adding:
- new tags for release compatibilty
- new 2015 RPC reco geometry
- new SiStripConfObject for APV

Prompt reconstruction Global Tags
TAGNAME Validity Description Comments
GR_P_V54 for CMSSW_7_4_X X>=1 To be used for 2015 Commissioning data-taking As GR_P_V53 changing:
- updated EGamma PF cluster corrections (light training)
- updated hadron PF calibration
GR_P_V53 for CMSSW_7_4_X X>=0 To be used for 2015 Commissioning data-taking As GR_P_V50 changing:
- Improved BTV JetTagComputer
- added Extended versions of Muon and Tracker APE
- removed the non Extended record of Muon and Tracker APE
- Added magnetic field configuration
- Added magnetic field geometry
- Added Jet correction compatibility format for HI Voronoi algorithm
- Added ECAL pulse shape parameter for ECAL multifit
GR_P_V50 for CMSSW_7_3_X, X>=4 To be used for 2015 CRUZET/CRAFT data taking As GR_P_V49 changing:
- Added DYT configuration
- EGamma PF cluster corrections
- updated hadron PF calibration
- updated Jet Energy Corrections using the latest ones available for data.
GR_P_V49 for CMSSW_7_2_0 preX, X>=6 To be used for 2014 MW GR data taking As PRE_P_V48 changing:
- HcalOOTPileup maps and buffer to production accounts
PRE_P_V48 for CMSSW_7_2_0 preX, X>=6 To be used for 2014 MW GR data taking As GR_P_V47 adding:
- HcalOOTPileup maps and buffer
- SiPixelGenError
- SiPixel Lorentz Angle with labels
- ak4 Jet Energy Corrections
- New ak5 Jet Energy Corrections
GR_P_V47 for CMSSW_7_1_X To be used for 2014 MW GR data taking As GR_P_V46 adding:
- Fixed RPC geometry
GR_P_V46 for CMSSW_7_1_X To be used for 2014 MW GR data taking As GR_P_V44 adding:
- AK5PFchs JetEnergyCorrections for Btagging offline DQM.
GR_P_V45 for CMSSW_7_1_X To be used for 2014 MW GR data taking As GR_P_V44 adding:
- New tracking MVA selectors for 13 TeV
- DT reconstruction uncertainties
- ECAL time bias corrections
- Reco geometry IOV for Run1 and Run2
GR_P_V44 for CMSSW_7_0_X To be used for 2014 April GR data taking As GR_P_V43D adding:
- new tags for release compatibilty
- new 2015 RPC reco geometry
- new SiStripConfObject for APV
- new HO electronic map

Global Tags for 2012 data taking

Disclaimer for analysis of prompt reconstruction data

The global tags listed just below have been used to reconstruct data at T0 and they do not include all the features needed for the analysis.
Starting with 2012C, for the analysis of the prompt reco data collected using GR_P_VXX at T0 we advise to use the analysis global tag called GR_P_VXX_ANZZ. More details can be found in the section Analysis GT for prompt reco data.
We encourage you to switch to the re-recoed data with the appropriate analysis GT listed in section Summary of Global Tags used in official data re-recos as soon as they are available.

For analysis of prompt reco data collected in 2011, 2012A and 2012B eras.

The global tags listed just below have been used to reconstruct data at T0. Starting in 2011, the prompt reco GTs do not contain any more all the features which may be useful for offline analysis. We encourage you to switch to re-recoed data with the appropriate GT listed in section Global tags for collision data reprocessing as soon as they are available. If you want to analyze data coming from prompt reconstruction, please use the last available offline GT as indicated here: GTs for Offline re-reco

Prompt reconstruction Global Tags
TAGNAME Validity Description Comments
GR_P_V43D >5_3_8_patch3 Used for prompt-reco in GRIN As GR_P_V43 with the following updates:
castor saturation added.
GR_P_V43C >=610_pre8X (Not for prod.[1]) To be used for prompt data processing @ Tier0. As GR_P_V43B with the following updates:
- best ECAL conditions for 2011: local cluster corrections
- Updated ECAL cluster corrections.
GR_P_V43B >=61X_pre8X (Not for prod.[1]) To be used for prompt data processing @ Tier0. As GR_P_V43 with the following updates:
- first version of HB alignment
- first version of HE alignment
- first version of HF alignment
- first version of HO alignment.
GR_P_V43 >=533X To be used for prompt data processing @ Tier0. As GR_P_V42B with the following updates:
- AK5 PF JECs added
GR_P_V42B >=533 To be used for prompt data processing @ Tier0. As GR_P_V42 with the following updates:
- Updated jet energy corrections to the ones used by the HLT since mid-Run2012C.
- Separated the AK5Calo corrections used at HLT from those used at RECO.
GR_P_V42 >=533 To be used for prompt data processing @ Tier0. As GR_P_V41 with the following updates:
- To use the same tracker alignment tag for express and prompt
- updated CSC bad chambers.
GR_P_V41 >=533 To be used for prompt data processing @ Tier0. As GR_P_V40 with the following updates:
- possibility to mask ECAL samples added.
GR_P_V40 53X, <533 To be used for prompt data processing @ Tier0. As GR_P_V38 with the following updates:
- Decoupling pixel templates from HLT
- Fix for ECAL LocalContCorrParameters.
GR_P_V39B 52X To be used for HLT conditions validation. As GR_P_V39 with the following updates (to stay parallel to GR_P_V42):
- To use the same tracker alignment tag for express and prompt
- updated CSC bad chambers.
GR_P_V39 52X To be used for prompt data processing @ Tier0. As GR_P_V37 with the following updates:
- Decoupling pixel templates from HLT.
GR_P_V38 53X,<533 To be used for prompt data processing @ Tier0. As GR_P_V37 with the following updates:
moving to 53X:
- new PF cluster corrections
- updated ECAL local containment corrections
- new supercluster energy correction.
GR_P_V37 52X To be used for prompt data processing @ Tier0. As GR_P_V36 with the following updates:
- Decoupling the ESChannelStatusRcd from hlt/express to allow masking channels in prompt independently.
GR_P_V36 52X To be used for prompt data processing @ Tier0. As GR_P_V35 with the following updates:
- Decoupled hlt and express preshower intercalibration tag.
GR_P_V35 52X To be used for prompt data processing @ Tier0. As GR_P_V32 with the following updates:
- Updated HcalRecoParams for prompt reco fixing HF TS for runs 195265 and 195266.
GR_P_V33 53X - broken To be used for prompt data processing @ Tier0. As GR_P_V32 with the following updates:
- Moving to 53X:
- PF Cluster Corrections in EcalBarrel
- PF Cluster Corrections in EcalEndcap
- PF Photon Energy Corrections in EcalBarrel
- PF Photon Energy Corrections in EcalEndcap for High R9 Photons
- PF Photon Energy Corrections in EcalEndcap for Low R9 Photons
- PF Photon Energy Resolution Studies using BDTG
GR_P_V32 52X To be used for prompt data processing @ Tier0. As GR_P_V29 with the following updates:
- new format for DT readout mapping
- DT t0 migration.
GR_P_V30 50X To be used for prompt data processing @ Tier0. As GR_P_V28 with the following updates:
- new format for DT readout mapping.
GR_P_V29 52X (Not for prod.[1]) To be used for prompt data processing @ Tier0. As GR_P_V28 with the following updates:
- DT t0 migration
- New payload containing parameters for the HF in HcalHitReconstructor.
GR_P_V28 50X To be used for prompt data processing @ Tier0. As GR_P_V27A with the following updates:
- Moving to 50X:
- New geometry from44X account
- strips DCS, v6
- new DTCCBconfig
- new DTKeyedConfig
- AlcaReco for muon DQM added
- ES missing energy calib added
- photon regression added
- new ECAL cluster corrections
- new CSC gas gain corrections
- dE/dx as in offline
- new Hcal MC param added
- new format for Hcal reco param as in 50X
- change in name of Ecal channel status tag

Express reconstruction Global Tags
TAGNAME Validity Description Comments
GR_E_V33A 53X>=538HI To be used for express processing of 2012 data using the WMA Tier0 instance. As GR_E_V33 with the following updates:Decouples the PCL run with PCL from the one run by PA
- new payload for drop-box metadata for PCL upload using the new drop-box.
GR_E_V33 53X>=538HI To be used for express processing of 2012 data. As GR_E_V32 with the following updates:
- add record for castor saturation.
GR_E_V32 >=533 To be used for express processing of 2012 data. As GR_E_V31 with the following updates:
- AK5 PF JECs added.
GR_E_V31 >=533 To be used for express processing of 2012 data. As GR_E_V30 with the following updates:
- possibility to mask ECAL samples added.
GR_E_V30 53X,<533 To be used for express processing of 2012 data. As GR_E_V28 with the following updates:
- Decoupling pixel templates from HLT
- Fix for ECAL LocalContCorrParameters.
GR_E_V29 52X To be used for express processing of 2012 data. As GR_E_V27 with the following updates:
- Decoupling pixel templates from HLT.
GR_E_V28 53X,<533 To be used for express processing of 2012 data. As GR_E_V27 with the following updates:
- new PF clusters corrections
- updated ECAL local containment corrections
- new supercluster energy correction.
GR_E_V27 52X To be used for express processing of 2012 data. As GR_E_V25 with the following updates:
- Decoupled hlt and express preshower intercalibration tag.
GR_E_V26 53X - broken To be used for express processing of 2012 data. As GR_E_V25 with the following updates:
- Moving to 53X:
- PF Cluster Corrections in EcalBarrel
- PF Cluster Corrections in EcalEndcap
- PF Photon Energy Corrections in EcalBarrel
- PF Photon Energy Corrections in EcalEndcap for High R9 Photons
- PF Photon Energy Corrections in EcalEndcap for Low R9 Photons
- PF Photon Energy Resolution Studies using BDTG
GR_E_V25 52X To be used for express processing of 2012 data. As GR_E_V24 with the following updates:
- DT t0 migration
- New payload containing parameters for the HF in HcalHitReconstructor.
GR_E_V24 50X To be used for express processing of 2012 data. As GR_E_V23 with the following updates:
- new format for DT readout mapping.
GR_E_V23 50X To be used for express processing of 2012 data. As GR_E_V22 with the following updates:
Moving to 50X:
- New geometry from44X account
- new DTCCBconfig
- new DTKeyedConfig
- AlcaReco for muon DQM added
- ES missing energy calib added
- photon regression added
- new ECAL cluster corrections
- new CSC gas gain corrections
- dE/dx as in offline
- new Hcal MC param added
- new format for Hcal reco param as in 50X
- change in name of Ecal channel status tag

HLT reconstruction Global Tags
TAGNAME Validity Description Comments
GR_H_V38 71X To be used for data taking with release >=71X. As GR_H_V36 with the following updates:
- New tags for reconstruction geometries for Run1 and Run2 (IOV1 = payload for Run1, IOV2 = payload for Run2)
- New tag for HCAL electronics map (IOV)
- New tag for b-tagging calibrations
- New IOV for CSC unganged scenario
GR_H_V36 71X To be used for data taking with release >=71X. As GR_H_V34 with the following updates:
- adding SiStrip offsets for APV cycle phase producers using a label
GR_H_V35 70X To be used for data taking with release >=70X. As GR_H_V33 with the following updates:
- adding SiStrip offsets for APV cycle phase producers using a label
GR_H_V34 71X To be used for data taking with release >=71X. As GR_H_V33 with the following updates:
- new EcalTimeBias tag/rcd
GR_H_V33 62X and 70X To be used for data taking with release >=62X. As GR_H_V32 with the following updates (compatibility tags for 62X)
- new geometry format
- ECalSampleMask, ECALRsettings and ECALInearCorrection
- SiStrip backplane corrections
- Castor saturation
- RPCEMap
- HCAL alignment records (for compatibility)
GR_H_V32 52X To be used for data taking with release >=50X. As GR_H_V30 with the following updates:
- Separated the AK5Calo corrections used at HLT from those used at RECO.
GR_H_V31 52X - BROKEN To be used for data taking with release >=50X. Broken, do not use.. As GR_H_V30 with the following updates:
- Separated the AK5Calo corrections used at HLT from those used at RECO.
GR_H_V30 52X To be used for data taking with release >=50X. As GR_H_V29 with the following updates: New AK5PFHLT and AK5PFchsHLT JEC condtions.
GR_H_V29 52X To be used for data taking with release >=50X. As GR_H_V28 with the following updates:
- btag mva added.
GR_H_V28 52X To be used for data taking with release >=50X. As GR_H_V27 with the following updates:
- New payload containing parameters for the HF in HcalHitReconstructor.
GR_H_V27 50X To be used for data taking with release >=50X. As GR_H_V26 with the following updates:
- new format for DT readout mapping.
GR_H_V26 50X To be used for data taking with release >=50X. As GR_H_V24 with the following updates:
- Moving to 50X:
- New geometry from44X account
- new DTCCBconfig
- new DTKeyedConfig
- AlcaReco for muon DQM added
- ES missing energy calib added
- new ECAL cluster corrections
- new CSC gas gain corrections
- dE/dx as in offline
- new Hcal MC param added
- new format for Hcal reco param as in 50X
- change in name of Ecal channel status tag
- change in name of Ecal intercalib tag
- change in name of Ecal scale tag
- new laser APD/PN tag for corrections at HLT

Special HLT reconstruction Global Tags
TAGNAME Validity Description Comments
ECALSNAFU_V32 52X To be used for data taking with release >=50X. As ECALSNAFU_V30 with the following updates:
- - Separated the AK5Calo corrections used at HLT from those used at RECO.
ECALSNAFU_V30 52X To be used for data taking with release >=50X. As GR_H_V30 with the following updates:
- Backup tag updated one week later than the normal weekly_hlt. Used as a backup..
ECALSNAFU_V29 52X Backup for the HLT GT. ECAL laser corrections in this GT are updated with one week of delay. As GR_H_V29 with the following updates:
- EcalLaserAPDPNRatios_weekly_backup_hlt tag updated one week later than the normal weekly_hlt. Used as a backup.

Global Tags for 2011 data taking

The global tags listed just below have been used to reconstruct data at T0. Starting in 2011, the prompt reco GTs do not contain any more all the features which may be useful for offline analysis. We encourage you to switch to re-recoed data with the appropriate GT listed in section Global tags for collision data reprocessing as soon as they are available. If you want to analyze data coming from prompt reconstruction, please use the last available offline GT as indicated here: GTs for Offline re-reco

Prompt reconstruction Global Tags
TAGNAME Validity Description Comments
GR_P_V27A 44X To be used for HI data only. As GR_P_V27 with the following updates:
- add JEC for HI
- add centrality tables for HI
- upadte SiStrip DCS tag fixing the problem with TEC in the High PU runs.
GR_P_V27 44X To be used for prompt data processing @ Tier0. As GR_P_V26 with the following updates: - update the AlCaReco trigger bit selection differentiating it from the express one.
GR_P_V26 44X To be used for prompt data processing @ Tier0. As GR_P_V25 with the following updates:
- add trigger selection for JetMET DQM.
GR_P_V25 44X To be used for prompt data processing @ Tier0. As GR_P_V24 with the following updates:
- new SiStrips DCS tag.
GR_P_V24 44X To be used for prompt data processing @ Tier0 with 44X. As GR_P_V23 with the following updates:
- Update Castor conditions to match what has been used in 44X relvals
- add ECAL global time offset.
GR_P_V23 44X To be used for prompt data processing @ Tier0 with 44X. As GR_P_V22 with the following updates:
- migrate Castor records to new account (new mapping)
- omment
- new SiStrip automatic switching between deco and peak modes for lorentz angle
- new SiPixel quality and DCS information
- add ECAL global time offset
- add Castor RecoParams object
- improved memory model for CMS calo geometry.
GR_P_V22A 42X To be used for prompt data processing @ Tier0. As GR_P_V22 with the following updates:
- omment
- new SiStrips DCS tag.
GR_P_V22 42X To be used for prompt data processing @ Tier0. As GR_P_V21 with the following updates:
- fix SiStrip DCS O2O
- new tag ECAL APD/PN laser corrections to be used for prompt reco.
GR_P_V21 42X To be used for prompt data processing @ Tier0. As GR_P_V20 with the following updates:
- change name for Ecal ADCToGeV and intercalibration tags
- switch to run-based alphas and refs for ECAL laser corrections (no changes in the values)
- L1 fixes for O2O problems
- new tag ECAL APD/PN laser corrections to be used for prompt reco.
GR_P_V20 42X To be used for prompt data processing @ Tier0. As GR_P_V19 with the following updates:.
GR_P_V19 42X To be used for prompt data processing @ Tier0. As GR_P_V18 with the following updates:
- new tag for ECAL laser corrections (no VPT)
- switch to the run-info payload written at the end of run (should fix a few inconsitencies with the B field from DB).
GR_P_V18 42X To be used for prompt data processing @ Tier0. As GR_P_V17 with the following updates:
- update ECAL laser corrections to v5
- update the SiStrp DCS tag to fix the Commissionin10 period
- add conditions for L1 DT emulation
- new parameters for HCAL
- PF calibrations from DB
- add tags fro DCD O2O of the DTs
- new tag for ECAL Cluster corrections.
GR_P_V17 311X - 41X To be used for prompt processing of 2011 data. As GR_P_V16 with the following updates:
- laser corrections in PCL.
GR_P_V16 41X To be used for prompt processing of 2011 data. As GR_P_V14 with the following updates:
- L1 for 2011 run, bug fix in 020.
GR_P_V14 311X To be used for prompt processing of 2011 data. As GR_P_V13 with the following updates:
- split BTAG probability tags for hlt and express
- new tag for Si-Strip Pedestals including the values needed for HI reprocessing
- Update the tag for JEC for AK5Calo algo
- new tag for ECAL pedestals
- change tag name for SiStrip DCS O2O
- update ES intercalibrations.
GR_P_V13 311X To be used for prompt processing of 2011 data. As GR10_P_V12 with the following updates:
- fix tags for L1 affected by O2O problem
- new tau mva
- new tag for ECAL time calibrations
- update CSC timing corrections.

Express reconstruction Global Tags
TAGNAME Validity Description Comments
GR_E_V22A 44X Special GT only for strip re-reco of HI data. Not used at T0. Not to be used As GR_E_V22 with the following updates:
- fix in AlcaRecoTriggerBits for HI data taking
GR_E_V22 44X To be used for express processing of 2011 data. As GR_E_V21 with the following updates:
- add trigger selection for JetMET DQM.
GR_E_V21 44X To be used for express processing of 2011 data. As GR_E_V20 with the following updates:
- omment
- new SiStrip automatic switching between deco and peak modes for lorentz angle
- new SiPixel quality and DCS information
- Update Castor conditions to match what has been used in 44X relvals
- add ECAL global time offset
- add Castor RecoParams object
- improved memory model for CMS calo geometry.
GR_E_V20 42X To be used for express processing of 2011 data. As GR_E_V19 with the following updates:
- L1 fixes for O2O problems
- change name for Ecal ADCToGeV and intercalibration tags
- switch to run-based alphas and refs for ECAL laser corrections (no changes in the values).
GR_E_V19 42X To be used for express processing of 2011 data. As GR_E_V18 with the following updates:.
GR_E_V18 42X To be used for express processing of 2011 data. As GR_E_V17 with the following updates:
- update CSC timing corrections
- new tau mva.
GR_E_V17 311X To be used for express processing of 2011 data. As GR_E_V16 with the following updates:
- add conditions for L1 DT emulation
- new parameters for HCAL
- add tag for metadata for drop-box in PCL
- PF calibrations from DB
- add tags fro DCD O2O of the DTs
- new tag for ECAL Cluster corrections.
GR_E_V16 41X To be used for express processing of 2011 data. As GR_E_V14 with the following updates:
- L1 for 2011 run, bug fix in 020.
GR_E_V14 311X To be used for express processing of 2011 data. As GR_E_V13 with the following updates:
- split BTAG probability tags for hlt and express
- update ES intercalibrations
- new tag for Si-Strip Pedestals including the values needed for HI reprocessing
- Update the tag for JEC for AK5Calo algo
- new tag for ECAL pedestals.
GR_E_V13 311X To be used for express processing of 2011 data. As GR10_E_V12 with the following updates:
- fix tags for L1 affected by O2O problem
- new tau mva
- new tag for ECAL time calibrations
- update CSC timing corrections.

HLT reconstruction Global Tags
TAGNAME Validity Description Comments
GR_H_V25 44X To be used for data taking with release >=44X. As GR_H_V24 with the following updates:
- Update Pedestal tag to perform ZeroSuppression at HLT for Heavy Ion data taking.
GR_H_V24 44X To be used for data taking with release >=42X. As GR_H_V23 with the following updates:
- update ECAL TPG tags
- Update Castor conditions to match what has been used in 44X relvals
- add Castor RecoParams object
- improved memory model for CMS calo geometry
- new SiPixel quality and DCS information
- new ECAl object for global timing offset
- new SiStrip automatic switching between deco and peak modes for lorentz angle.
GR_H_V23 42X To be used for data taking with release >=42X. As GR_H_V22 with the following updates:
- add trigger selection for JetMET DQM.
GR_H_V22 42X To be used for data taking with release >=42X. As GR_H_V21 with the following updates:
- update ECAL TPG tags.
GR_H_V21 42X To be used for data taking with release >=42X. As GR_H_V20 with the following updates:
- Solving O2O problems
- Update tags to have run based IOV instead of time based.
GR_H_V20 42X To be used for data taking with release >=42X. As GR_H_V19 with the following updates:
- for 42X release
- Fix O2O issues.
GR_H_V19 42X To be used for data taking with release >=42X. As GR_H_V18 with the following updates:
Correcting connection Strings
GR_H_V18 BROKEN 42X To be used for data taking with release >=42X. As GR_H_V17 with the following updates:
- update ECAL laser corrections to v5
- add conditions for L1 DT emulation
- new parameters for HCAL
- PF calibrations from DB
- add tags fro DCD O2O of the DTs
- new tag for ECAL Cluster corrections.
GR_H_V17 41X To be used for data taking with release >=41X. As GR_H_V16 with the following updates:Correct O2O L1 issues...
- Use BeamSpot tag updated from PCL automatically to HLT.
GR_H_V16 41X To be used for data taking with release >=41X. As GR_H_V15 with the following updates:Correct O2O L1 issues...
- L1 for 2011 run, bug fix in 020.
GR_H_V15 311X To be used for data taking with release >=311X. Add JetEnergy Correction tag, Change Track Probability/EcalPedestal/TrackerSurfaceDeformation As GR_H_V14 with the following updates:
- update ES intercalibrations
- new tag for Si-Strip Pedestals including the values needed for HI reprocessing.
GR_H_V14 311X To be used for data taking with release >=311X. Add JetEnergy Correction tag, Change Track Probability/EcalPedestal/TrackerSurfaceDeformation As GR_H_V13 with the following updates:
- rename Tk deformation tag
- new tag for ECAL pedestals
- split BTAG probability tags for hlt and express.
GR_H_V13 39X To be used for data taking with release >=39X. As GR10_H_V12 with the following updates:Offline tag port at HLT for testing
- fix tags for L1 affected by O2O problem
- add object for kink and bows dof in Tracker alignment
- update CSC timing corrections.

Global tags for 2010 data taking with 3XY

Prompt reconstruction Global Tags (3XY)

TAGNAME Run (or date) range Description
GR10_P_V12 39X To be used for prompt processing of 2010 data. As GR10_P_V11 with the following updates:
- new ES calibration taking into account missing planes/regions of the detector.
GR10_P_V11 38X since run 147873 To be used for prompt processing of 2010 data. As GR10_P_V10 with the following updates:
- new tag for beam-spot with LS based IOV produced in prompt-calibration loop.
GR10_P_V10 38X since run 145762 To be used for prompt processing of 2010 data. As GR10_P_V9 with the following updates:
- fix the frontier service in use for some of the tags
- update HCAL Lut tag
GR10_P_V9 38X To be used for prompt processing of 2010 data. As GR10_P_V8 with the following updates:include new conditions for switch of Tier0 to 381p3
- new DT trigger pedestals based on first pb-1 of pp collisions (from 381p3)
- new CSC alignment based on photogrammetry and beam halo
- global alignment with new muon global position record from cosmics
- new record for Ecal DQM channel status harvesting
- new record for Ecal DQM channel tower harvesting.
GR10_P_V7 from 137436 GT for 36X. Changes w.r.t. GR10_P_V6:
- decouple hlt and express/prompt tags for ECAL weights
GR10_P_V6 - GT for 36X. Changes w.r.t. GR10_P_V5:
- new SiPixel templates managed via label mechanism
- add SiStrip APV gains from particles
- change tag for SiStrip latency (used in automatic O2O)
- add DT pedestals for cosmics
- new tag for MVA JetTags
- new format for RPC mapping
- add L1 RPC objects
geometry from DB.
GR10_P_V5 from 133332 Changes w.r.t. GR10_P_V4:
- fix L1 tags actually used in the O2O.
GR10_P_V4 - Changes w.r.t. GR10_P_V3:
- SiPixel gain tag for express
- ECAL time calibration (and weights)
- new DQM reference histograms.
GR10_P_V3 - Changes w.r.t. GR10_P_V2:
- add SiStrip bad channel record (empty)
- update CSC channels status tags
- new tag for castor pedestal width (fix problem in append IOV)
- MVA containers to production DB
- update AlCaReco trigger selection
- get rid fo non-working geometry payloads.
GR10_P_V2 - Changes w.r.t. GR10_P_V1:
- new records for castor (introduced in 35X)
- new MVA containers
GR10_P_V1 - Changes w.r.t. GR10_P_V0:
- new records for Pixel tepmplate (introduced in 34X)
- renemaing of SiStrip tags
- new record SiStripLatencyRcd (introduced in 34X)
- new record HcalLutMetadataRcd (introduced in 34X)
- new dummy tag for EcalLaserAPDPNRatios (format change in 34X)
- new tag for LumiSectionDataRcd (new in 34X)
- new format for DQM ref histos (new in 34X)
GR10_P_V0 - Changes w.r.t. GR09_P_V8:
- new tag for ECAL channel status in prompt reco.
- new AlCaRecoTriggerBits payload for definition of Alca streams

Express reconstruction Global Tags (3XY)

TAGNAME Run range Description
GR10_E_V12 39X To be used for express processing of 2010 data. As GR10_E_V10 with the following updates:
- new ES calibration taking into account missing planes/regions of the detector.
GR10_E_V9 38X To be used for express processing of 2010 data. As GR10_E_V8 with the following updates:include new conditions for switch of Tier0 to 381p3
- new DT trigger pedestals based on first pb-1 of pp collisions (from 381p3)
- new CSC alignment based on photogrammetry and beam halo
- global alignment with new muon global position record from cosmics
- new record for Ecal DQM channel status harvesting
- new record for Ecal DQM channel tower harvesting.
GR10_E_V7 from 137436 GT for 36X. Changes w.r.t. GR10_E_V6:
- decouple hlt and express/prompt tags for ECAL weights.
GR10_E_V6 - GT for 36X. Changes w.r.t. GR10_E_V5:
- new SiPixel templates managed via label mechanism
- add SiStrip APV gains from particles
- change tag for SiStrip latency (used in automatic O2O)
- new tag for MVA JetTags
- new format for RPC mapping
- add L1 RPC objects
geometry from DB.
GR10_E_V5 from 133332 Changes w.r.t. GR10_E_V4:
- fix L1 tags actually used in the O2O.
GR10_E_V4 - Changes w.r.t. GR10_E_V3:
- SiPixel gain tag for express
- ECAL time calibration (and weights)
- new DQM reference histograms.
GR10_E_V3 - Changes w.r.t. GR10_E_V2:
- add SiStrip bad channel record (empty)
- update CSC channels status tags
- new tag for castor pedestal width (fix problem in append IOV)
- MVA containers to production DB
- update AlCaReco trigger selection
- get rid fo non-working geometry payloads.
GR10_E_V2 - Changes w.r.t. GR10_E_V1:
- new records for castor (introduced in 35X)
- new MVA containers
GR10_E_V1 - Changes w.r.t. GR10_E_V0:
- new records for Pixel tepmplate (introduced in 34X)
- renemaing of SiStrip tags
- new record SiStripLatencyRcd (introduced in 34X)
- new record HcalLutMetadataRcd (introduced in 34X)
- new dummy tag for EcalLaserAPDPNRatios (format change in 34X)
- new tag for LumiSectionDataRcd (new in 34X)
- new format for DQM ref histos (new in 34X)
GR10_E_V0 - Changes w.r.t. GR09_E_V8:
- new AlCaRecoTriggerBits payload for definition of Alca streams

Online Global Tags (3XY)
Note for offline use of these tags, the following lines are necessary in the python config file
   process.GlobalTag.connect   = 'frontier://FrontierProd/CMS_COND_31X_GLOBALTAG'
   process.GlobalTag.pfnPrefix = cms.untracked.string('frontier://FrontierProd/')
TAGNAME Run range Description
GR10_H_V12 39X To be used for data taking with release >=39X. As GR10_H_V9 with the following updates:
- new ES calibration taking into account missing planes/regions of the detector.
GR10_H_V9 Valid for HLT Menu=>2E31 GT for 38X. Changes w.r.t. GR10_H_V8:
- Split HcalLutMetadata from MC tags
- Rename Ecal Alignment tags to avoid confusion in naming
- DT tTrig new tags due to a change of calculation valid for release > 38X as it induces some change of parameters (CAREFUL with HLT Menu!)
GR10_H_V8 - GT for 38X. Changes w.r.t. GR10_H_V6:
- Adding new Ecal Alignment tags
GR10_H_V6 - GT for 36X. Changes w.r.t. GR10_H_V5A:
- new SiPixel templates managed via label mechanism
- add SiStrip APV gains from particles
- new tag for MVA JetTags
- new format for RPC mapping
- add L1 RPC objects
geometry from DB.
GR10_H_V5A - Changes w.r.t. GR10_H_V5:
- change tag for SiStrip latency (used in automatic O2O)
GR10_H_V5 - Changes w.r.t. GR10_H_V4:
- fix L1 tags actually used in the O2O
GR10_H_V4 - Changes w.r.t. GR10_H_V3C:
- ECAL time calibration (and weights).
GR10_H_V3C - Changes w.r.t. GR10_H_V2:
- add SiStrip bad channel record (empty)
- new tag for castor pedestal width (fix problem in append IOV)
- update AlCaReco trigger selection
- get rid fo non-working geometry payloads.
GR10_H_V2 - Changes w.r.t. GR10_H_V1:
- new records for castor (introduced in 35X)
GR10_H_V1 - Changes w.r.t. GR10_H_V0:
- new records for Pixel tepmplate (introduced in 34X)
- renemaing of SiStrip tags
- new record SiStripLatencyRcd (introduced in 34X)
- new record HcalLutMetadataRcd (introduced in 34X)
- new dummy tag for EcalLaserAPDPNRatios (format change in 34X)
- new tag for LumiSectionDataRcd (new in 34X)
GR10_H_V0 - Changes w.r.t. GR09_H_V7:
- new AlCaRecoTriggerBits payload for definition of Alca streams

Global tags for 2009 (and earlier) cosmic data taking with 3XY

The Global-Tags for used in the 2009 (and earlier) data-taking can be found here

Global tags for prompt reco data analysis (starting with 2012)

The following global tags should be used for the reconstruction of prompt reco data
TAGNAME Validity Description Comments
GR_P_V42_AN4 >=533X To be used for data reprocessing. As GR_P_V42_ANTEMP with the following updates:
- New btag and mistag Data/MC scale factors.
GR_P_V41_AN4 >=533X To be used for data reprocessing. As GR_P_V41_ANTEMP with the following updates:
- New btag and mistag Data/MC scale factors.
GR_P_V40_AN4 >=533X To be used for data reprocessing. As GR_P_V40_ANTEMP with the following updates:
- New btag and mistag Data/MC scale factors.
GR_P_V39_AN4 >=533X To be used for data reprocessing. As GR_P_V39_ANTEMP with the following updates:
- New btag and mistag Data/MC scale factors.
GR_P_V42_AN3 >=533X To be used for analysis of 2012D prompt reco data. As GR_P_V42_AN2 with the following updates:
- updated JECs (Fall 2012).
GR_P_V41_AN3 >=533X To be used for analysis of 2012C v2 prompt reco data. As GR_P_V41_AN2 with the following updates:
- updated JECs (Fall 2012).
GR_P_V40_AN3 53X, <533 To be used for analysis of 2012C v1 prompt reco data. As GR_P_V40_AN2 with the following updates:
- updated JECs (Fall 2012).
GR_P_V39_AN3 52X To be used for analysis of 2012A and 2012B (52X) prompt reco data. As GR_P_V39_AN2 with the following updates:
- updated JECs (Fall 2012).
GR_P_V42_AN2 >=533X To be used for analysis of 2012D prompt reco data. As GR_P_V42 with the following updates:
- Ichep 2012 btag and mistag Data/MC scale factors
- updated JECs for JPT (Aug 2012).
GR_P_V41_AN2 >=533X To be used for analysis of 2012C v2 prompt reco data. As GR_P_V41_AN1 with the following updates:
- updated JECs for JPT (Aug 2012).
GR_P_V40_AN2 53X, <533 To be used for analysis of 2012C v1 prompt reco data. As GR_P_V40_AN1 with the following updates:
- updated JECs for JPT (Aug 2012).
GR_P_V39_AN2 52X To be used for analysis of 2012A and 2012B (52X) prompt reco data. As GR_P_V39_AN1 with the following updates:
- updated JECs for JPT (Aug 2012).
GR_P_V41_AN1 >=533 To be used for analysis of 2012C v2 prompt reco data. As GR_P_V41 with the following updates:
- Ichep 2012 btag and mistag Data/MC scale factors
- Ichep 2012 data JECs.
GR_P_V40_AN1 53X, <533 To be used for analysis of 2012C v1 prompt reco data As GR_P_V40 with the following updates:
- Ichep2012 btag and mistag Data/MC scale factors
- Ichep 2012 JECs.
GR_P_V39_AN1 52X To be used for analysis of 2012A and 2012B (52X) prompt reco data. As GR_P_V39 with the following updates:
- Ichep 2012 btag and mistag Data/MC scale factors
- Ichep 2012 data JECs.

Global tags for Winter13 rereco data analysis (starting with 2012)

Please see section "Summary of Global Tags used in official data re-recos or MC productions" for the latest recommendations.

The following global tags should be used for the analysis of Winter13 rereco data. Including parked datasets re-recoed during the Winter13 campaign.

TAGNAME Validity Description Comments
FT_53_V18_AN3 >= CMSSW_5_3_7_patch5 To be used for data reprocessing. As FT_53_V18 with the following updates:
- New btag and mistag Data/MC scale factors.
- New Jet Energy Corrections.
FT_53_V21_AN3 >= CMSSW_5_3_7_patch5 To be used for data reprocessing. As FT_53_V21 with the following updates:
- New btag and mistag Data/MC scale factors.
- New Jet Energy Corrections.

Global tags for Multijet parked data analysis

The following global tags should be used for the analysis of parked data re-recoed using the same conditions as the prompt reconstruction.
TAGNAME Validity Description Comments
FT_P_V42D_AN3 >=533X To be used for the analysis of parked data. As FT_P_V42D with the following updates:
- New btag and mistag Data/MC scale factors
- updated Fall12 JECs.
FT_P_V42D_AN4 >=533X To be used for the analysis of parked data. As FT_P_V42D_AN3 with the following updates:
- Fall12_V7 JECs.

Global tags for collision data reprocessing

Global tags for collision data reprocessing (71Y)

TAGNAME Validity Description Comments
PRE_R_71_V3 71X >= 710_pre8 Not for production. As GR_R_71_V1 with the following updates:
- new MVA tracking selectors for 13 TeV,
- updated DT Reco uncertainties.
PRE_R_71_V2 71X >= 710_pre5 Not for production. As GR_R_71_V1 with the following updates:
- adding SiStrip offsets for APV cycle phase producers using a label
- New DT Reco uncertainties.
GR_R_71_V1 71X >= 710_pre3 Not for production. As GR_R_70_V1 with the following updates:
- New ECAL TimeBias corrections

Global tags for collision data reprocessing (70Y)

TAGNAME Validity Description Comments
GR_R_70_V2 70X >= 700 Not for production. As GR_R_70_V1 with the following updates:
- adding SiStrip offsets for APV cycle phase producers using a label
GR_R_70_V1 70X >= 700_pre13 Not for production. As GR_R_62_V3 with the following updates:
- fixed correct HCAL tags and updated e-gamma regression tags
GR_R_62_V3 700_pre11 Not for production. As GR_R_62_V2 with the following updates:
- Added E/gamma regression weights and pre-IDs.
GR_R_62_V2 700_pre10 Not for production. As GR_R_62_V1 with the following updates:
- Updated Zero Suppression threshold for the new all-SiPM HO.

Global tags for collision data reprocessing (62X)

TAGNAME Validity Description Comments
GR_R_62_V1 62X >= 620 Not for production. As PRE_62_V8 with the following updates:
- Latest alignments and calibrations taken from FT_R_53_V21
- Updated JEC (Fall12)
- Accounts migrated to production DB
- Requested on HN
PRE_62_V8 53X >= 538_patch3 Not for production. As GR_R_61_V5 with the following updates:
- Updated geometry payloads
- HCAL alignment (transparent, no alignment)
- New ECAL cluster energy corrections
- New GBRForest payloads for track selections.

Global tags for collision data reprocessing (61X)

The following tags are valid for 61X
TAGNAME Validity Description Comments
GR_R_61_V7 61X (Not for prod.[1]) To be used for data reprocessing. As GR_R_61_V6 with the following updates:
- Updated AlCaReco Trigger bits.
GR_R_61_V6 61X (Not for prod.[1]) To be used for data reprocessing. As GR_R_61_V5 with the following updates:
- first version of HB alignment
- first version of HF alignment
- first version of HO alignment
- first version of HE alignment
- Updated ECAL cluster corrections.
GR_R_61_V5 61X To be used for data reprocessing. As GR_R_61_V4 with the following updates:
- Castor saturation added.
GR_R_61_V4 61X To be used for data reprocessing. As GR_R_61_V3 with the following updates:
- updated preshower clustering.
GR_R_61_V3A 61X To be used for data reprocessing. As GR_R_61_V3 with the following updates:
- Castor saturation added.
GR_R_61_V3 61X To be used for data reprocessing. As GR_R_61_V2 with the following updates:
- extended ECAL laser tag (also fixing problem in 2012C data).
GR_R_61_V2 61X To be used for data reprocessing. As GR_R_61_V1 with the following updates:
- Updated HCAL corrections to cope with radiation damage in HF.
- Updated ECAL cluster local containment corrections.
GR_R_61_V1 61X To be used for data reprocessing. As GR_R_60_V7 with the following updates:
- Updated jet energy corrections to the ones used by the HLT since mid-Run2012C.
- Separated the AK5Calo corrections used at HLT from those used at RECO.
- Updated HCAL channel status.
GR_R_60_V7 60X To be used for data reprocessing. As GR_R_60_V6 with the following updates:
- another bug fix for ECAL laser APD/PN tag.

Global tags for collision data reprocessing (60X)

The following tags are valid for 60X
TAGNAME Validity Description Comments
GR_R_60_V9 60X To be used for data reprocessing. As GR_R_60_V8 with the following updates:
- extended ECAL laser tag (also fixing problem in 2012C data).
GR_R_60_V8 60X To be used for data reprocessing. As GR_R_60_V7 with the following updates:
- Updated jet energy corrections to the ones used by the HLT since mid-Run2012C.
- Separated the AK5Calo corrections used at HLT from those used at RECO.
GR_R_60_V7 60X To be used for data reprocessing. As GR_R_60_V6 with the following updates:
- another bug fix for ECAL laser APD/PN tag.
GR_R_60_V6 60X To be used for data reprocessing. As GR_R_60_V5 with the following updates:
- updated JECs for JPT (Aug 2012).
GR_R_60_V5 60X To be used for data reprocessing. As GR_R_60_V4 with the following updates:
- bug fix for ECAL laser APD/PN tag
- HCAL updated gains.
GR_R_60_V4 60X To be used for data reprocessing. As GR_R_60_V3 with the following updates:
- updated ECAL laser tag (also covering 2010 and 2011)
- firx for a problem in DT timing
- updated APV gains
- updated CSC bad chambers
- fix for a problem in DT drift velocity.
GR_R_60_V3 60X To be used for data reprocessing. As GR_R_60_V2 with the following updates:
- Strips bad channels recomputed for the new noise tag
- Decoupling offline pixel templates tag from HLT/express/prompt
- new ECAL intercalibrations
- New DT conditions for IOV 192981-194542
- fix for problem with strips noise
- new pixel alignment
- fixed btag probabilities
- updated HCAL channel status: 3 HBHE channels unmasked; 72 HF channels masked
GR_R_60_V2 60X To be used for data reprocessing. As GR_R_60_V1 with the following updates:
- New btag and mistag Data/MC scale factors
- Fix for ECAL LocalContCorrParameters.
GR_R_60_V1 60X To be used for data reprocessing. As GR_R_53_V3 with the following updates:
-possibility to mask ECAL samples added.
GR_R_53_V2 53X To be used for data reprocessing. As GR_R_53_V1 with the following updates:
- updated ECAL laser APD/PN
- updated ES intercalibrations
- new supercluster energy correction
- new Ecal laser alphas.
GR_R_53_V1 53X To be used for data reprocessing. As GR_R_52_V7 with the following updates:
- new PF cluster regression
- updated ECAL local containment corrections.
GR_R_60_V0 60X (Not for prod.[1]) To be used for data reprocessing. As GR_R_52_V7 with the following updates:
- New PF cluster regression.

Global tags for collision data reprocessing (53X)

The following tags are valid for 53X
TAGNAME Validity Description Comments
GR_R_53_V21A 53X>=538_patch3 To be used for data reprocessing. As GR_R_53_V21 with the following updates:
- castor saturation added.
FT_R_53_V21 53X>=533 To be used for internal cross checks.
(Snapshot not valid for runs > 211541 [= 2013-02-08])[2]
As GR_R_53_V21 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_53_V21 >=533X To be used for data reprocessing. As GR_R_53_V20 with the following updates:
- Updated HCAL corrections and gains for 2012D reprocessing.
FT_R_53_V20 53X>=533 To be used for reprocessing of 2012D in 53X.
(Snapshot not valid for runs > 211541 [= 2013-02-07])[2]
As GR_R_53_V20 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_53_V20 >=533X To be used for data reprocessing. As GR_R_53_V19 with the following updates:
- Updated ECAL ADCToGeV covering full 2012
- Updated ECAL Laser corr. covering full 2012
- Fixed bug to Pixel template method
- Updated ECAL Intercalibrations covering full 2012.
FT_R_53_V18 53X For 2012A+B+C data reprocessing in 53X.
(Snapshot not valid for runs > 210041 [= 2013-01-15])[2]
As GR_R_53_V18 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_53_V19 >=533X To be used for data reprocessing. As GR_R_53_V18 with the following updates:
- Updated AlCaReco Trigger bits.
FT_P_V42D 53X>=533 To be used for MultiJetParked reprocessing.
(Snapshot not valid for runs > 210041 [= 2013-01-15])[2]
As GR_P_V42 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_53_V18 >=533X To be used for data reprocessing. As GR_R_53_V17 with the following updates:
- Updated ECAL scale corrections fixing a 1% offset. See this posting https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/1309.html.
GR_R_53_V17 >=533X To be used for data reprocessing. As GR_R_53_V16F with the following updates:
- updated Fall12 JECs
- Updated tracker bad channels.
FT_P_V42 >=533X To be used for parked multijet data reprocessing.
(Snapshot not valid for runs > 207947 [= 2012-11-27])[2]
As GR_P_V42 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_53_V16 >=533X To be used for data reprocessing. As GR_R_53_V15 with the following updates:
- extended ECAL laser tag (also fixing problem in 2012C data).
FT_P_V42C >=533X To be used for parked multijet data reprocessing.
(Snapshot not valid for runs > 206495 [= 2012-11-05])[2]
As GR_P_V42C with the following updates:
- reading from frozen snapshot of DB accounts.
GR_P_V42C >=533X To be used for parked multijet dataset reprocessing. As GR_P_V42 with the following updates:
- extended ECAL laser tag (also fixing problem in 2012C data).
GR_R_53_V15 >=533X To be used for data reprocessing. As GR_R_53_V14 with the following updates:
- Updated jet energy corrections to the ones used by the HLT since mid-Run2012C.
- Separated the AK5Calo corrections used at HLT from those used at RECO.
GR_R_53_V14 >=533X To be used for data reprocessing. As GR_R_53_V13 with the following updates:
- another bug fix for ECAL laser APD/PN tag
GR_R_53_V13 >=533X To be used for data reprocessing. As GR_R_53_V12 with the following updates:
- updated JECs for JPT (Aug 2012).
GR_R_53_V12 >=533X To be used for data reprocessing. As GR_R_53_V11 with the following updates:
- bug fix for ECAL laser APD/PN tag.
GR_R_53_V11 >=533 To be used for data reprocessing. As GR_R_53_V9 with the following updates:
- updated ECAL laser tag (also covering 2010 and 2011)
- fix for a problem in DT timing
- updated APV gains
- updated CSC bad chambers
- fix for a problem in DT drift velocity.
FT_R_53_V10A >=533X To be used for data reprocessing.
(Snapshot not valid for runs > 201060 [= 2012-08-17])[2]. To be used with release >= 5_3_3
As FT_R_53_V10 with the following updates:
- Reading the EcalSampleMaskRcd from the FT_R_53_V6C.
FT_R_53_V10 53X To be used for data reprocessing.
(Snapshot not valid for runs > 201060 [= 2012-08-17])[2]
As GR_R_53_V10 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_53_V10 53X To be used for data reprocessing. As GR_R_53_V8 with the following updates:
- updated ECAL laser tag (also covering 2010 and 2011)
- fix for a problem in DT timing
- updated APV gains
- updated CSC bad chambers
- fix for a problem in DT drift velocity.
GR_R_53_V9 >=533X To be used for data reprocessing. As GR_R_53_V8 with the following updates:
-possibility to mask ECAL samples added.
GR_R_53_V8 53X To be used for data reprocessing. As GR_R_53_V7 with the following updates:
- Decoupling the pixel templates tag from HLT/express/prompt.
GR_R_53_V7 53X To be used for data reprocessing. As GR_R_53_V6 with the following updates:
- New btag and mistag Data/MC scale factors.
FT_R_53_V6C 52X To be used for data reprocessing.
(Snapshot not valid for runs > 198895 [= 2012-07-13])[2]
As GR_R_53_V6C with the following updates:
- reading from frozen snapshot of DB accounts.
FT_R_53_V6 52X To be used for data reprocessing.
(Snapshot not valid for runs > 198895 [= 2012-07-13])[2]
As GR_R_53_V6 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_53_V6C 53X To be used for data reprocessing of the low PU run. Special ECAL patch release required. As GR_R_53_V6 with the following updates:
- ECAL fix for low PU run.
GR_R_53_V6 53X To be used for data reprocessing. As GR_R_53_V5 with the following updates:
- Fix for ECAL LocalContCorrParameters.
GR_R_53_V5 53X To be used for data reprocessing. As GR_R_53_V2D with the following updates:
- new 2012 data JECs.
- beamspot updated for full run range
GR_R_53_V4 >=533X To be used for data reprocessing. As GR_R_53_V3 with the following updates:
- possibility to mask ECAL samples added.
GR_R_53_V3 53X To be used for data reprocessing. As GR_R_53_V2 with the following updates:
- new 2012 data JECs.
GR_R_53_V2 53X To be used for data reprocessing. As GR_R_53_V1 with the following updates:
- updated ECAL laser APD/PN
- updated ES intercalibrations
- new supercluster energy correction
- new Ecal laser alphas.
GR_R_53_V1 53X To be used for data reprocessing. As GR_R_52_V7 with the following updates:
- new PF cluster regression
- updated ECAL local containment corrections.

Global tags for collision data reprocessing (52X)

The following tags are valid for 52X
TAGNAME Validity Description Comments
GR_R_52_V10 52X To be used for data reprocessing. As GR_R_52_V9D with the following updates:
- updated JECs for JPT (Aug 2012).
GR_R_52_V9D 52X To be used for data reprocessing. As GR_R_52_V9 with the following updates:
- New btag and mistag Data/MC scale factors.
GR_R_52_V9B 52X This GT is broken. Do not use it. As GR_R_52_V9 with the following updates:
- New btag and mistag Data/MC scale factors.
GR_R_52_V9 52X To be used for data reprocessing. As GR_R_52_V8 with the following updates:
- new 2012 data JECs.
FT_R_52_V8E 52X To be used for data reprocessing.
(Snapshot not valid for runs > 197610 [= 2012-06-28])[2]
As GR_R_52_V8E with the following updates:
- reading from frozen snapshot of DB accounts.
FT_R_52_V8D 52X To be used for data reprocessing.
(Snapshot not valid for runs > 197610 [= 2012-06-28])[2]
As GR_R_52_V8D with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_52_V8E 52X To be used for data reprocessing. As GR_R_52_V8C with the following updates:
- fix for problem with strips noise
- strips bad channels recomputed for the new SiStripNoise_GR10_v2_offline.
GR_R_52_V8D 52X To be used for data reprocessing. As GR_R_52_V8B with the following updates:
- fix for problem with strips noise
- strips bad channels recomputed for the new SiStripNoise_GR10_v2_offline.
GR_R_52_V8C 52X To be used for data reprocessing. As GR_R_52_V8 with the following updates:
- possibility to mask ECAL samples added
- new ECAL intercalibrations.
GR_R_52_V8B 52X To be used for data reprocessing. As GR_R_52_V8 with the following updates:
- new ECAL intercalibrations.
FT_R_52_V8A 52X To be used for data reprocessing.
(Snapshot not valid for runs > 195535 [= 2012-06-04].)[2]
As FT_R_52_V8 with the following updates:
- reading from frozen snapshot of DB accounts.
- Includes EcalSampleMask_offline to fix the problem with 100/pb of low PU.
- Requires special release (CMSSW_5_2_5_ecalpatch1).
FT_R_52_V8 52X To be used for data reprocessing.
(Snapshot not valid for runs > 195535 [= 2012-06-04])[2]
As GR_R_52_V8 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_52_V8 52X To be used for data reprocessing. As GR_R_52_V7 with the following updates:
- updated ECAL laser APD/PN
- updated ES intercalibrations
- new Ecal laser alphas.
GR_R_52_V7E 52X To be used for data reprocessing. As GR_R_52_V7C with the following updates:
- New btag and mistag Data/MC scale factors.
GR_R_52_V7D 52X This GT is broken. Do not use it. As GR_R_52_V7C with the following updates:
- New btag and mistag Data/MC scale factors.
GR_R_52_V7C 52X To be used for data reprocessing. As GR_R_52_V7 with the following updates:
- new 2012 data JECs.
GR_R_52_V7 52X To be used for data reprocessing. As GR_R_52_V6 with the following updates:
- Updated HcalRespCorrs to cover 2010 data.
GR_R_52_V6 52X To be used for data reprocessing. As GR_R_52_V5 with the following updates:
- Updated HCAL calibrations as presented here https://indico.cern.ch/conferenceDisplay.py?confId=169549.
GR_R_52_V5 52X To be used for data reprocessing. As GR_R_52_V4 with the following updates:
- Summer 2011 alignment (GR10_v5_offline) updated with 3 more IOVs covering pixel movements up to run 176549 (GR10_v6_offline)
- Backports kinks and bows to 2010 geometry
- Updated beamspot for the new alignment in the tag TrackerAlignment_GR10_v7_offline
- DT t0 migration.
GR_R_52_V4 52X (Not for prod.[1]) To be used for data reprocessing. As GR_R_52_V3 with the following updates:
- new format for DT readout mapping
- back to old SR tag
- new strips bad channel tag, ok also for 2010.
GR_R_52_V3 52X (Not for prod.[1]) To be used for data reprocessing. As GR_R_52_V2 with the following updates:
- ECAL Selective Readout for 2012
- DT t0 migration.
GR_R_52_V2 52X To be used for data reprocessing. As GR_R_52_V1 with the following updates:
- new Jecs for JPT
- new track based muon alignment.
GR_R_52_V1 52X To be used for data reprocessing. As GR_R_50_V11 with the following updates:
inclusion of new HF payload

Global tags for collision data reprocessing (50X)

The following tags are valid for 50X
TAGNAME Validity Description Comments
GR_R_50_V13 50X To be used for data reprocessing. As GR_R_50_V12 with the following updates:
- back to old SR tag
- new strips bad channel tag, ok also for 2010.
GR_R_50_V12 50X To be used for data reprocessing. As GR_R_50_V11 with the following updates:
- new JECS fsor JPT
- ECAL Selective Readout for 2012
GR_R_50_V11 50X To be used for data reprocessing. As GR_R_50_V10 with the following updates:
- fix in AlCaRecoTriggerBitsRcd for HI runs.
GR_R_50_V10 50X To be used for data reprocessing. As GR_R_50_V9 with the following updates:
- jan2012: update to ECAL intercalib tag
- first 2012 HLT bits
- jan2012: update to ECAL alpha tag.
GR_R_50_V9 50X To be used for data reprocessing. As GR_R_50_V8 with the following updates:
- correction for HPD gain drift and new HCAL calib (bring back in, lost by error)
- ES channel status update for 2011 run (bring back in, lost by error)
- Same as Nov30: ECAL APD/PN, intercalib, alphas and scale (bring back in, lost by error)
- Fall11 JEC.
GR_R_50_V8 50X To be used for data reprocessing. As GR_R_50_V7 with the following updates:
- migrate all payloads to prod. accounts.
GR_R_50_V7 50X (Not for prod.[1]) To be used for data reprocessing. As GR_R_50_V6 with the following updates:
- add photon corrections.
GR_R_50_V6 50X (Not for prod.[1]) To be used for data reprocessing. As GR_R_50_V5 with the following updates:
- as in Nov30 laser APD/PN
- new ECAL EB alignment, following tracker
- as in Nov30 ECAL scale
- new ECAL EE alignment, following tracker
- correction for HPD gain drift
- ES channel status update for 2011 run
- new btag calibration
- new DT alignment, following tracker
- as in Nov30 ECAL intercalib
- new CSC alignment, following tracker
- as in Nov30, ECAL laser alphas
- very new tracker alignment
- new hcal calibration
- new Tracker alignment (Kink&Bows + dilepton constraints)
- new Global aligment, following tracker
- update the beam-spot tag for the last period of data.
GR_R_50_V5 50X (Not for prod.[1]) To be used for data reprocessing. As GR_R_50_V4 with the following updates:
- minor fix to HCAL RecoParams.
GR_R_50_V4 50X (Not for prod.[1]) To be used for data reprocessing. As GR_R_50_V3 with the following updates:
- new photon corrections for EGamma
- add EGamma photon corrections for PF
- update HCAL MC and Reco params.
GR_R_50_V3 50X (Not for prod.[1]) To be used for data reprocessing. As GR_R_50_V2 with the following updates:
- add Ecal cluster corrections
- upadte SiStrip DCS tag fixing the problem with TEC in the High PU runs
- add ES object to recover dead channels.
GR_R_50_V2 50X (Not for prod.[1]) To be used for data reprocessing. As GR_R_50_V1 with the following updates:
- add centrality tables for HI
- add new CSC object for gas gain corrections
- add trigger bit selection for Muon DQM
- update ECAL channel status merging 2010 and 2011 tags.
GR_R_50_V1 50X (Not for prod.[1]) To be used for data reprocessing. As GR_R_50_V0 with the following updates:
- update reconstruction geometry (new beampipe)
- update the DT TPG O2O tags
- update AlCaReco trigger bit selection for HI
- update reference histograms for DQM
- omment
- update HCAL MCParams to store shape type association to each channel.
GR_R_50_V0 50X (Not for prod.[1]) To be used for data reprocessing. As GR_R_44_V6 with the following updates:
- migraet castor RecoParams to prod
- update reconstruction geometry.

Global tags for collision data reprocessing (44X)

The following tags are valid for 44X
TAGNAME Validity Description Comments
GR_R_44_V15 44X To be used for data reprocessing. As GR_R_44_V14 with the following updates:
- new strips bad channel tag, ok also for 2010.
GR_R_44_V14 44X To be used for data reprocessing. As GR_R_44_V13 with the following updates:
- JPT updated Jec.
GR_R_44_V13 44X To be used for data reprocessing. As GR_R_44_V12 with the following updates:
- Fall11 JEC
- same as Nov30: ECAL scale
- same as Nov30: APD/PN
- same as Nov30: ECAL intercalib
- same as Nov30: alphas.
GR_R_44_V12 44X To be used for data reprocessing. As GR_R_44_V11 with the following updates:
- upadte SiStrip DCS tag fixing the problem with TEC in the High PU runs
FT_R_44_V11 44X To be used for data reprocessing.
(Snapshot not valid for runs > 181982 [= 2011-11-18])[2]
used for Nov19 re-reco
As GR_R_44_V11 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_44_V11 44X To be used for data reprocessing. As GR_R_44_V10 with the following updates:
- update ECAL transparency corrections for 2011B
- update ECAL IC constants for 2011B
- update ECAL channel status merging 2010 and 2011 tags.
GR_R_44_V10 44X To be used for data reprocessing. As GR_R_44_V9 with the following updates:
- add JEC for HI
- add centrality tables for HI.
FT_R_44_V9 44X To be used for data reprocessing.
(Snapshot not valid for runs > 181036 [= 2011-11-08])[2]
used for Nov8 re-reco
As GR_R_44_V9 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_44_V9 44X To be used for data reprocessing. As GR_R_44_V8 with the following updates:
- new ECAL scale for 2011 reprocessing
- update the beam-spot tag for the last period of data.
GR_R_44_V8 44X NOTE: Not to be used for data reprocessing, beam-spot missing for the most recent runs, ECAL scale to be updated. As GR_R_44_V7 with the following updates:
- new beamspot
- new ECAL EB aligment, following tracker
- updated fit of ECAL laser corrections for the PromptV6 dataset
- new ECAL EE aligment, following tracker
- ecal channel status update for 2011 run
- correction for HPD gain drift
- es channel status update for 2011 run
- new btag calibration
- new DT aligment, following tracker
- new CSC aligment, following tracker
- very new traker alignment
- new hcal calibration
- new Tracker alignment (Kink&Bows + dilepton constraints)
- new Global aligment, following tracker.
GR_R_44_V7 44X To be used for data reprocessing. As GR_R_44_V6 with the following updates:
- add trigger selection for JetMET DQM
- update AlCaReco trigger bit selection including streams for HI
- update reference histograms for DQM.
GR_R_44_V6C 44X To be used for data reprocessing.
to test new Hcal conditions
As GR_R_44_V6 with the following updates:
- correction for HPD gain drift
- new HCAL recoparam
- new hcal calibration.
GR_R_44_V6B 44X To be used for data reprocessing.
to test new HCAL conditions
As GR_R_44_V6A with the following updates:
- correction for HPD gain drift
- new HCAL recoparam
- new hcal calibration.
GR_R_44_V6A 44X To be used for data reprocessing.
to test new alignment
As GR_R_44_V6 with the following updates:
- new DT aligment, following tracker
- new ECAL EE aligment, following tracker
- new beamspot
- new CSC aligment, following tracker
- new ECAL EB aligment, following tracker
- new btag calibration
- new Tracker alignment (Kink&Bows + dilepton constraints)
- new Global aligment, following tracker.
GR_R_44_V6 44X To be used for data reprocessing. As GR_R_44_V5 with the following updates:
- new HCAL reco-param
GR_R_44_V5 44X To be used for data reprocessing. As GR_R_44_V4 with the following updates:
- new btag probability
- update ECAL timing constants
- new DT time pedestal
- new SiStrips DCS tag
- new DT drift velocity
- ideal sistrip bad channels.
GR_R_44_V4 44X To be used for data reprocessing. As GR_R_44_V2 with the following updates:
- migraet castor RecoParams to prod
- improved memory model for CMS calo geometry
GR_R_44_V2 44X (Not for prod.[1]) To be used for data reprocessing. As GR_R_44_V1 with the following updates:
- update Castor Gains and channel quality
- fix SiStrip DCS O2O
- new tag ECAL APD/PN laser corrections to be used for prompt reco.
GR_R_44_V1 44X (Not for prod.[1]) To be used for data reprocessing. As GR_R_44_V0 with the following updates:
- L1 fixes for O2O problems
- fix SiPixelQuality tags.
GR_R_44_V0 44X (Not for prod.[1]) To be used for data reprocessing. As GR_R_43_V3 with the following updates:
- improved memory model for CMS calo geometry
- new JEC
- switch to run-based alphas and refs for ECAL laser corrections (no changes in the values)
- HCAL response for EPS re-reco
- new model for ECAL laser corrections (mixed v1 and v2 models)
- ECAL scale for EPS re-reco
- ECAL intercalib for EPS re-reco.

Global tags for collision data reprocessing (43X)

The following tags are valid for 43X

TAGNAME Validity Description Comments
GR_R_43_V3 43X (Not for prod.[1]) To be used for data reprocessing. As GR_R_43_V2 with the following updates:
- omment.
GR_R_43_V2 43X To be used for data reprocessing. As GR_R_43_V1 with the following updates:
- add SiStrip LA dedicated to peak and deco modes
- new JEC (Jec11 V1 version)
- fix ES rec-hit ratio-cuts for 2010
- Fix O2O issues
- new name convention for ECAL laser
- test tag for ECAL laser, no VPT
- update the SiStrp DCS tag to fix the Commissionin10 period.
GR_R_43_V1 43X To be used for reprocessing of 2009 and 2010 data. As GR_R_43_V0 with the following updates:
- strip channel status update with cosmics 2011
- ECAL laser lumi improvements
- omment
- update TS parameters for ZDC in 2011 data
- switch to the run-info payload written at the end of run (should fix a few inconsitencies with the B field from DB).
GR_R_43_V0 43X To be used for reprocessing of 2009 and 2010 data. As GR_R_42_V10 with the following updates:
- New pixel template after timing adjustments
- L1 for 2011 run, bug fix in 020
- update dE/dx calibrations for MIPs in SiStrip
- update DT time pedestals for cosmics reco.

Global tags for collision data reprocessing (42X)

The following tags are valid for 42X
TAGNAME Validity Description Comments
GR_R_42_V25 42X To be used for data reprocessing. As GR_R_42_V24 with the following updates:
- fix for HI data taking in AlcaRecoTriggerBits
- new strips bad channel tag, ok also for 2010.
FT_R_42_V24 42X To be used for data reprocessing.
(Snapshot not valid for runs > 183342 [= 2012-01-16])[2]
As GR_R_42_V24 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_42_V24 42X To be used for data reprocessing. As GR_R_42_V23 with the following updates:
- jan2012: update to ECAL intercalib tag
- es channel status update for 2011 run
- jan2012: update to ECAL alpha tag.
GR_R_42_V23 42X To be used for data reprocessing. As GR_R_42_V21B with the following updates:
- Fall11 JEC
- fix for HCAL QPLL
- ideal sistrip bad channels.
FT_R_42_V21B 42X To be used for data reprocessing.
(Snapshot not valid for runs > 182718 [= 2011-11-30])[2]
used for Nov30 re-reco
As GR_R_42_V21B with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_42_V22A 42X To be used for data reprocessing. Note: the ECAL laser corrections are valid ONLY for the Run2011A dataset (8 of September).
used for 2011A part of Nov4 re-reco
As GR_R_42_V22 with the following updates:
- updated fit of ECAL laser corrections for the PromptV6 dataset.
GR_R_42_V22 42X To be used for data reprocessing.
used for 2011B part of Nov4 re-reco
As GR_R_42_V21 with the following updates:
- add trigger selection for JetMET DQM
- update reference histograms for DQM
- new SiStrips DCS tag
- ecal channel status update for 2011 run.
GR_R_42_V21B 42X To be used for data reprocessing. As GR_R_42_V21A with the following updates:
- end of the year, APD/PN
- update reference histograms for DQM
- end of the year, alphas
- end of the year, scale
- update ECAL channel status merging 2010 and 2011 tags
- add trigger selection for JetMET DQM
- upadte SiStrip DCS tag fixing the problem with TEC in the High PU runs.
FT_R_42_V21A 42X To be used for data reprocessing.
(Snapshot not valid for runs > 177541 [= 2011-09-30])[2]
used for Oct4 re-reco
As GR_R_42_V21A with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_42_V21A 42X To be used for data reprocessing. Note: the ECAL laser corrections are valid ONLY for the Run2011A dataset (8 of September). As GR_R_42_V21 with the following updates:
- updated fit of ECAL laser corrections for the PromptV6 dataset.
GR_R_42_V21 42X To be used for data reprocessing. As GR_R_42_V20 with the following updates:
- update ECAL timing constants.
FT_R_42_V20A 42X To be used for data reprocessing.
(Snapshot not valid for runs > 172789 [= 2011-08-05])[2]
used for Aug5 re-reco
As GR_R_42_V20 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_42_V20 42X To be used for data reprocessing. As GR_R_42_V19 with the following updates:
- L1 fixes for O2O problems
- HCAL response for EPS re-reco
- fix SiStrip DCS O2O
- new tag ECAL APD/PN laser corrections to be used for prompt reco.
GR_R_42_V19 42X To be used for data reprocessing. As GR_R_42_V14 with the following updates:
- new JEC
- switch to run-based alphas and refs for ECAL laser corrections (no changes in the values)
- new ECAL laser corrections
- ECAL intercalib for EPS re-reco
- ECAL scale for EPS re-reco.
FT_R_42_V18A 42X To be used for data reprocessing.
(Snapshot not valid for runs > 168366 [= 2011-07-04])[2]
used for Jul05-HF re-reco
As GR_R_42_V18 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_42_V18 42X To be used for data reprocessing. As GR_R_42_V16 with the following updates:
- new ECAL laser corrections.
FT_R_42_V17A 42X To be used for data reprocessing.
(Snapshot not valid for runs > 168366 [= 2011-07-04])[2]
used for Jul05 re-reco
As GR_R_42_V17 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_42_V17 42X To be used for data reprocessing. As GR_R_42_V15 with the following updates:
- new ECAL laser corrections.
FT_R_42_V16A 42X To be used for data reprocessing.
(Snapshot not valid for runs > 168366 [= 2011-07-02])[2]
used for Jul02-HF re-reco
As GR_R_42_V16 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_42_V16 42X To be used for data reprocessing. As GR_R_42_V14 with the following updates:
- ECAL intercalib for EPS re-reco
- ECAL scale for EPS re-reco
- HCAL response for EPS re-reco
- new model for ECAL laser corrections (mixed v1 and v2 models).
FT_R_42_V15A 42X To be used for data reprocessing.
(Snapshot not valid for runs > 168366 [= 2011-07-02])[2]
used for Jul02 re-reco
As GR_R_42_V15 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_42_V15 42X To be used for data reprocessing. As GR_R_42_V14 with the following updates:
- ECAL intercalib for EPS re-reco
- ECAL scale for EPS re-reco
- new model for ECAL laser corrections (mixed v1 and v2 models).
GR_R_42_V14B 42X To be used for data reprocessing. As GR_R_42_V14 with the following updates:
- pixels failure scenario.
GR_R_42_V14A 42X (Not for prod.[1]) To be used for data reprocessing. As GR_R_42_V14 with the following updates:
- ECAL laser test.
GR_R_42_V14 42X To be used for data reprocessing. As GR_R_42_V13 with the following updates:
- Fix O2O issues
- new name convention for ECAL laser.
FT_R_42_V13A 42X To be used for data reprocessing.
(Snapshot not valid for runs > 164183 [= 2011-05-09])[2]
used for May10 re-reco
As GR_R_42_V13 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_42_V13 42X To be used for data reprocessing. As GR_R_42_V12 with the following updates:
- test tag for ECAL laser, no VPT.
GR_R_42_V12 42X To be used for data reprocessing. As GR_R_42_V11 with the following updates:
- new JEC (Jec11 V1 version)
- fix ES rec-hit ratio-cuts for 2010
- update the SiStrp DCS tag to fix the Commissionin10 period.
GR_R_42_V11B 42X (Not for prod.[1]) To be used for data reprocessing. As GR_R_42_V11 with the following updates:
- fix for 2010
- test tag for ECAL laser, no VPT.
GR_R_42_V11A 42X (Not for prod.[1]) To be used for data reprocessing. As GR_R_42_V11 with the following updates:
- fix for 2010
- test tag for ECAL laser, no VPT.
GR_R_42_V11 42X To be used for data reprocessing. As GR_R_42_V10 with the following updates:
- strip channel status update with cosmics 2011
- update TS parameters for ZDC in 2011 data
- switch to the run-info payload written at the end of run (should fix a few inconsitencies with the B field from DB)
- update ECAL laser corrections to v5.
FT_R_42_V10A 42X To be used for reprocessing of 2009 and 2010 data.
(Snapshot not valid for runs > 163114 [= 2011-04-20])[2]
used for 42 re-reco of 2010 dataset
As GR_R_42_V10 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_42_V10 42X To be used for data reprocessing. As GR_R_42_V8 with the following updates:
- Update ES calibrations for LG (2011 data only).
GR_R_42_V8 42X To be used for reprocessing of 2009 and 2010 data. As GR_R_42_V7 with the following updates:
- migrate payloads from prep to prod
- new parameters for HCAL
- new PF cluster calibrations
- add tag for drop-box metadata in PCL
- laser corrections in PCL
- fix ES RecHitRatioCuts for change of gains.
GR_R_42_V7 42X (Not for prod.[1]) To be used for reprocessing of 2009 and 2010 data. As GR_R_42_V6 with the following updates:
- L1 for 2011 run, bug fix in 020
- change tag for HCAL QIE
- update the beam-spot tag
- update CSC ring alignment
- new twist-free Tk alignment geometry
- update DT time pedestals for cosmics reco
- update the ECAL+ES alignment
- update the GPR for Tracker and Muon system.
GR_R_42_V6 42X (Not for prod.[1]) To be used for reprocessing of 2009 and 2010 data. As GR_R_42_V5 with the following updates:
- update Castor conditions
- new ecal cluster corrections
- add conditions for L1 DT emulation
- update HCAL resp. corrections for eta and phi dependence..
GR_R_42_V5 42X (Not for prod.[1]) To be used for reprocessing of 2009 and 2010 data. As GR_R_42_V3 with the following updates:
- introduce Ecal SR tag for DQM purposes
- new parameters for HCAL
- add tags fro DCD O2O of the DTs
- add tag for drop-box metadata in PCL.
GR_R_42_V3 42X (Not for prod.[1]) To be used for reprocessing of 2009 and 2010 data. As GR_R_42_V2 with the following updates:
- new PF cluster calibrations
- new tag for Si-Strip Pedestals including the values needed for HI reprocessing
- updated HCAL response corrections
- new HCAL Response corrections and PF corrections (set to 1).
GR_R_42_V2 42X To be used for reprocessing of 2009 and 2010 data. As GR_R_42_V0 with the following updates:
- new Jet Energy Corrections.
GR_R_42_V0 42X To be used for reprocessing of 2009 and 2010 data. As GR_R_311_V1 with the following updates:
- new tag for ECAL pedestals
- change tag name for SiStrip DCS O2O.

Global tags for collision data reprocessing (311X and 41X)

NOTE: the GTs for 41X are exactly the same as for 311X since the only difference between the 2 releases is the version of ROOT.

The following tags are valid for 311X

TAGNAME Validity Description Comments
GR_R_41_V0 41X To be used for reprocessing of 2009 and 2010 data. As GR_R_311_V4 with the following updates:
- Fix O2O issues
- new Jet Energy Corrections (Jec10 v3)
- new name convention for ECAL laser.
FT_R_311_V4A 41X To be used for data reprocessing.
(Snapshot not valid for runs > 164183 [= 2011-05-07])[2]
As GR_R_311_V4 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_311_V4 311X > 3110pre4 To be used for reprocessing of 2009 and 2010 data. As GR_R_311_V3 with the following updates:
- fix ES rec-hit ratio-cuts for 2010
- update the SiStrp DCS tag to fix the Commissionin10 period
- new ECAL energy scale
- test tag for ECAL laser, no VPT.
GR_R_311_V3 311X > 3110pre4 To be used for reprocessing of 2009 and 2010 data. As GR_R_311_V2 with the following updates:
- strip channel status update with cosmics 2011
- update ECAL laser corrections to v5
- Update ES calibrations for LG (2011 data only)
- update DT time pedestals for cosmics reco
- L1 for 2011 run, bug fix in 020
- fix ES RecHitRatioCuts for change of gains.
GR_R_311_V2 311X > 3110pre4 To be used for reprocessing of 2009 and 2010 data. As GR_R_311_V1 with the following updates:
- new Jet Energy Corrections
- change tag name for SiStrip DCS O2O
- new tag for Si-Strip Pedestals including the values needed for HI reprocessing
- new tag for ECAL pedestals.
GR_R_311_V1 311X > 3110pre4 To be used for reprocessing of 2009 and 2010 data. As GR_R_311_V0 with the following updates:
-migrate tags to prod
- new tau mva.
GR_R_311_V0 311X > 3110pre4 (Not for prod.[1]) To be used for reprocessing of 2009 and 2010 data. As GR_R_310_V3 with the following updates:
- update CSC time constants.

Global tags for collision data reprocessing (310X)

The following tags are valid for 310X

TAGNAME Validity Description Comments
GR_R_310_V3 310X > 3100pre1 To be used for reprocessing of 2009 and 2010 data. As GR_R_310_V2 with the following updates:
- fix ECAL time-corrections
- migrate Tk Alignment deformations to prod.
GR_R_310_V2 310X > 3100pre1 (Not for prod.[1]) To be used for reprocessing of 2009 and 2010 data. As GR_R_310_V1 with the following updates:
- fix tags for L1 affected by O2O problem
- update Jet Energy Corrections to Spring10 V8.
GR_R_310_V1 310X > 3100pre1 (Not for prod.[1]) To be used for reprocessing of 2009 and 2010 data. As GR_R_310_V0 with the following updates:
- update reference histograms for DQM
- add object for kink and bows dof in Tracker alignment.
GR_R_310_V0 310X > 3100pre1 To be used for reprocessing of 2009 and 2010 data. As GR_R_39X_V3 with the following updates:
- new ECAL laser corrections for transparency loss.

Global tags for collision data reprocessing (39X)

The following tags are valid for 39X

TAGNAME Validity Description Comments
GR_R_39X_V6 39X > 390pre4 To be used for reprocessing of 2009 and 2010 data. As GR_R_39X_V5 with the following updates:
- new Jet Energy Corrections
- change tag name for SiStrip DCS O2O
- fix ECAL time-corrections.
GR_R_39X_V5 39X > 390pre4 To be used for reprocessing of 2009 and 2010 data. As GR_R_39X_V4 with the following updates:
- fix tags for L1 affected by O2O problem
- update Jet Energy Corrections to Spring10 V8.
FT_R_39X_V4A 39X To be used for reprocessing of 2009 and 2010 data.
(Snapshot not valid for runs > 152504 [= 2010-11-25])[2]
As GR_R_39X_V4 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_39X_V4 39X > 390pre4 To be used for reprocessing of 2009 and 2010 data. As GR_R_39X_V3 with the following updates:
- update reference histograms for DQM
- new ECAL laser corrections for transparency loss.
GR_R_39X_V3 39X > 390pre4 (Not for prod.[1]) To be used for reprocessing of 2009 and 2010 data. As GR_R_39X_V2 with the following updates:
- update beam-spot for new Tk geometry
- update Tracker alignment and APEs
- new ECAL laser corrections for transparency loss
- new ECAL tags for laser corrections
- update SiStrip Lonrentz Angle
- new ECAL EB and ES alignment
- update ECAL time calibrations
- update HCAL PF corrections
- update BTag probabilities for new Tk alignment
- update SiStrip backplane corrections
- update HCAL channel quality
- update HCAL phi dependent relative corrections
- update HCAL timing corrections
- new SiStrip channel quality from DCS O2O
- update ES intercalibrations
- update ECAL intercalibrations
- update DT vdrift
- update ES alignment
- update ECAL channel status.
GR_R_39X_V2 39X > 390pre4 To be used for reprocessing of 2009 and 2010 data. As GR_R_39X_V1 with the following updates:
- new tag for beam-spot using the improved version of the algorithm for IOV collapsing
- update AlcaReco trigger bit selection to have the PCL working on relvals.
GR_R_39X_V1 39X > 390pre4 To be used for reprocessing of 2009 and 2010 data. As GR_R_39X_V0 with the following updates:
- new beam-spot using measured SigmaZ
- Update BTag track prob. calibrations
- SiStripBadStrip record added (no actual masking).
GR_R_39X_V0 39X To be used for reprocessing of 2009 and 2010 data. As GR_R_38X_V13 with the following updates:
- new ES calibration taking into account missing planes/regions of the detector
- update HCAL timing corrections.

Global tags for collision data reprocessing (38X)

The following tags are valid for 38X

TAGNAME Validity Description Comments
GR_R_38X_V15 38X >= 382 To be used for reprocessing of 2009 and 2010 data. As GR_R_38X_V14 with the following updates:
- update Jet Energy Corrections to Spring10 V8.
FT_R_38X_V14A 38X >= 383 To be used for reprocessing of 2009 and 2010 data.
(Snapshot not valid for runs > 149946 [= 2010-11-04])[2]
As GR_R_38X_V14 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_38X_V14 38X >= 382 To be used for reprocessing of 2009 and 2010 data. As GR_R_38X_V13 with the following updates:
- updated Jet energy Corrections to Spring10 version
- new tag for beam-spot using the improved version of the algorithm for IOV collapsing
- update HCAL timing corrections
- update AlcaReco trigger bit selection to have the PCL working on relvals.
GR_R_38X_V13A 38X >= 382 To be used for reprocessing of 2009 and 2010 data.
(Snapshot not valid for runs > 145827 [= 2010-09-16])[2]
As GR_R_38X_V13 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_38X_V13 38X >= 382 To be used for reprocessing of 2009 and 2010 data. As GR_R_38X_V12 with the following updates:
- new tag for HCAL LUTs
- updated AlCaReco trigger bit selection.
GR_R_38X_V12A 38X Conditions 2009 - 2010 data re-reco
(Snapshot not valid for runs > 144707 [= 2010-09-03])[2]
As GR_R_38X_V11A with the following updates:
- frozen IOV up to run 144707 for re-reco pre-production with 382patch1.
GR_R_38X_V12 38X >= 382 To be used for reprocessing of 2009 and 2010 data. As GR_R_38X_V11 with the following updates:
- fix EB alignment (EB+/- swap).
GR_R_38X_V11A 38X Conditions 2009 - 2010 data re-reco
(Snapshot not valid for runs > 144707 [= 2010-09-02])[2]
As GR_R_38X_V11 with the following updates:
- frozen IOV up to run 144707 for re-reco pre-production with 382patch1.
GR_R_38X_V11 38X >= 382 To be used for reprocessing of 2009 and 2010 data. As GR_R_38X_V10 with the following updates:
- roll back of ECAL EB alignment to 'nominal'.
GR_R_38X_V10A 38X Conditions 2009 - 2010 data re-reco
(Snapshot not valid for runs > 144707 [= 2010-09-02])[2]
As GR_R_38X_V10 with the following updates:
- frozen IOV up to run 144707 for re-reco pre-production with 382patch1.
GR_R_38X_V10 38X >= 382 To be used for reprocessing of 2009 and 2010 data. As GR_R_38X_V9 with the following updates:
- new beam-spot tag with LS based IOVs
- New ECAL DQM objects
- update CSC time constants.
GR_R_38X_V9A 38X Conditions 2009 - 2010 data re-reco
(Snapshot not valid for runs > 142796 [= 2010-08-12])[2]
As GR_R_38X_V9 with the following updates:
- frozen IOV up to run 142796 for re-reco pre-production with 381patch2.
GR_R_38X_V9 38X >= 381patch2 To be used for reprocessing of 2009 and 2010 data. As GR_R_38X_V8 with the following updates:
- new DT pedestals ( sign-off 11/08/2010 )
- Update CSC cross-talk ( Signoff 21/07/2010 )
- update CSC timing corrections
- new ECAL alignment
- update DQM reference files
- new ECAl calibrations (sign off 04/09/2010)
- Update CSC Pedestals ( Signoff 21/07/2010 )
- Update CSC noise matrix ( Signoff 21/07/2010 )
- Update CSC Gains ( Signoff 21/07/2010 ).
GR_R_38X_V8 38X > 380pre1 (Not for prod.[1]) To be used for reprocessing of 2009 and 2010 data. As GR_R_38X_V7 with the following updates:
- add objects for DQM Quality Test configuration for SiPixel
- add object for Trigger Selection in DQM ME filling for SiStrip
- add objects for DQM Quality Test configuration for SiStrip.
GR_R_38X_V7 38X > 380pre1 (Not for prod.[1]) To be used for reprocessing of 2009 and 2010 data. As GR_R_38X_V6 with the following updates:
- fix RPC reco geometry for chamber size (RE1/2 stations).
GR_R_38X_V6 38X > 380pre1 (Not for prod.[1]) To be used for reprocessing of 2009 and 2010 data. As GR_R_38X_V5 with the following updates:
- Jet correction parameters from DB.
Produced on 08/07/2010
GR_R_38X_V5 38X > 380pre1 (Not for prod.[1]) To be used for reprocessing of 2009 and 2010 data. As GR_R_38X_V4 with the following updates:
- update CSC timing corrections.
GR_R_38X_V4 38X > 380pre1 (Not for prod.[1]) To be used for reprocessing of 2009 and 2010 data. As GR_R_38X_V3A with the following updates:
- add SiStrip object for Reco configuration depending on RO mode in data
- add ECAl alignment objects.
GR_R_38X_V3 38X > 380pre1 (Not for prod.[1]) To be used for reprocessing of 2009 and 2010 data. As GR_R_38X_V2 with the following updates:
- add SiStrip ogbject for Reco configuration depending on RO mode.
GR_R_38X_V2 38X > 380pre1 (Not for prod.[1]) To be used for reprocessing of 2009 and 2010 data. As GR_R_38X_V1 with the following updates:
- roll back muon track-based alignment and global position record
- split Tk geometry (PGeometricDet And PGeometricDetExtra migration).
GR_R_38X_V1 38X > 380pre1 (Not for prod.[1]) To be used for reprocessing of 2009 and 2010 data. As GR_R_38X_V0 with the following updates:
- separate MIP and angle corrections in ES intercalibrations.
GR_R_38X_V0 38X > 380pre1 (Not for prod.[1]) To be used for reprocessing of 2009 and 2010 data. As GR_R_37X_V5 with the following updates:
- new CSC timing corrections.

TAGNAME Validity Description Comments
GRPV10_T1 38X >= 382 To be used for reprocessing of 2009 and 2010 data. As GR10_P_V10 with the following updates:
- SiStrip bad components scenario PS1.
GRPV10_T2 38X >= 382 To be used for reprocessing of 2009 and 2010 data. As GR10_P_V10 with the following updates:
- SiStrip bad components scenario PS2.
GRPV10_T3 38X >= 382 To be used for reprocessing of 2009 and 2010 data. As GR10_P_V10 with the following updates:
- SiStrip bad components scenario PS3.
GRPV10_T4 38X >= 382 To be used for reprocessing of 2009 and 2010 data. As GR10_P_V10 with the following updates:
- SiStrip bad components scenario PS4.
GRPV10_T5 38X >= 382 To be used for reprocessing of 2009 and 2010 data. As GR10_P_V10 with the following updates:
- SiStrip bad components scenario PS5.
GRPV10_T6 38X >= 382 To be used for reprocessing of 2009 and 2010 data. As GR10_P_V10 with the following updates:
- SiStrip bad components scenario PS6.
GRPV10_T7 38X >= 382 To be used for reprocessing of 2009 and 2010 data. As GR10_P_V10 with the following updates:
- SiStrip bad components scenario "Cooling".
GRPV10_T8 38X >= 382 To be used for reprocessing of 2009 and 2010 data. As GR10_P_V10 with the following updates:
- SiStrip bad components scenario DAQ1.
GRPV10_T9 38X >= 382 To be used for reprocessing of 2009 and 2010 data. As GR10_P_V10 with the following updates:
- SiStrip bad components scenario DAQ2.
GRPV10_T10 38X >= 382 To be used for reprocessing of 2009 and 2010 data. As GR10_P_V10 with the following updates:
- SiStrip bad components scenario DAQ3.
GRPV10_T11 38X >= 382 To be used for reprocessing of 2009 and 2010 data. As GR10_P_V10 with the following updates:
- SiStrip bad components scenario DAQ4.
GRPV10_T12 38X >= 382 To be used for reprocessing of 2009 and 2010 data. As GR10_P_V10 with the following updates:
- SiStrip bad components scenario DAQ5.

Global tags for collision data reprocessing (37X)

The following tags are valid for 37X

TAGNAME Validity Description Comments
GR_R_37X_V6D 37X To be used for reprocessing of 2009 and 2010 data.
(Snapshot not valid for runs > 140188 [= 2010-07-15])[2]
As GR_R_37X_V6 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_37X_V6B 37X Conditions 2009 - 2010 data re-reco
(Snapshot not valid for runs > 139438 [= 2010-07-5])[2]
As GR_R_37X_V6 with the following updates:
- frozen IOV up to run 139438 for re-reco pre-production with 370p4.
GR_R_37X_V6A 37X Conditions 2009 - 2010 data re-reco
(Not valid for runs > 137368)[2]
As GR_R_37X_V6 with the following updates:
- frozen IOV up to run 137368 for re-reco pre-production with 370p2.
GR_R_37X_V6 37X To be used for reprocessing of 2009 and 2010 data. As GR_R_37X_V5 with the following updates:
- roll back muon track-based alignment and global position record.
GR_R_37X_V5A 37X To be used for reprocessing of 2009 and 2010 data
(Not valid for runs > 136239)[2].
As GR_R_37X_V5 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_37X_V5 37X To be used for reprocessing of 2009 and 2010 data. As GR_R_37X_V4 with the following updates:
- update SiStrip latency tag used in automatic O2O
- new Tracker alignment from 2010 collision and cosmics data
- update ES intercalibrations
- update (run-based) BS for new tracker geometry (Signed off 19/05/10)
- new Tracker alignment APE with tuned errors for some Pixel modules
- new DQM reference histograms.
GR_R_37X_V4 37X >= 370pre5 To be used for reprocessing of 2009 and 2010 data. As GR_R_37X_V3 with the following updates:
- add ECAL DCS and DAQ tower status
- new L1 object for RCT noisy channels
- update ECAL channel status with fix to 8 IOVs (Signed off 12/05/10)
- update ECAL time calibration constatns (Signed off 12/05/10)
- new HW based Muon aligment (Pending sign-off 12/05/10)
- new APE for DTs setting all values to 0 (Signed off 12/05/10).
GR_R_37X_V3 37X To be used for reprocessing of 2009 and 2010 data. As GR_R_37X_V2 with the following updates:
- update SiStrip gains from offline particle calibration
- update SiStrip Lorentz-Angle (correct for bias in deconvolution).
GR_R_37X_V2 37X >= 370pre3 To be used for reprocessing of 2009 and 2010 data. As GR_R_37X_V1 with the following updates:
- fix CSC alignment geometry (roll-back to the old one)
- remove some RPC tags used for MC only
- add ES objects (EE-ES Intercalibration and time samples).
GR_R_37X_V1 37X < 370pre3 To be used for reprocessing of 2009 and 2010 data. As GR_R_37X_V0 with the following updates:
- migrate RPC Noise amd Cluster size to production account
- fix ECAL intercalib constants (Boff)
- update HCAL gains
- Update AlcaReco selection for DtCalib.
GR_R_37X_V0 37X < 370pre3 To be used for reprocessing of 2009 and 2010 data. As GR_R_36X_V4 with the following updates:
- add ES conditions.

Global tags for collision data reprocessing (36X)

The following tags are valid for 36X> 360pre2

TAGNAME Validity Description Comments
GR_R_36X_V12B 36X >= 361 To be used for reprocessing of 2009 and 2010 data.
(Snapshot not valid for runs > 140188 [= 2010-07-15])[2]
As GR_R_36X_V12 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_36X_V12A 36X >= 361 To be used for reprocessing of 2009 and 2010 data
(Not valid for runs > 137368)[2].
As GR_R_36X_V12 with the following updates:
- frozen version of the GT for 361p4 re-reco. Valid only until run: 137368
GR_R_36X_V12 36X >= 361 To be used for reprocessing of 2009 and 2010 data. As GR_R_36X_V11 with the following updates:
- roll back muon track-based alignment and global position record.
GR_R_36X_V11A 36X To be used for reprocessing of 2009 and 2010 data
(Not valid for runs > 136239)[2].
As GR_R_36X_V11 with the following updates:
- reading from frozen snapshot of DB accounts.
GR_R_36X_V11 36X >= 361 To be used for reprocessing of 2009 and 2010 data. As GR_R_36X_V10 with the following updates:
- update SiStrip latency tag used in automatic O2O
- new Tracker alignment from 2010 collision and cosmics data
- update (run-based) BS for new tracker geometry (Signed off 19/05/10)
- update ECAL channel status with fix to 8 IOVs (Signed off 12/05/10)
- new Tracker alignment APE with tuned errors for some Pixel modules
- new DQM reference histograms.
GR_R_36X_V10A 361 Conditions 2009 - 2010 data re-reco As GR_R_36X_V10 with the following updates:
- frozen IOV up to run 134987 for re-reco pre-production with 361.
GR_R_36X_V10 36X >= 361 To be used for reprocessing of 2009 and 2010 data. As GR_R_36X_V9 with the following updates:
- update ECAL channel status (Signed off 12/05/10)
- update ECAL time calibration constatns (Signed off 12/05/10)
- new HW based Muon aligment (Pending sign-off 12/05/10)
- new APE for DTs setting all values to 0 (Signed off 12/05/10).
GR_R_36X_V9 36X >= 361 To be used for reprocessing of 2009 and 2010 data. As GR_R_36X_V7 with the following updates:
- add ES objects
- fix IOV problem in dE/dx SiStrip templates.
GR_R_36X_V7A 36X >= 360pre4 Conditions 2009 and 2010 data re-reco (meant for pre-production) As GR_R_36X_V7 with the following updates:
- frozen IOV up to run 133352 for re-reco pre-production.
GR_R_36X_V7 36X >= 360pre4 To be used for reprocessing of 2009 and 2010 data. As GR_R_36X_V6 with the following updates:
- update AlcaReco selection for DtCalib
- update SiStrip gains from offline particle calibration
- update SiStrip Lorentz-Angle (correct for bias in deconvolution)
.
GR_R_36X_V6 36X >= 360pre4 To be used for reprocessing of 2009 and 2010 data. As GR_R_36X_V5 with the following updates:
- roll-back of CSC alignment geometry.
GR_R_36X_V5 36X >= 360pre4 To be used for reprocessing of 2010 data. As GR_R_36X_V4 with the following updates:
- migrate RPC Noise amd Cluster size to production account
- fix ECAL intercalib constants (Boff)
- update HCAL gains.
GR_R_36X_V4 36X >= 360pre4 To be used for reprocessing of 2009 and 2010 data. As GR09_R_36X_V3 with the following updates:
- AlCaReco trigger bit selection
- update BS conditions
- new ECAL time calibrations and weights
- migrate RPC tags to production DB
- update HCAL pedestals, gains and channel quality
- switch to SiStrip tags from prompt
- update SiStrip channel status
- update tags for tracker alignment
- use L1 tags from prompt/hlt
- offline tags for muon alignment.
GR09_R_36X_V3 36X >= 360pre4 To be used for reprocessing of 2009 collision and cosmics data (not CRAFT09) Changes w.r.t. GR09_R_36X_V1:
- SiPixel Templates for 0T, 2T, 3T, 3.5T and 4T managed through labels
- new/imporeved records for L1 RPC.
GR09_R_36X_V1 36X = 360pre3 To be used for reprocessing of 2009 collision and cosmics data (not CRAFT09) Changes w.r.t. GR09_R_35X_V3:
- update CSC bad components
- new CSC L1 parameters
- update SiPixel channel status
- update MVAJetTag object.

Global tags for collision data reprocessing (35X)

TAGNAME Validity Description Comments
GR_R_35X_V8B 357 Conditions 2009 - 2010 data re-reco As GR_R_35X_V8 with the following updates:
- frozen IOV up to run 134987 for re-reco production with 358patch3.
GR_R_35X_V8A 35X Conditions for 2009 and 2010 data re-reco As GR_R_35X_V8 with the following updates:
- frozen IOV up to run 134574 for re-reco.
GR_R_35X_V8 35X To be used for reprocessing of 2009 and 2010 data (not CRAFT09). As GR_R_35X_V7 with the following updates:
- fix CSC alignment geometry (roll-back to the old one)
- update AlcaReco trigger bit selection.
GR_R_35X_V7A 35X Conditions 2010 data re-reco upt to run 133532 As GR_R_35X_V7 with the following updates:
- frozen IOV up to run 133532 for re-reco.
GR_R_35X_V7 35X To be used for reprocessing of 2009 and 2010 data (not CRAFT09). As GR_R_35X_V6 with the following updates:
- update ECAL intercalibration constants (fix for Bon)
- update Beam-Spot conditions
- update HCAL pedestals, gains and channel quality
- switch to SiStrip tags from prompt
- update SiStrip channel status
- update tags for tracker alignment
- use L1 tags from prompt/hlt
- offline tags for muon alignment.
GR_R_35X_V6 35X To be used for reprocessing of 2010 collision data only. As GR_R_35X_V5 with the following updates:
- update HCAL gains, pedestals and channel quality (from prompt).
GR_R_35X_V5 35X To be used for reprocessing of 2009 and 2010 data (not CRAFT09). As GR09_R_35X_V4 with the following updates:
- AlCaReco trigger bit selection
- new beam-spot conditions including 2010 runs
- update Tk alignment for 2010 runs (conditions from prompt)
- new ECAL time calibration (and weights).
GR09_R_35X_V4 35X To be used for reprocessing of 2009 collision data Changes w.r.t. GR09_R_35X_V3:
- new CSC bad channels tags
- new L1 parameters for CSC
- update Sipixel channel status (half dead module)
- new ECAL ADC-to-GeV constants.
GR09_R_35_V3C 35X To be used for reprocessing of 2009 cosmic data As GR09_R_35X_V3A but reading from frozen snapshot (+ fix for castor corrupted payloads).
GR09_R_35_V3A 35X To be used for reprocessing of 2009 cosmic data As GR09_R_35X_V3 but using DT time pedestals for cosmics.
GR09_R_35X_V3 35X To be used for reprocessing of 2009 collision data Changes w.r.t. GR09_R_35X_V2 only for the inclusion of the payloads for the IOV of interest for the /Cosmics/Commissioning09-v3/RAW dataset for:
- SiStrip bad components
- SiStrip latency
- ECAL intercalibrations and ADCtoGeV
- ECAL channel status
- HCAL pedestals
- HCAL gains.
NOTE: none of these changes are actually relevant for the collision data.
GR09_R_35_V2B 35X To be used for reprocessing of 2009 collision data As GR09_R_35X_V2 but reading from frozen snapshot (+ fix for castor corrupted payloads).
GR09_R_35_V2A 35X To be used for reprocessing of 2009 cosmic data As GR09_R_35X_V2 but using DT time pedestals for cosmics.
GR09_R_35X_V2 35X To be used for reprocessing of 2009 collision data Changes w.r.t. GR09_R_35X_V1:
- fix for ECAL weights in EB
- new SiPixel templates
- updated AlCaReco selection.
GR09_R_35X_V1 35X To be used for reprocessing of 2009 collision data As GR09_R_34X_V3 with the addition of the new records introduced in 35X: new MVA container and castor records.

Global tags for collision data reprocessing (34X)

TAGNAME Validity Description Comments
GR09_R_34X_V5 34X To be used for reprocessing of 2009 collision data Changes w.r.t. GR09_R_34X_V4:
- Updated AlCa trigger selection
- reads from January 2010 snapshot (FrontierArc).
GR09_R_34X_V4 34X To be used for reprocessing of 2009 collision data Changes w.r.t. GR09_R_34X_V3:
- new tag for ECAL weights in EB.
GR09_R_34X_V3 34X To be used for reprocessing of 2009 collision data Changes w.r.t. GR09_R_34X_V2:
- new ECAL intercalibration using 2009 splashes
-ECAL weights for fixed-weight amplitude reconstruction.
GR09_R_34X_V2 34X Used for Christmas reprocessing of 2009 collision data As GR09_R_V5 (33X) in terms of content, except additionally provides SiStripLatency constants (new to 34X)

Global tags for 2009 collision data reprocessing (33X)

TAGNAME Validity Description Comments
GR09_R_V6A 32X>=326, 33X To be used for 22/01/2010 reprocessing of 2009 collision data As GR09_R_V6 but reading from the snapshot accounts on FrontierArc. Meant for production.
GR09_R_V6 32X>=326, 33X To be used for 22/01/2010 reprocessing of 2009 collision data As GR09_R_V5 except for new ECAL calibrations using the 2009 splashes and the new ECAL weights for fixed-weight amplitude reconstruction
GR09_R_V5 32X>=326, 33X Used for Christmas reprocessing of 2009 collision data As GR09_P_V8 except non inflated tracker APEs, SiStrip bad components/modules updated with appropriate IOVs, latest fixes to AlCaRecoTriggerPaths applied to all runs, tracker alignment and global position updated from latest survey measurements, with all beamspot IOVs updated accordingly, bad channel updates for SiPixel, ECAL and HCAL, IOV updates for ECAL intercalibration/ADCToGeV constants (to better match periods with B on and off), updated Ecal gain ratios from recent test pulse data, updated ECAL time calibration, updated IOVs for L1 conditions.
GR09_R_V4 32X>=326, 33X Used for reprocessing of first collision data 14thDec09 As GR09_P_V8 except non inflated tracker APEs, beamspot and SiStrip bad components/modules updated with appropriate IOVs.
GR09_R_V1 32X>=326, 33X Used for reprocessing of first collision data 9thDec09 As GR09_P_V8 except beamspot inserted at run 123741 applied to all runs (IOV 1-inf)

Global tags for CRAFT09 reprocessing with 3XY and Global Tags for previous releases.

The Global Tags for the reprocessing of the cosmics data taken before CRAFT09 and with releases older than 3XY can be found here.

Global Tags for Monte Carlo Production

Available global tags for MC production are listed in the tables below. The list of database tags which are included in a given global tag can be viewed by following the links in the tables.

Mis-calibration and mis-alignment scenarios

Global tags for MC production other than those which use IDEAL conditions apply a smearing of alignment and calibration constants defined through certain mis-calibration and mis-alignment scenarios. Details concerning these scenarios can be found here. Additional information about individual tags within the global tags can be found at the links provided here

Special GTs for Upgrade

Documented at the following Twiki

GTs for special MC productions

TAGNAME Validity Description Comments
START53_V19H >=CMSSW_5_3_8_patch3 For special MinBias ECAL production (B field OFF) As START53_V19 with the following updates:
- Magnetic field OFF ECAL [[https://twiki.cern.ch/twiki/bin/viewauth/CMS/EcalMCConditions][conditions]
START53_V19G >=CMSSW_5_3_8_patch3 For special MinBias ECAL production (B field ON) As START53_V19 with the following updates:
- Magnetic field ON ECAL [[https://twiki.cern.ch/twiki/bin/viewauth/CMS/EcalMCConditions][conditions]
START53_V19F >=CMSSW_5_3_8_patch3 For run dependent MC conditions As START53_V19 with the following updates:
- Run-dependent L1 menu conditions and PU mixing configuration for 2012A,B,C,D eras.
START53_V14B >=CMSSW_5_3_8_patch3 For Egamma systematic studies As START53_V14A with the following change:
- “Flat30” geometry tag
START53_V14A >=CMSSW_5_3_8_patch3 For Hgg systematic studies As START53_V14 with the following updates:
- run dependent ECAL conditions taken from START53_V7N

74Y Releases (MC)

74Y Releases
The following are valid for 74X releases:
TAGNAME Validity Description Comments
MCRUN2_74_V8A CMSSW >= 7_4_1 As 'run2_mcStartup' GT, but with "worst" case scenario SiPixelQualityFromDbRcd As MCRUN2_74_V8 with the following changes:
- Introduced SiPixelQuality_v23: only Layer 3 is working in BmO Sec 3 (i.e. Pixel Barrel, negative z half barrel, outer shell, sector 3), so the whole layers 1 and 2 are out.
MCRUN2_74_V8B CMSSW >= 7_4_1 As 'run2_mcStartup' GT, but with "best" case scenario SiPixelQualityFromDbRcd As MCRUN2_74_V8 with the following changes:
- Introduced SiPixelQuality_v24: 3 modules of Layer 1 and full Layer 3 work in BmO Sec 3 (i.e. Pixel Barrel, negative z half barrel, outer shell, sector 3), so 1 module in Layer 1 and the whole Layer 2 are out.
MCRUN2_74_V9C CMSSW >= 7_4_1 As 'run2_mcAsymptotic' GT, but with "worst" case scenario SiPixelQualityFromDbRcd As MCRUN2_74_V9 with the following changes:
- Introduced SiPixelQuality_v23: only Layer 3 is working in BmO Sec 3 (i.e. Pixel Barrel, negative z half barrel, outer shell, sector 3), so the whole layers 1 and 2 are out.
MCRUN2_74_V9D CMSSW >= 7_4_1 As 'run2_mcAsymptotic' GT, but with "best" case scenario SiPixelQualityFromDbRcd As MCRUN2_74_V9 with the following changes:
- Introduced SiPixelQuality_v24: 3 modules of Layer 1 and full Layer 3 work in BmO Sec 3 (i.e. Pixel Barrel, negative z half barrel, outer shell, sector 3), so 1 module in Layer 1 and the whole Layer 2 are out.
MCRUN2_74_V6A CMSSW >= 7_4_0 As 'run2_mcStartup' GT, but with "worst" case scenario SiPixelQualityFromDbRcd As MCRUN2_74_V6 with the following changes:
- Introduced SiPixelQuality_v23: only Layer 3 is working in BmO Sec 3 (i.e. Pixel Barrel, negative z half barrel, outer shell, sector 3), so the whole layers 1 and 2 are out.
MCRUN2_74_V6B CMSSW >= 7_4_0 As 'run2_mcStartup' GT, but with "best" case scenario SiPixelQualityFromDbRcd As MCRUN2_74_V6 with the following changes:
- Introduced SiPixelQuality_v24: 3 modules of Layer 1 and full Layer 3 work in BmO Sec 3 (i.e. Pixel Barrel, negative z half barrel, outer shell, sector 3), so 1 module in Layer 1 and the whole Layer 2 are out.
MCRUN2_74_V7C CMSSW >= 7_4_0 As 'run2_mcAsymptotic' GT, but with "worst" case scenario SiPixelQualityFromDbRcd As MCRUN2_74_V7 with the following changes:
- Introduced SiPixelQuality_v23: only Layer 3 is working in BmO Sec 3 (i.e. Pixel Barrel, negative z half barrel, outer shell, sector 3), so the whole layers 1 and 2 are out.
MCRUN2_74_V7D CMSSW >= 7_4_0 As 'run2_mcAsymptotic' GT, but with "best" case scenario SiPixelQualityFromDbRcd As MCRUN2_74_V7 with the following changes:
- Introduced SiPixelQuality_v24: 3 modules of Layer 1 and full Layer 3 work in BmO Sec 3 (i.e. Pixel Barrel, negative z half barrel, outer shell, sector 3), so 1 module in Layer 1 and the whole Layer 2 are out.

72Y Releases (MC)

72Y Releases

The following are valid for 72X releases:

TAGNAME Validity Description Comments
START72_V1 CMSSW >= 7_2_0_pre1 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START71_V7 with the following changes:
- new record for SiPixel CPE,
- updated RPC cluster size for new digitiser,
- restoring correct 2D b-tag probabilities (compatible with 2011 Legacy Misalignment).
MC_72_V1 CMSSW >= 7_2_0_pre1 Ideal alignments and calibrations. As MC_71_V8 with the following changes:
- new record for SiPixel CPE,
- updated RPC cluster size for new digitiser.

71Y Releases (MC)

71Y Releases

The following are valid for 71X releases:

TAGNAME Validity Description Comments
START71_V1 CMSSW >= 7_1_0_pre3 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START70_V6 with the following changes:
- Updated SiPixelTemplate
- New ECAL TimeBias corrections
PRE_STA71_V2 CMSSW >= 7_1_0_pre6 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START71_V1 with the following changes:
- adding SiStrip offsets for APV cycle phase producers using a label,
- adding DT Reco uncertainties.
PRE_STA71_V3 CMSSW >= 7_1_0_pre7 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As PRE_STA71_V2 with the following changes:
- updated Tracker misalignment and APE to 7TeV Legacy MC,
- updated Muon misalignment and to 7TeV Legacy MC,
- updated Track probability calibration based on the misalignment scenario.
PRE_STA71_V4 CMSSW >= 7_1_0_pre8 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As PRE_STA71_V3 with the following changes:
- new MVA tracking selectors for 13 TeV (needed for compatibility with tracking configuration),
- updated DT local reconstruction uncertainties.
START71_V5 CMSSW >= 7_1_0_pre9 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As PRE_STA71_V4 with the following changes:
- move tags to production account,
- removed old unused labels for E/gamma regressions.
START71_V7 CMSSW >= 7_1_0 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START71_V5 with the following changes:
- updated b-tagging calibrations (see validation here).
START71_V8 CMSSW >= 7_1_0 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START71_V7 with the following changes:
- added Simulation geometry for material budget studies.
MC_71_V1 CMSSW >= 7_1_0_pre3 Ideal alignments and calibrations. As MC_70_V4 with the following changes:
- Updated SiPixelQuality (bad modules)
- New ECAL TimeBias corrections.
PRE_MC_71_V2 CMSSW >= 7_1_0_pre5 Ideal alignments and calibrations. As MC_71_V1 with the following changes:
- fixing simulated geometry labelled ExtendedZeroMaterial,
- updating SiPixelTemplates to the CSA14 values,
- enabling ECAL full readout with a label,
- adding simulated geometry for material budget studies,
- adding SiPixelLorentzAngles offsets using labels,
- adding SiStrip offsets for APV cycle phase producers using a label,
- adding DT Reco uncertainties.
PRE_MC_71_V3 CMSSW >= 7_1_0_pre6 Ideal alignments and calibrations. As PRE_MC_71_V2 with the following changes:
- updated Simulation geometries for 2015,
- updated Tracker and CSC reconstruction geometries for 2015.
PRE_MC_71_V4 CMSSW >= 7_1_0_pre7 Ideal alignments and calibrations. As PRE_MC_71_V3 with the following changes:
- reverted Simulation geometries for Run1,
- reverted Tracker and CSC reconstruction geometries for Run1,
- reverted Pixel dead channels to the Run1 values
- removed deprecated Simulation geometry.
PRE_MC_71_V5 CMSSW >= 7_1_0_pre8 Ideal alignments and calibrations. As PRE_MC_71_V4 with the following changes:
- new MVA tracking selectors for 13 TeV (needed for compatibility with tracking configuration),
- updated DT local reconstruction uncertainties.
MC_71_V6 CMSSW >= 7_1_0_pre9 Ideal alignments and calibrations. As PRE_MC_71_V5 with the following changes:
- move tags to production account,
- removed old unused labels for E/gamma regressions.
MC_71_V8 CMSSW >= 7_1_0 Ideal alignments and calibrations. As MC_71_V6 with the following changes:
- updated b-tagging calibrations (see validation here).

HI Simulation

TAGNAME Validity Description Comments
STARTHI71_V1 CMSW >= 7_1_0_pre3 (to be used for pp 2.76 TeV simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI70_V7 with the following updates:
- Updated SiPixelTemplate
- New ECAL TimeBias corrections.
STARTHI71_V2 CMSW >= 7_1_0_pre3 (to be used for pA simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI70_V8 with the following updates:
- Updated SiPixelTemplate
- New ECAL TimeBias corrections.
PRE_SHI71_V3 CMSW >= 7_1_0_pre5 (to be used for pp 2.76 TeV simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI71_V1 with the following updates:
- adding SiStrip offsets for APV cycle phase producers using a label,
- adding DT Reco uncertainties.
PRE_SHI71_V4 CMSW >= 7_1_0_pre5 (to be used for pA simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI71_V2 with the following updates:
- adding SiStrip offsets for APV cycle phase producers using a label,
- adding DT Reco uncertainties.
PRE_SHI71_V5 CMSW >= 7_1_0_pre7 (to be used for pp 2.76 TeV simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As PRE_SHI71_V3 with the following updates:
- updated Tracker misalignment and APE to 7TeV Legacy MC,
- updated Muon misalignment and to 7TeV Legacy MC,
- updated Track probability calibration based on the misalignment scenario,
- fixing simulated geometry labelled ExtendedZeroMaterial.
PRE_SHI71_V6 CMSW >= 7_1_0_pre7 (to be used for pA simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As PRE_SHI71_V4 with the following updates:
- updated Tracker misalignment and APE to 7TeV Legacy MC,
- updated Muon misalignment and to 7TeV Legacy MC,
- updated Track probability calibration based on the misalignment scenario,
- fixing simulated geometry labelled ExtendedZeroMaterial.
PRE_SHI71_V7 CMSW >= 7_1_0_pre8 (to be used for pp 2.76 TeV simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As PRE_SHI71_V5 with the following updates:
- new MVA tracking selectors for 13 TeV (needed for compatibility with tracking configuration),
- updated DT local reconstruction uncertainties.
PRE_SHI71_V8 CMSW >= 7_1_0_pre8 (to be used for pA simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As PRE_SHI71_V6 with the following updates:
- new MVA tracking selectors for 13 TeV (needed for compatibility with tracking configuration),
- updated DT local reconstruction uncertainties.

70Y Releases (MC)

70Y Releases

The following are valid for 70X releases:

TAGNAME Validity Description Comments
START70_V7 CMSSW >= 7_0_0 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START70_V6 with the following changes:
- adding SiStrip offsets for APV cycle phase producers using a label.
START70_V6 CMSSW >= 7_0_0 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START70_V4 with the following changes:
- Updated E/gamma regression weights and pre-IDs.
- fixed HCAL conditions
START70_V4 CMSSW >= 7_0_0 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START70_V3 with the following changes:
- Added E/gamma regression weights and pre-IDs.
START70_V3 CMSSW >= 7_0_0 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START70_V2 with the following changes:
- Updated Zero Suppression threshold for the new all-SiPM HO.
START70_V2 CMSSW >= 7_0_0 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START70_V1 with the following changes:
- Reverted ECAL conditions.
START70_V1 CMSSW >= 7_0_0 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START62_V1 with the following changes:
- All tags migrated to production.
- Added ZeroMaterial geometry.
- Upgraded HCAL conditions for SiPM photodetectors.
MC_70_V6 CMSSW >= 7_0_0 Ideal alignments and calibrations. As MC_70_V4 with the following changes:
- technical improvements (a.k.a. migrations to newer accounts).
- fix of the ExtendedZeroMaterial simulated geometry
- enabling Ecal full readout for pre-mixing using a label
- adding SiStrip offsets for APV cycle phase producers using a label.
MC_70_V4 CMSSW >= 7_0_0 Ideal alignments and calibrations. As MC_70_V3 with the following changes:
- Updated E/gamma regression weights and pre-IDs.
- fixed HCAL conditions.
MC_70_V3 CMSSW >= 7_0_0 Ideal alignments and calibrations. As PRE_MC70_V2 with the following changes:
- Added E/gamma regression weights and pre-IDs.
MC_70_V2 CMSSW >= 7_0_0 Ideal alignments and calibrations. As PRE_MC70_V1 with the following changes:
- Updated Zero Suppression threshold for the new all-SiPM HO.
MC_70_V1 CMSSW >= 7_0_0 Ideal alignments and calibrations. As PRE_MC62_V8 with the following changes:
- All tags migrated to production.
- Added geometry scenarios.

HI Simulation

TAGNAME Validity Description Comments
STARTHI70_V1 CMSW >= 7_0_0 (to be used for pp 2.76 TeV simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As PRE_SH62_V15 with the following updates:
- All tags migrated to production.
- Upgraded HCAL conditions for SiPM photodetectors.
STARTHI70_V2 CMSW >= 7_0_0 (to be used for pA simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As PRE_SH62_V16 with the following updates:
- All tags migrated to production.
- Upgraded HCAL conditions for SiPM photodetectors.
STARTHI70_V3 CMSW >= 7_0_0 (to be used for pp 2.76 TeV simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI70_V1 with the following updates:
- Updated Zero Suppression threshold for the new all-SiPM HO.
STARTHI70_V4 CMSW >= 7_0_0 (to be used for pA simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI70_V2 with the following updates:
- Updated Zero Suppression threshold for the new all-SiPM HO.
STARTHI70_V5 CMSW >= 7_0_0 (to be used for pp 2.76 TeV simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI70_V3 with the following updates:
- Added E/gamma regression weights and pre-IDs.
STARTHI70_V6 CMSW >= 7_0_0 (to be used for pA simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI70_V4 with the following updates:
- Added E/gamma regression weights and pre-IDs.
STARTHI70_V7 CMSW >= 7_0_0 (to be used for pp 2.76 TeV simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI70_V5 with the following updates:
- Updated E/gamma regression weights and pre-IDs.
- fixed HCAL conditions.
STARTHI70_V8 CMSW >= 7_0_0 (to be used for pA simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI70_V6 with the following updates:
- Updated E/gamma regression weights and pre-IDs.
- fixed HCAL conditions.
STARTHI70_V9 CMSW >= 7_0_0 (to be used for pp 2.76 TeV simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI70_V7 with the following updates:
- fix of the ExtendedZeroMaterial simulated geometry.
- adding SiStrip offsets for APV cycle phase producers using a label.
STARTHI70_V10 CMSW >= 7_0_0 (to be used for pA simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI70_V8 with the following updates:
- fix of the ExtendedZeroMaterial simulated geometry.
- adding SiStrip offsets for APV cycle phase producers using a label.

62Y Releases (MC)

62Y Releases

The following are valid for 62X releases:

TAGNAME Validity Description Comments
START62_V1 CMSSW >= 6_2_0 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START53_V7N with the following changes:
- Updated geometry.
- Exotica pessimistic misalignment.
- Updated conditions for 62X.
- Contains improved ECAL noise.

61Y Releases (MC)

61Y Releases

The following are valid for 61X releases:

TAGNAME Validity Description Comments
START61_V8A 61X (Not for prod.[1]) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START61_V8 with the following updates:ZeroMaterial scenario for photon gun production
- Zero material Tracker geometry.
MC_61_V11 61X Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. Channels which are known will not be functioning at LHC startup are masked, as described here. As MC_61_V10 with the following updates:
- Updated pixel channel status.
- Updated GCT hardware configuration.
- Updated AlCaReco trigger bits.
- Updated CSC time corrections.
START61_V11 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START61_V10 with the following updates:
- Updated pixel channel status.
- Updated GCT hardware configuration.
- Updated AlCaReco trigger bits.
- Updated CSC time corrections.
DESIGN61_V11 61X Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. No bad channels. MC production using this global tag is not planned. As DESIGN61_V10 with the following updates:
- Updated GCT hardware configuration.
- Updated AlCaReco trigger bits.
- Updated CSC time corrections.
MC_61_V10 61X (Not for prod.[1]) Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. Channels which are known will not be functioning at LHC startup are masked, as described here. As MC_61_V9 with the following updates:
- Extended HF geometry without castor.
START61_V10 61X (Not for prod.[1]) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START61_V9 with the following updates:
- Extended HF geometry without castor.
DESIGN61_V10 61X (Not for prod.[1]) Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. No bad channels. MC production using this global tag is not planned. As DESIGN61_V9 with the following updates:
- Extended HF geometry without castor.
MC_61_V9 61X (Not for prod.[1]) Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. Channels which are known will not be functioning at LHC startup are masked, as described here. As MC_61_V8 with the following updates:
- updated JECs (Fall 2012).
START61_V9 61X (Not for prod.[1]) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START61_V8 with the following updates:
- updated JECs (Fall 2012).
DESIGN61_V9 61X (Not for prod.[1]) Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. No bad channels. MC production using this global tag is not planned. As DESIGN61_V8 with the following updates:
- updated JECs (Fall 2012).
MC_61_V8 61X (Not for prod.[1]) Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. Channels which are known will not be functioning at LHC startup are masked, as described here. As MC_61_V7 with the following updates:
- first implementation of HE alignment
- first implementation of HO alignment
- first implementation of HB alignment
- first implementation of HF alignment
- Updated ECAL cluster corrections.
START61_V8 61X (Not for prod.[1]) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START61_V7 with the following updates:
- first implementation of HE alignment
- first implementation of HO alignment
- first implementation of HB alignment
- first implementation of HF alignment
- Updated ECAL cluster corrections.
DESIGN61_V8 61X (Not for prod.[1]) Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. No bad channels. MC production using this global tag is not planned. As DESIGN61_V7 with the following updates:
- first implementation of HE alignment
- first implementation of HO alignment
- first implementation of HB alignment
- first implementation of HF alignment
- Updated ECAL cluster corrections.
MC_61_V7 61X Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. Channels which are known will not be functioning at LHC startup are masked, as described here. As MC_61_V6 with the following updates:
- Castor saturation added.
START61_V7 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START61_V6 with the following updates:
- Castor saturation added.
DESIGN61_V7 61X Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. No bad channels. MC production using this global tag is not planned. As DESIGN61_V6 with the following updates:
- Castor saturation added.
MC_61_V6 61X Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. Channels which are known will not be functioning at LHC startup are masked, as described here. As MC_61_V5 with the following updates:
- updated preshower clustering.
START61_V6 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START61_V5 with the following updates:
- updated preshower clustering.
DESIGN61_V6 61X Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. No bad channels. MC production using this global tag is not planned. As DESIGN61_V5 with the following updates:
- updated preshower clustering.
MC_61_V5A 61X Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. Channels which are known will not be functioning at LHC startup are masked, as described here. As MC_61_V5 with the following updates:
- Castor saturation added.
START61_V5A 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START61_V5 with the following updates:
- Castor saturation added.
DESIGN61_V5A 61X Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. No bad channels. MC production using this global tag is not planned. As DESIGN61_V5 with the following updates:
- Castor saturation added.
MC_61_V5 61X Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. Channels which are known will not be functioning at LHC startup are masked, as described here. As MC_61_V4 with the following updates:
- Revert back to HcalRecoParams with unfixed QPLL
- updated DTTF hardware configuration, to match the one in data since mid-july 2012.
START61_V5 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START61_V4 with the following updates:
- Revert back to HcalRecoParams with unfixed QPLL
- updated DTTF hardware configuration, to match the one in data since mid-july 2012.
DESIGN61_V5 61X Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. No bad channels. MC production using this global tag is not planned. As DESIGN61_V4 with the following updates:
- updated DTTF hardware configuration, to match the one in data since mid-july 2012.
MC_61_V4 61X Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. Channels which are known will not be functioning at LHC startup are masked, as described here. As MC_61_V3 with the following updates:
- updated calojet JECs used at HLT.
START61_V4 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START61_V3 with the following updates:
- updated calojet JECs used at HLT.
DESIGN61_V4 61X Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. No bad channels. MC production using this global tag is not planned. As DESIGN61_V3 with the following updates:
- updated calojet JECs used at HLT.
MC_61_V3 61X Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. Channels which are known will not be functioning at LHC startup are masked, as described here. As MC_61_V2 with the following updates:
- Updated HCAL reconstruction parameters for QPLL unlocked channels.
- Updated ECAL cluster local containment corrections.
START61_V3 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START61_V3 with the following updates:
- Updated HCAL reconstruction parameters for QPLL unlocked channels.
- Updated ECAL cluster local containment corrections.
DESIGN61_V3 61X Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. No bad channels. MC production using this global tag is not planned. As DESIGN61_V2 with the following updates:
- Reintroduced the missing HcalRecoParamsRcd.
MC_61_V2 61X Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. Channels which are known will not be functioning at LHC startup are masked, as described here. As MC_61_V1 with the following updates:
- updated HCAL channel status.
START61_V2 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START61_V1 with the following updates:
- updated HCAL channel status.
DESIGN61_V2 61X, Broken, do not use. Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. No bad channels. MC production using this global tag is not planned. As DESIGN61_V1 with the following updates:
- Updated ECAL cluster local containment corrections.
MC_61_V1 61X Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. Channels which are known will not be functioning at LHC startup are masked, as described here. As MC_60_V5 with the following updates:
- New L1 pp menu.
- Castor conditions for 2012.
- Updated pixel channel status.
START61_V1 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As START60_V5 with the following updates:
- New L1 pp menu.
- Castor conditions for 2012.
- Updated pixel channel status.
DESIGN61_V1 61X Ideal/trivial conditions - perfectly aligned and calibrated detector. Alignment and calibration constants = 1, with no smearing. No bad channels. MC production using this global tag is not planned. As DESIGN60_V5 with the following updates:
- New L1 pp menu.
- Castor conditions for 2012.

HI Simulation
TAGNAME Validity Description Comments
STARTHI61_V14 61X (to be used for pp 2.76 TeV simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI61_V13 with the following updates:
- Beamspot for pp 2.76 TeV.
STARTHI61_V13 61X (to be used for HI simulation) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI61_V12 with the following updates:
- Updated L1 configuration.
- Updated CSC time corrections and channel status.
- Updated AlCaReco trigger bits.
- Updated beamspot for HI collisions.
- Updated Castor gain.
- Updated pixel channel status.
STARTHI61_V12 61X (Not for prod.[1]) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI61_V11 with the following updates:
- Extended HF geometry without castor.
STARTHI61_V11 61X (Not for prod.[1]) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI61_V10 with the following updates:
- updated JECs (Fall 2012).
STARTHI61_V10 61X (Not for prod.[1]) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI61_V9 with the following updates:
- L1 menu for 2013 pPb collisions: https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/1291.html.
STARTHI61_V9 61X (Not for prod.[1]) As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI61_V8 with the following updates:
- first implementation of HE alignment
- first implementation of HO alignment
- first implementation of HB alignment
- first implementation of HF alignment
- Updated ECAL cluster corrections.
STARTHI61_V8 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI61_V7 with the following updates:
- Castor saturation added.
STARTHI61_V7 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI61_V6 with the following updates:
- updated preshower clustering.
STARTHI61_V6A 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI61_V6 with the following updates:
- Castor saturation added.
STARTHI61_V6 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI61_V5 with the following updates:
- Revert back to HcalRecoParams with unfixed QPLL.
STARTHI61_V5 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI61_V4 with the following updates:
- Updated HCAL reconstruction parameters for QPLL unlocked channels.
- Updated ECAL cluster local containment corrections.
STARTHI61_V4 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI61_V3 with the following updates:
- updated HCAL channel status.
STARTHI61_V3 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI61_V2 with the following updates:
- Added the missing DQMReferenceHistogramRootFileRcd.
STARTHI61_V2 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here (Broken do not use it.) As STARTHI61_V1 with the following updates:
- Reverted to the original HI L1 menu in STARTHI60_V5.
STARTHI61_V1 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As STARTHI60_V5 with the following updates:
- New L1 pp menu.
- Castor conditions for 2012.
- Updated pixel channel status.

72X PostLS1 Studies (MC)

The following are valid for 72X releases:
TAGNAME Validity Description Comments
POSTLS172_V1 72X >= 7.2.0_pre1 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS171_V15 (for 25 ns) with the following changes:
- new record for SiPixel CPE,
- updated RPC cluster size for new digitiser.
POSTLS172_V2 72X >= 7.2.0_pre1 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS171_V12 (for 50 ns) with the following changes:
- new record for SiPixel CPE,
- updated RPC cluster size for new digitiser.
DESIGN72_V1 72X >= 7.2.0_pre1 Ideal GT (not including bad channels), with design alignment and ideal calibration constants. As DESIGN71_V5 with the following changes:
- new record for SiPixel CPE,
- updated RPC cluster size for new digitiser.
POSTLS172_V3 72X >= 7.2.0_pre2 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS172_V1 (for 25 ns) with the following changes:
- new labels for AK4 JEC.
POSTLS172_V4 72X >= 7.2.0_pre2 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS172_V2 (for 50 ns) with the following changes:
- new labels for AK4 JEC.
DESIGN72_V2 72X >= 7.2.0_pre2 Ideal GT (not including bad channels), with design alignment and ideal calibration constants. As DESIGN72_V1 with the following changes:
- new labels for AK4 JEC.

71X PostLS1 Studies (MC)

The following are valid for 71X releases:

TAGNAME Validity Description Comments
POSTLS171_V1 71X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS170_V3 (for 25 ns) with the following updates:
- Updated SiPixelQuality (new list of bad modules)
- Updated SiPixelTemplates
- New ECAL TimeBias corrections
POSTLS171_V1A 71X >= 7.1.0.pre6 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS171_V1 (for 25 ns) with the following changes:
- adding compatibility tags: "fake" DT reconstruction uncertainties, Ecal NZS readout with a label, simulated geometry with tracker material budget improvements, Pixel Lorentz angle offsets with labels, Tracker APV phase offsets with a label.
POSTLS171_V2 71X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS170_V4 (for 50 ns) with the following updates:
- Updated SiPixelQuality (new list of bad modules)
- Updated SiPixelTemplates
- New ECAL TimeBias corrections
PRE_LS171_V3 71X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS171_V1 (for 25 ns) with the following updates:
- fixing simulated geometry labelled ExtendedZeroMaterial,
- enabling ECAL full readout with a label,
- adding simulated geometry for material budget studies,
- adding SiPixelLorentzAngles offsets using labels,
- adding SiStrip offsets for APV cycle phase producers using a label,
- adding DT Reco uncertainties.
PRE_LS171_V4 71X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS171_V2 (for 50 ns) with the following updates:
- fixing simulated geometry labelled ExtendedZeroMaterial,
- enabling ECAL full readout with a label,
- adding simulated geometry for material budget studies,
- adding SiPixelLorentzAngles offsets using labels,
- adding SiStrip offsets for APV cycle phase producers using a label,
- adding DT Reco uncertainties.
PRE_LS171_V5 71X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As PRE_LS171_V3 (for 25 ns) with the following updates:
- updated Simulation geometries (labels Extended and Ideal) for 2015,
- updated Tracker and CSC reconstruction geometries for 2015.
PRE_LS171_V5A 71X >= 7.1.0_pre8 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS162_V2 (for 25 ns) with the following changes:
- adding compatibility records from the release: DT reconstruction uncertainties, ECAL time bias corrections, E/gamma regression trainings (only the latest set, i.e. _v1), tracking MVA selectors for Run2, Pixel Lorentz angle offsets with labels, Tracker APV phase offsets with a label,
- changing CSC reconstruction geometry tags for taxonomy only,
- moving tags to production accounts.
PRE_LS171_V6 71X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As PRE_LS171_V4 (for 50 ns) with the following updates:
- updated Simulation geometries (labels Extended and Ideal) for 2015,
- updated Tracker and CSC reconstruction geometries for 2015.
PRE_LS171_V6A 71X >= 7.1.0_pre8 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS162_V1 (for 50 ns) with the following changes:
- adding compatibility records from the release: DT reconstruction uncertainties, ECAL time bias corrections, E/gamma regression trainings (only the latest set, i.e. _v1), tracking MVA selectors for Run2, Pixel Lorentz angle offsets with labels, Tracker APV phase offsets with a label,
- changing CSC reconstruction geometry tags for taxonomy only,
- moving tags to production accounts.
PRE_LS171_V7 71X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As PRE_LS171_V5 (for 25 ns) with the following updates:
- update to CSA14 conditions,
- Clean up of Run1 XML simulation geometry tags,
- new MVA tracking selectors for 13 TeV.
PRE_LS171_V8 71X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As PRE_LS171_V6 (for 50 ns) with the following updates:
- update to CSA14 conditions,
- Clean up of Run1 XML simulation geometry tags,
- new MVA tracking selectors for 13 TeV.
PRE_LS171_V9 71X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As PRE_LS171_V7 (for 25 ns) with the following updates:
- updated Castor reconstruction geometry for 2015,
- updated DT local reconstruction uncertainties.
PRE_LS171_V9A 71X >= 7.1.0_pre8 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS170_V7 (for 25 ns - CSA14) with the following changes:
- adding compatibility records from the release: DT reconstruction uncertainties, ECAL time bias corrections, tracking MVA selectors for Run2, Pixel Lorentz angle offsets with labels.
PRE_LS171_V10 71X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As PRE_LS171_V8 (for 50 ns) with the following updates:
- updated Castor reconstruction geometry for 2015,
- updated DT local reconstruction uncertainties.
PRE_LS171_V10A 71X >= 7.1.0_pre8 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS170_V6 (for 50 ns - CSA14) with the following changes:
- adding compatibility records from the release: DT reconstruction uncertainties, ECAL time bias corrections, tracking MVA selectors for Run2, Pixel Lorentz angle offsets with labels,
- Muon APE tags were reverted to old names: no issues, APE=0 also there.
POSTLS171_V11 71X >= 7.1.0_pre9 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As PRE_LS171_V9 (for 25 ns) with the following changes:
- moving tags to production accounts,
- removing old E/gamma regressions with labels.
POSTLS171_V12 71X >= 7.1.0_pre9 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As PRE_LS171_V10 (for 50 ns) with the following changes:
- moving tags to production accounts,
- removing old E/gamma regressions with labels.
POSTLS171_V15 71X >= 7.1.0 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS171_V11 (for 25 ns) with the following changes:
- fixed simulation geometry records yielding warnings in Geant4,
- updated record for b-tagging calibrations (see validation here).
POSTLS171_V16 71X >= 7.1.0 As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS171_V12 (for 50 ns) with the following changes:
- fixed simulation geometry records yielding warnings in Geant4,
- updated record for b-tagging calibrations (see validation here).
DESIGN71_V7 CMSSW 7_1_0 Ideal GT (not including bad channels), with design alignment and ideal calibration constants. As DESIGN71_V6 with the following changes:
- CSC conditions for unganged ME1/1A

70X PostLS1 Studies (MC)

The following are valid for 70X releases:

TAGNAME Validity Description Comments
POSTLS170_V3 70X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS162_V4 (for 25 ns) with the following updates:
- Updated e-gamma regression
- Fixed HCAL conditions
POSTLS170_V4 70X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS162_V5 (for 50 ns) with the following updates:
- Updated e-gamma regression
- Fixed HCAL conditions
POSTLS170_V5 70X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS170_V3 (for 25 ns) with the following updates:
- updated AlCa conditions for the 25 ns CSA14 scenario
- technical fixes (a.k.a. migrations of the accounts in prod).
POSTLS170_V6 70X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS170_V4 (for 50 ns) with the following updates:
- updated AlCa conditions for the 50 ns CSA14 scenario
- technical fixes (a.k.a. migrations of the accounts in prod)
- enabling Ecal full readout for pre-mixing
- adding SiStrip offsets for APV cycle phase producers.
POSTLS170_V6A 70X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS170_V7 (optimistic calibrations) with the following updates:
- enabling L1T bits for HSCP triggers (so this GlobalTag is valid for 25 ns simulations).
POSTLS170_V7 70X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS170_V5 (for 25 ns) with the following updates:
- enabling Ecal full readout for pre-mixing
- adding SiStrip offsets for APV cycle phase producers.

62X PostLS1 Studies (MC)

The following are valid for 62X releases:

TAGNAME Validity Description Comments
POSTLS162_V1 62X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS161_V15 with the following updates:
- Different geometries, muon alignment and compatibility tags for 62X.
POSTLS162_V2 62X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS162_V1 with the following updates:
- L1 RPC configuration for 25 ns (switching off HSCP L1 triggers).
POSTLS162_V3 62X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS162_V2 (for 25 ns) with the following updates:
- Updated Zero Suppression threshold for the new all-SiPM HO.
POSTLS162_V4 62X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS162_V3 (for 25 ns) with the following updates:
- Added E/gamma regression weights and pre-IDs.
POSTLS162_V5 62X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS162_V1 (for 50 ns) with the following updates:
- Updated Zero Suppression threshold for the new all-SiPM HO.
- Added E/gamma regression weights and pre-IDs.
POSTLS162_V6 62X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS162_V4 (for 25 ns) with the following updates:
- Updated conditions computed for CSA14.

61X PostLS1 Studies (MC)

The following are valid for 61X releases:

TAGNAME Validity Description Comments
POSTLS161_V15 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS161_V14 with the following updates:
- Updated L1 DTTF hardware configuration.
- Updated L1 GCT hardware configuration.
- Updated AlCaReco trigger bits.
- Updated CSC time corrections.
- Updated ECAL cluster energy corrections and local containment parameters.
- Updated preshower intercalibration.
- Updated pixel channel status.
- Included extra geometry (not replacing the default one). It can be used with --command "--geometry DB:ExtendedHFLibraryNoCastor".
- Included records for HCAL alignment.
POSTLS161_V14 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS161_V12 with the following updates:
- updated JECs (Fall 2012).
POSTLS161_V13 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS161_V12 with the following updates:
- Not the correct payload for RPCEMap. Not to be used..
POSTLS161_V12 61X As the 'MC' GT (including bad channels), but with realistic startup alignment and calibration constants. The mis-alignment and mis-calibration scenarios are described here As POSTLS161_V11 with the following updates:
- Extended RPCEMap to cover ME11A. This GT requires special software tags to be used..