TWiki
>
CMSPublic Web
>
SWGuide
>
SWGuideCalAli
>
SWGuideFrontierConditions
(2021-03-08,
TapioLampen
)
(raw view)
E
dit
A
ttach
P
DF
---+ Global Tags for Conditions Data <br />%TOC{title="Contents:"}% ---++ <nop>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 [[SWGuideFrontierConditions#Analysis_recipes][analysis recipe session]]. Conditions data for consumption in CMSSW are defined in the [[SWGuideCondDB][Offline Conditions Database]], which is read in CMSSW applications via [[CMS.DatabaseAccess][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: * [[https://github.com/cms-sw/cmssw/blob/CMSSW_8_1_X/Configuration/AlCa/python/GlobalTag.py][from Configuration.AlCa.GlobalTag import GlobalTag]] It is then necessary to specify which global tag is to be used, as follows: <verbatim> process.GlobalTag.globaltag = 'GlobalTagName'</verbatim> For example, for a CMSSW job to process simulated dataset produced in the [[SWGuideFrontierConditions#Global_Tags_for_RunIISpring16DR8?redirectedfrom=CMS.SWGuideFrontierConditions][RunIISpring16DR8]] 80X campaign, you need to : <verbatim> from Configuration.AlCa.GlobalTag import GlobalTag process.GlobalTag.globaltag = '80X_mcRun2_asymptotic_2016_miniAODv2_v1'</verbatim> 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: * https://cms-conddb.cern.ch/cmsDbBrowser * *command line tool*: the following script can also be run to examine the contents of a global tag <verbatim> cmsenv conddb list TAGNAME</verbatim> ---+++ 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: [[https://cmsweb.cern.ch/T0Mon/][T0Mon]] clicking on the run # will show you the Global-Tag in use. You can also refer to the table [[CMS.SWGuideFrontierConditions#Global_Tags_for_Data_Taking][Global Tags for Data Taking]] in this page. ---++++ Other datasets You can query DBS with: <verbatim> dbs search --query='find dataset.tag where dataset=/MyFavorite/Dataset/RECO'</verbatim> 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 [[CMS.GlobalTagContents20X#LinkCSA08S156][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.: <verbatim> process.GlobalTag.globaltag = "80X_mcRun2_asymptotic_2016_miniAODv2_v1"</verbatim> ---+++ 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 [[CMS.PdmV#Analysis_Recipe][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 [[#EsPrefer][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: <verbatim> 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") ) )</verbatim> The following example shows a configuration in which the tags for <nop>TrackerAlignmentRcd and <nop>TrackerAlignmentErrorRcd are taken from an sqlite file, in place of whatever tags are specified for those records in the global tag: <verbatim> 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") ) )</verbatim> 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: <verbatim> 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") ) )</verbatim> The set of mis-alignment scenario tags for each release can be found [[CMS.SWGuideAlignmentConstants#Constants_for_Monte_Carlo][here]]. When a global tag requires more than one tag for a given record type, the payloads corresponding to the tag are identified by also specifying a label. The labels can be specified as follows: <verbatim> process.GlobalTag.toGet = cms.VPSet( cms.PSet(record = cms.string("AK4CaloHLT"), tag = cms.string("JetCorrectorParametersCollection_HLT_BX25_83X_MC_v1_AK4CaloHLT"), label = cms.untracked.string('AK4CaloHLT'), connect = cms.string("frontier://FrontierProd/CMS_CONDITIONS) ) )</verbatim> <br />#EsPrefer ---+++ 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: <verbatim> 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")</verbatim> ---++++ Special Instructions for using es_prefer with 2XY Releases <br />%TWISTY{<br />mode="div"<br />showlink="Show..."<br />hidelink="Hide"<br />showimgleft="%ICONURLPATH{toggleopen-small}%"<br />hideimgleft="%ICONURLPATH{toggleclose-small}%"<br />}% For 21X and 22X releases there is an es_prefer on the global tag [[http://cmssw.cvs.cern.ch/cgi-bin/cmssw.cgi/CMSSW/Configuration/StandardSequences/python/FrontierConditions_GlobalTag_cff.py?hideattic=0&revision=1.15&view=markup][FrontierConditions_GlobalTag_cff.py]]. For 22X releases it is necessary to use: <verbatim>process.load("Configuration.StandardSequences.FrontierConditions_CMS.GlobalTag_noesprefer_cff")</verbatim> in your cfg.py in place of: <verbatim>process.load("Configuration.StandardSequences.FrontierConditions_CMS.GlobalTag_cff")</verbatim> For 21X releases, it is necessary to check out Configuration/StandardSequences and edit <nop>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 <nop>FrontierConditions_CMS.GlobalTag_noesprefer_cff.py (22X) or <nop>FrontierConditions_CMS.GlobalTag_cff.py (21X) to avoid <nop>EventSetup conflicts due to a condition being provided by both the global tag and a fake source. e.g. if you see: <verbatim> ---- 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</verbatim> it means <nop>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: <verbatim>from CalibMuon.DTCalibration.DTFakeVDriftESProducer_cfi import *</verbatim> from <nop>FrontierConditions_CMS.GlobalTag_noesprefer_cff.py (22X) or <nop>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: <verbatim>process.prefer("CMS.GlobalTag")</verbatim> <br />%ENDTWISTY% ---++ Global Tags keys for RelVal workflows See [[CMS.RelValGT#GT_keys_in_autoCond_py][GT for release cycle]] pag ---++ Global Tags used in official data reprocessing / MC productions ---+++ Global tag for 2018 MC production. The campaign is [[CMS.PdmVMCcampaignRunIISpring18MiniAOD][RunIISpring18MiniAOD]] | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/100X_upgrade2018_realistic_v10][100X_upgrade2018_realistic_v10]] | GT for 10.1.X (X>=2) | This campaign has been used to submit miniAOD requests for 2018-POG/DPG production in CMSSW_10_0_2 | ---+++ Global tag for early 2018 MC production. The campaign is [[CMS.PdmVMCcampaignRunIISummer18pLHE][RunIISummer18pLHE]] | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/101X_upgrade2018_realistic_v7][101X_upgrade2018_realistic_v7]] | GT for 10.1.X (X>=5) | GT to be used for the MC production. It contain condition from early 2018 realistic scenario | ---+++ Global tag for ppRef 5 TeV MC production. The campaign is RunIIpp5Spring18GS and RunIIpp5Spring18wmLHEGS | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/94X_mc2017_realistic_forppRef5TeV][94X_mc2017_realistic_forppRef5TeV]] | GT for 94X (X>=0) | GT to be used for the ppRef MC production. It contain special BS, ECAL conditions and L1T menu, everything else is same as regular pp | ---+++ Global Tags for 2017 Nov re-reco (17Nov) for [[CMS.PdmVDataReprocessingData2017MiniAODv2][EOY ReReco 2017]] reprocessing of 2017B-F (CMSSW_9_4_5) | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/94X_dataRun2_ReReco_EOY17_v6][94X_dataRun2_ReReco_EOY17_v6]] | CMSSW_9_4_5_cand1 | <p>Production of MiniAODv2 from 94x 2017 data AOD input datasets from EOYReReco2017 (17Nov2017 rereco). The reprocessing for 2017B-F has been injected using the candidate release (under validation) CMSSW_9_4_5_cand1. After validation was succesfull, It was cloned into production release CMSSW_9_4_5.</p> <p> </p> | ---+++ Global Tags for 2017 Nov re-reco (17Nov) for [[CMS.PdmVDataReprocessingEOYReReco2017][EOY ReReco 2017]] reprocessing of 2017B-F (CMSSW_9_4_0) | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/94X_dataRun2_ReReco_EOY17_v2][94X_dataRun2_ReReco_EOY17_v2]] | GT for 94X (X>=0) | [[https://cms-pdmv.cern.ch/valdb/?srch=AlCa-EOY_RR-2017&selected=AlCa-EOY_RR-2017B,AlCa-EOY_RR-2017Cv1,AlCa-EOY_RR-2017Cv2,AlCa-EOY_RR-2017D,AlCa-EOY_RR-2017E&Reconstruction=true&RData=true][Validation Campaigns until 2017E]] This re-reco is meant for the Physics analyses for Winter conferences. | ---+++ Global Tags for [[CMS.PdmVMCcampaignRunIIFall17DRPremix][RunIIFall17DRPremix]] MC production with premixing for Physics Studies with 2017 rereco data ---+++ Global Tags for [[CMS.PdmVMCcampaignRunIIFall17DRStdmix][RunIIFall17DRStdmix]] MC production with standard mixing for Physics Studies with 2017 rereco data | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/94X_mc2017_realistic_v12][94X_mc2017_realistic_v12]] | GT for 9_4_4 or higher | Analysis level GTs with updates of Jet probability calibration and Jet energy corrections on the top of 94X_mc2017_realistic_v10 GT | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/94X_mc2017_realistic_v10][94X_mc2017_realistic_v10]] | GT for 9_4_0 or higher | final GT containing the latest MC conditions for 2017 | ---+++ Global Tags for [[CMS.PdmVMCcampaignPhaseIITDRFall17DR][PhaseIITDRFall17DR]] MC production for HGCal TDR | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/93X_upgrade2023_realistic_v3][93X_upgrade2023_realistic_v3]] | GT for 9_3_2 or higher | As compared to [[https://cms-conddb.cern.ch/cmsDbBrowser/diff/Prod/gts/93X_upgrade2023_realistic_v3/93X_upgrade2023_realistic_v2][93X_upgrade2023_realistic_v2]] , an update of Jet Energy Corrections requested here https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/3422.html | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/93X_upgrade2023_realistic_v2][93X_upgrade2023_realistic_v2]] | GT for 9_3_0 or higher | realistic conditions for Phase-II upgrade for the HGCal TDR. | ---+++ Global Tags for [[CMS.PdmVMCcampaignRunIISummer17DRPremix][PdmVMCcampaignRunIISummer17DRPremix]] MC Production (V1) for 2017 first data-MC studies with Premixing | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_upgrade2017_realistic_v7][92X_upgrade2017_realistic_v7]] | GT for 9_2_7 or higher | realistic conditions for Phase-I Pixel and Plan1 HCAL along with other sub-detectors. | ---+++ Global Tags for [[CMS.PdmVMCcampaignRunIISummer17DRStdmix][PdmVMCcampaignRunIISummer17DRStdmix]] MC Production (V1) for 2017 first data-MC studies with Standard Mixing | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_upgrade2017_realistic_v7][92X_upgrade2017_realistic_v7]] | GT for 9_2_7 or higher | realistic conditions for Phase-I Pixel and Plan1 HCAL along with other sub-detectors. | ---+++ Global tags for [[PdmVMCcampaignRunIISummer17wmLHEGS]] MC Production (V1) for 2017. | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_upgrade2017_realistic_v7][92X_upgrade2017_realistic_v7]] | GT for 9_2_7 or higher | realistic conditions for Phase-I Pixel and Plan1 HCAL along with other sub-detectors. | ---+++ Global Tags for [[CMS.PdmVMCcampaignPhaseISpring17GS][PdmVMCcampaignPhaseISpring17GS]] MC Production for for 2017 DPG/POG studies and PF calibration | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/90X_upgrade2017_realistic_v20][90X_upgrade2017_realistic_v20]] | GT for 9_0_0 | !PhaseI CMS, with plan1 HE and realistic conditions | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/90X_upgrade2017_realistic_ExtendedZeroMaterial_EGM_PFCalib][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 | | | 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 [[CMS.PdmVMCcampaignPhaseIFall16DR][PdmVMCcampaignPhaseIFall16DR]] MC Production for for early 2017 TSG studies with plan0 phaseI detector | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/90X_upgrade2017_realistic_v6_C1][90X_upgrade2017_realistic_v6_C1]] | GT for 8_3_0 | !PhaseI Detector, with plan0 HE | ---+++ Global Tags for [[CMS.PdmVMCcampaignRunIISummer16DR80Premix][PdmVMCcampaignRunIISummer16DR80Premix]] MC Production for Moriond 17 (80X) | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2_asymptotic_2016_TrancheIV_v8][80X_mcRun2_asymptotic_2016_TrancheIV_v8]] | GT for 80X (X>=20) | as [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2_asymptotic_2016_TrancheIV_v6][80X_mcRun2_asymptotic_2016_TrancheIV_v6]] with the following change: <br /> [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/2804.html][new JEC]] for reMiniAod 02Feb2017 campaign (based on Summer16 MC) | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2_asymptotic_2016_TrancheIV_v7][80X_mcRun2_asymptotic_2016_TrancheIV_v7]] | GT for 80X (X>=20) | as [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2_asymptotic_2016_TrancheIV_v6][80X_mcRun2_asymptotic_2016_TrancheIV_v6]] with the following change: <br /> addded e/gamma regressions labels as in [[https://github.com/cms-sw/cmssw/pull/16968][PR #16968]]; egamma regressions not to be used as reported [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/2806/2.html][here]] | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2_asymptotic_2016_TrancheIV_v6][80X_mcRun2_asymptotic_2016_TrancheIV_v6]] | GT for 80X (X>=20) | as [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2_asymptotic_2016_miniAODv2_v1][80X_mcRun2_asymptotic_2016_miniAODv2_v1]] with the following change: <br /> - !L1T menu (as per HLT post MD2) <br /> - Jet Energy Corrections (version Summer16) <br /> - realistic CSC bad chambers <br /> - Fixed ECAL TPG conditions for 2016 run simulation <br /> - version of MC JEC to version Summer16_25nsV5 <br /> - update b-tagging HIP mitigation in jet probability calibration <br /> - reverted RPC noise tag to 2012 values fixed centering in Pixel Barrel of Tracker misaligned scenario <br /> - Beamspot according to new misalignment scenario <br /> - Strip DQM !AlCaRecoTriggerBit <br /> - !AlCaRecoTriggerBit for !EcalTrg !AlCaReco <br /> - Tracker Alignment asymptotic sceanrio removing z-shrinkage effect <br /> - !EcalChannelStatus (as in Aug 2016) <br /> - RPC noise and efficiency <br /> - !SiPixel dynamic inefficiency for 2016 data (high PU) <br /> - Pixel channel status (as in Aug 2016) <br /> - Strip channel status (as in Aug 2016) | ---+++ Global Tags for 2017 Early re-reco (12Sep) for [[CMS.PdmVDataReprocessingEarlyReReco2017][12Sep2017]] reprocessing of 2017B-C upto Run 300676 (CMSSW_9_2_11) | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_dataRun2_2017Repro_v4][92X_dataRun2_2017Repro_v4]] | GT for 92X (X>=11) | [[https://cms-pdmv.cern.ch/valdb/?srch=Alca&selected=AlCa-ReReco17-297656,AlCa-ReReco17-297227,AlCa-ReReco17-300401&RData=true&RFull=true&RFast=true&PAGs=true&PData=true&PFull=true&PFast=true&Reconstruction=true][Validation Campaigns]] This re-reco is meant for the data-MC studies with V1 MC. This does not aim for the best conditions but for consistent set of conditions as we had quite inhomogeneous updates in Pixel commissioning period. | ---+++ Global Tags for 2016 legacy data re-reco for [[CMS.PdmVDataReprocessingXXXTBD][YYApr2017]] reprocessing of 2016A-H (CMSSW_8_0_29) | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_2016LegacyRepro_v4][80X_dataRun2_2016LegacyRepro_v4]] | GT for 80X (X>=29) | as [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/80X_dataRun2_2016LegacyRepro_v3][80X_dataRun2_2016LegacyRepro_v3]] with: fix of ECAL ICs to fix the high-eta EM deposits [[https://indico.cern.ch/event/655112/contributions/2670133/attachments/1497568/2330958/20170724_ECAL_ALCA.pdf][Sign-off talk]] | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_2016LegacyRepro_v3][80X_dataRun2_2016LegacyRepro_v3]] | GT for 80X (X>=27) | as [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/80X_dataRun2_2016SeptRepro_v4][80X_dataRun2_2016SeptRepro_v4]] with: <br /> - Change in !SiPixel Templates, !GenError and Lorentz Angle. [[https://indico.cern.ch/event/586735/contributions/2364051/attachments/1374680/2087542/20161121_AlCaDB_EOYRECO.pdf][Sign-off talk]] <br /> - Change in !SiStrip Gain2 calibration, mostly adjustment of IOVs and a new IOV added. [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/2825.html][Announced here]] and [[https://indico.cern.ch/event/586738/contributions/2397203/][signed-off talk]] <br /> - Tracker alignment, APEs and surface deformations updated. signed-off talk <br /> - Update of !BeamSpot corresponding to the changes in tracker alignment package. [[https://indico.cern.ch/event/592611/contributions/2435744/][signed-off talk]] <br /> - Update of muon alignment and APEs. [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/2884/1/1/1.html][announcement]] <br /> - Update of !DtTrig. [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/2731/1.html][Announced here]] <br /> - Update of whole ECAL package. [[https://indico.cern.ch/event/626460/contributions/2529699/][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. <br /> - Update of HCAL gains and response corrections. [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/2836.html][announced here]] <br /> - Update of global alignment (GPR) <br /> - Update of L1 caloParam tag and addition of L1 muon param tags. [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/2878/1/1/3/1/1/1/1/1/1.html][announced here]] | ---+++ Global Tags for 2016 data re-reco for [[CMS.PdmVDataReprocessing#Sep_23_2016_8_0_20_reprocessing][23Sept16]] reprocessing of 2016A-G (80X) | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/80X_dataRun2_2016SeptRepro_v7][ 80X_dataRun2_2016SeptRepro_v7]] | GT for 80X (X>24) | as [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/80X_dataRun2_2016SeptRepro_v5][80X_dataRun2_2016SeptRepro_v5]] with: <br /> - new jet energy corrections as announced [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/2804.html][here]] for 02Feb2017 reminiAOD (based on Summer16 MC) | | [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/80X_dataRun2_2016SeptRepro_v6][ 80X_dataRun2_2016SeptRepro_v6]] | GT for 80X (X>20) | as [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/80X_dataRun2_2016SeptRepro_v5][80X_dataRun2_2016SeptRepro_v5]] with: <br /> - new labels for e/gamma regressions as in [[https://github.com/cms-sw/cmssw/pull/16968][PR #16968]] the PR was closed, waiting for update | | [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/80X_dataRun2_2016SeptRepro_v5][ 80X_dataRun2_2016SeptRepro_v5]] | GT for 80X (X>20) | as [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/80X_dataRun2_2016SeptRepro_v4][80X_dataRun2_2016SeptRepro_v4]] with: <br /> - added record for !L1TGlobalPrescalesVetoesRcd (L1T global prescales) | | [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/80X_dataRun2_2016SeptRepro_v4][ 80X_dataRun2_2016SeptRepro_v4]] | GT for 80X (X>20) | as [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/80X_dataRun2_Prompt_v11][80X_dataRun2_Prompt_v11]] with: <br /> - updated beamspot to fix IOV assignment of 2016B-v2 <br /> - !TrackerSurfaceDeformationRcd fixed to be consistent with TK alignment <br /> - tag for Hcal Response corrections containing the history previous to 2016 <br />- updated !AlCaRecoTriggerBits to allow usage of !EcalAlCaTrg in all 2016 <br /> - ECAL transparency and !ADC2GEV <br /> - !CSCAlignmentErrorExtended_6x6_offline <br /> - !DTAlignmentErrorExtended_6x6_offline <br /> - Pixel templates, Generic errors, LA <br /> - Tracker Alignment, Surface Deformations, APE <br /> - LS-based !BeamSpot <br /> - HCAL Response corrections <br /> - ES channel status <br /> - DT TTrig <br /> - IOVs of the !SiStrip particle gains <br /> - ECAL channel status <br /> - HCAL channel status <br /> - !SiStrip bad channel map <br /> - !TrackProbabilityCalibration <br /> - !JetEnergy corrections and resolutions | ---+++ Global Tags for 2016 data re-reco for ICHEP 2016 (80X) | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/80X_dataRun2_ICHEP16_repro_v0][ 80X_dataRun2_ICHEP16_repro_v0]] | GT for 80X (X>10) | as [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/80X_dataRun2_Prompt_v9][80X_dataRun2_Prompt_v9]] with: <br /> - updated pixel templates and generic errors from 2016B <br />- updated module level tracker alignment and APE from 2016B <br /> - updated EB ES and EE alignment from 2016B <br /> - updated DT CSS and global position record alignments from 2016B <br /> - amended HCAL quality from 2016B <br /> - amended HCAL gains from 2016B <br /> - updated ECAL time calibration and pulse shape from 2016B <br /> - updated ECAL ADC2GeV from 2016B <br /> - refit lumi-based beamspot | ---++++ Special Global Tags for Run2 MC production with realistic beamspot (80X) ---+++++ 3.8T beamspot | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/80X_mcRun2_asymptotic_RealisticBS_25ns_13TeV2016_v1_mc][80X_mcRun2_asymptotic_RealisticBS_25ns_13TeV2016_v1_mc]] | GT for 80X (X>10) Digi-Reco to be run on 71X GEN-SIM-RAW | as [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/80X_mcRun2_asymptotic_v14][80X_mcRun2_asymptotic_v14]] with: <br /> - 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* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2_asymptotic_2016_v3][80X_mcRun2_asymptotic_2016_v3]] | GT for 80X (X>=3) | as [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2_asymptotic_v6][80X_mcRun2_asymptotic_v6]] with the following change: <br /> - SiStrip updated channel map (all FEDs are unpacked) <br /> - Pixel dynamic inefficiency, updated including measurement with 2015 data <br />- ECAL selective readout update as in 2016 DAQ <br /> - ECAL noise and transparency loss (extrapolated from measurements in 2015) for 15/fb <br /> - ES updated noise and pedestals (rom measurements in 2015) <br />- ES channel map, updated to start of 2016 <br />- muon APE > 0 (derived comparing Ideal with Asymptotic alignment scenarios) <br />- HCAL updated channel map (removed 2 channels from re-worked HF PMT box) | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2_asymptotic_2016_miniAODv2][80X_mcRun2_asymptotic_2016_miniAODv2]] | GT for 80X (X>=4) | as [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2_asymptotic_2016_v3][80X_mcRun2_asymptotic_2016_v3]] with the following change: <br /> - JECs for Spring15 MC miniAODv2 production | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2_asymptotic_2016_miniAODv2_v0][80X_mcRun2_asymptotic_2016_miniAODv2_v0]] | GT for 80X (X>=11) | as [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2_asymptotic_2016_miniAODv2][80X_mcRun2_asymptotic_2016_miniAODv2]] with the following change: <br /> updated Jet Energy corrections for HLT <br /> - introducing uGT menu for Stage-II L1T | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2_asymptotic_2016_miniAODv2_v1][80X_mcRun2_asymptotic_2016_miniAODv2_v1]] | GT for 80X (X>=11) | as [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2_asymptotic_2016_miniAODv2_v0][80X_mcRun2_asymptotic_2016_miniAODv2_v0]] with the following change: <br /> - updated offline JEC and JER <br /> - updated uGT menu for Stage-II L1T | ---++++ Special Global Tags for preparation of CosmicSpring16DR80 Cosmics Run2 MC production in 80X | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2cosmics_asymptotic_deco_v0][80X_mcRun2cosmics_asymptotic_deco_v0]] | GT for 80X (X>=3) | as [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2_asymptotic_2016_v3][80X_mcRun2_asymptotic_2016_v3]] with the following changes: <br /> - top-bottom !L1T trigger configuration for DT,RCP and CSC. | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2cosmics_asymptotic_peak_v0][80X_mcRun2cosmics_asymptotic_peak_v0]] | GT for 80X (X>=3) | as [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2_asymptotic_2016_v3][80X_mcRun2_asymptotic_2016_v3]] with the following changes: <br /> - top-bottom !L1T trigger configuration for DT,RCP and CSC. <br /> - !SiStrip noise for peak mode. | ---++++ Special Global Tags for preparation of Run2 MC production in 80X | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2_asymptotic_v5_2016PixDynIneff][80X_mcRun2_asymptotic_v5_2016PixDynIneff]] | GT for 80X (X>=0) | as [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/80X_mcRun2_asymptotic_v5][80X_mcRun2_asymptotic_v5]] with the following change: <br /> - updated pixel dynamic inefficiency for 2016 digi-reco, based on 2015 data. | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/][80X_mcRun2_asymptotic_2016EcalTune_15fb_v0]] | GT for 80X (X<=0) | as [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/][80X_mcRun2_asymptotic_v1]] with the following changes: <br /> - 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 <br /> - 15/fb integrated dose equivalent Ecal noise | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/][80X_mcRun2_asymptotic_2016EcalTune_30fb_v0]] | GT for 80X (X<=0) | as [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/][80X_mcRun2_asymptotic_v1]] with the following changes: <br /> - 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 <br /> - 30/fb integrated dose equivalent Ecal noise | ---++++ Special Global Tags for Run2 MC production with all channels working (80X) | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/80X_mcRun2_asymptotic_2016_AllChannelsGood_v0][80X_mcRun2_asymptotic_2016_AllChannelsGood_v0]] | GT for 80X (X>4) Digi-Reco to be run on 71X GEN-SIM-RAW | as [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/80X_mcRun2_asymptotic_2016_v3][80X_mcRun2_asymptotic_2016_v3]] with: <br /> - all channels working | ---++++ Global Tags for RunIIFall15DR76 MC campaign (76X) | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/76X_mcRun2_asymptotic_v12][76X_mcRun2_asymptotic_v12]] | GT for 76X (X>=3) RunIIFall15DR76 campaign | as [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/76X_mcRun2_asymptotic_v11][76X_dataRun2_v11]] with the following change: <br /> - latest version of JEC for offline (Summer15_25nsV6). | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/76X_mcRun2_asymptotic_RunIIFall15DR76_v1][76X_mcRun2_asymptotic_RunIIFall15DR76_v1]] | GT for 76X (X>=3) RunIIFall15DR76 campaign | as [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/76X_mcRun2_asymptotic_RunIIFall15DR76_v0][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* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/76X_dataRun2_v15][76X_dataRun2_v15]] | GT for 76X (X>=3) 2015 End of the Yerar data-reprocessing | as [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/76X_dataRun2_v14][76X_dataRun2_v14]] with the following change: <br /> - updated Ecal ADC to GeV calibration with the correct value for B on. | | [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/76X_dataRun2_16Dec2015_v0][76X_dataRun2_16Dec2015_v0]] | GT for 76X (X>=3) 2015 End of the Yerar data-reprocessing | as [[https://cms-conddb.cern.ch/cmsDbBrowser/search/Prod/76X_dataRun2_v15][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* | | [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/74X_mcRun2_asymptotic_AllChannelsGood_v0][74X_mcRun2_asymptotic_AllChannelsGood_v0]] | GT for 74X (X>1) Digi-Reco to be run on 71X GEN-SIM-RAW | as [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/MCRUN2_74_V9][MCRUN2_74_V9]] with: <br /> - all channels working | ---++++ Special Global Tags for Run2 MC production with realistic beamspot (74X) ---+++++ 3.8T beamspot | *GT name* | *Validity* | *Comments* | | [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/74X_mcRun2_asymptotic_realisticBS_v1][74X_mcRun2_asymptotic_realisticBS_v1]] | GT for 74X (X>6) Digi-Reco to be run on 71X GEN-SIM-RAW | as [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/MCRUN2_74_V9][MCRUN2_74_V9]] with: <br /> - updated luminous region parameters as measured in data after pixel barycenter translation to simulate illumination in 3.8T data with asymptotic alignment: <br /> (i.e BeamSpotObjects _Realistic50ns_13TeVCollisions_Asymptotic_v0_mc) <br /> - added Negative energy filter <br /> - adding 74X DR L1 menu for 25ns <br /> - changed the pixel dead channels map to v27 | | [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/741_p1_mcRun2_Realistic_50ns_v0][741_p1_mcRun2_Realistic_50ns_v0]] | GT for 741_patch1 Digi-Reco to be run on 71X GEN-SIM-RAW | as [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/MCRUN2_74_V8][MCRUN2_74_V8]] with: <br /> - 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 )<br />- changed the pixel dead channels map to v27 | ---+++++ 0T beamspot | [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/74X_mcRun2_asymptotic_realisticBS_v0][74X_mcRun2_asymptotic_realisticBS_v0]] | GT for 74X Digi-Reco to be run on 71X GEN-SIM-RAW | as [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/MCRUN2_74_V9][MCRUN2_74_V9]] with: <br /> - updated luminous region parameters as measured in data after pixel barycenter translation to simulate illumination in 0T data <br /> (i.e. BeamSpotObjects _Realistic50ns_13TeVCollisions_v5_mc) <br /> - added Negative energy filter <br /> - adding 74X DR L1 menu for 25ns | | [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/74X_mcRun2_startup_realisticBS_v0][74X_mcRun2_startup_realisticBS_v0]] | GT for 74X Digi-Reco to be run on 71X GEN-SIM-RAW | as [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/MCRUN2_74_V8][MCRUN2_74_V8]] with: : <br /> - updated luminous region parameters as measured in data after pixel barycenter translation simulate illumination in 0T data <br /> (i.e. BeamSpotObjects _Realistic50ns_13TeVCollisions_v5_mc) <br /> - added Negative energy filter <br /> - adding 74X DR L1 menu for 50ns | | [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/74X_mcRun2_startup_realistic50ns_v0][74X_mcRun2_startup_realistic50ns_v0]] | GT for 74X Digi-Reco to be run on 71X GEN-SIM-RAW | as [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/MCRUN2_74_V8][MCRUN2_74_V8]] with: <br /> - updated Tracker Alignment Startup scenario <br /> - updated SiPixel Quality map (v27) <br /> - updated beamspot to simulate pixel barrel illumination in run2015B B=0T data <br /> (i.e. BeamSpotObjects _Realistic50ns_13TeVCollisions_v4_mc), re-fitting with realistic tracker conditions <br /> - added negative energy filter <br /> - adding 74X DR L1 menu for 50ns | ---++++ Global Tags for Run2 MC Production(74X) | *GT name* | *Validity* | *Comments* | | [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V9][MCRUN2_74_V9]] | GT for 74X Digi-Reco to be run on 71X GEN-SIM-RAW | 25ns, asymptotic scenario as in [[%SCRIPTURL{"view"}%auth/CMS/RelValGT#CMSSW_7_4_1][RelValGT]] | | [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V9A][MCRUN2_74_V9A]] | GT for 74X Digi-Reco to be run on 71X GEN-SIM-RAW | 50ns, asymptotic scenario as in [[%SCRIPTURL{"view"}%auth/CMS/RelValGT#CMSSW_7_4_1][RelValGT]] | | [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V8][MCRUN2_74_V8]] | GT for 74X Digi-Reco to be run on 71X GEN-SIM-RAW | 50ns, startup scenario as in [[%SCRIPTURL{"view"}%auth/CMS/RelValGT#CMSSW_7_4_1][RelValGT]] | ---++ Global Tags for Data Taking ---+++ Global Tags for MWGR2 Mar 3-5, 2021 Same GTs as in MWGR1 (Feb 10-12, 2021) were used. See [[https://hypernews.cern.ch/HyperNews/CMS/get/tier0-Ops/2196.html][HN announcement]] and [[https://indico.cern.ch/event/1010099/#1-news][AlCaDB meeting of Feb 22]]. ---+++ Global Tags for MWGR1 Feb. 10-12, 2021 ---++++ HLT reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/112X_dataRun3_HLT_v1][112X_dataRun3_HLT_v1]] | for CMSSW_11_2_0 onwards | MWGR | [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4373.html][Updated e-map for HCAL, new tag for L1T fractional prescales]] | ---++++ Express reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/112X_dataRun3_Express_v2][112X_dataRun3_Express_v2]] | for CMSSW_11_2_0 onwards | MWGR | [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4373.html][Updated e-map for HCAL, new tag for L1T fractional prescales]] | ---++++ Prompt reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/112X_dataRun3_Prompt_v2][112X_dataRun3_Prompt_v2]] | for CMSSW_11_2_0 onwards | MWGR | [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4373.html][Updated e-map for HCAL, new tag for L1T fractional prescales]] | ---+++ Global Tags for MWGR5 Nov. 18-20, 2020 ---++++ HLT reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/111X_dataRun3_HLT_v3][111X_dataRun3_HLT_v3]] | for CMSSW_11_1_0 onwards | MWGR | [[https://github.com/cms-sw/cmssw/pull/31780][Remove obsolete records]]| ---++++ Express reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/111X_dataRun3_Express_v4][111X_dataRun3_Express_v4]] | for CMSSW_11_1_0 onwards | MWGR | [[https://github.com/cms-sw/cmssw/pull/31780][Remove obsolete records]]| ---++++ Prompt reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/111X_dataRun3_Prompt_v4][111X_dataRun3_Prompt_v4]] | for CMSSW_11_1_0 onwards | MWGR | [[https://github.com/cms-sw/cmssw/pull/31780][Remove obsolete records]]| ---+++ Global Tags for MWGR3 Sep 2-4, 2020 and MWGR4 Oct 7-9, 2020 ---++++ HLT reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/111X_dataRun3_HLT_v2][111X_dataRun3_HLT_v2]] | for CMSSW_11_1_0 onwards | MWGR | [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4332.html][Updated GEM RECO geometry for past run range 334298-336067]]| ---++++ Express reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/111X_dataRun3_Express_v2][111X_dataRun3_Express_v2]] | for CMSSW_11_1_0 onwards | MWGR | [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4332.html][Updated GEM RECO geometry for past run range 334298-336067]]| ---++++ Prompt reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/111X_dataRun3_Prompt_v2][111X_dataRun3_Prompt_v2]] | for CMSSW_11_1_0 onwards | MWGR | [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4332.html][Updated GEM RECO geometry for past run range 334298-336067]]| ---+++ Global Tags for MWGR2 July 15-17, 2020 ---++++ HLT reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/111X_dataRun3_HLT_v1][111X_dataRun3_HLT_v1]] | for CMSSW_11_1_0 onwards | MWGR | [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4314.html][Updated GEM RECO geometry and strip G2 calibration]]| ---++++ Express reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/111X_dataRun3_Express_v1][111X_dataRun3_Express_v1]] | for CMSSW_11_1_0 onwards | MWGR | [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4314.html][Updated GEM RECO geometry and strip G2 calibration]]| ---++++ Prompt reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/111X_dataRun3_Prompt_v1][111X_dataRun3_Prompt_v1]] | for CMSSW_11_1_0 onwards | MWGR | [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4314.html][Updated GEM RECO geometry and strip G2 calibration]]; [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4257/1.html][Updated PPS conditions]]| ---+++ Global Tags for MWGR1 February 19-21, 2020 ---++++ HLT reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/110X_dataRun3_HLT_v1][110X_dataRun3_HLT_v1]] | for CMSSW_11_0_0 onwards | MWGR | [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4270/2/1/1/2/1/1.html][Append new HCAL conditions]]| ---++++ Express reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/110X_dataRun3_Express_v2][110X_dataRun3_Express_v2]] | for CMSSW_11_0_0 onwards | MWGR | [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4270/2/1/1/2/1/1.html][Append new HCAL conditions]]| ---++++ Prompt reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/110X_dataRun3_Prompt_v3][110X_dataRun3_Prompt_v3]] | for CMSSW_11_0_0 onwards | MWGR | [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4270/2/1/1/2/1/1.html][Append new HCAL conditions]]; [[https://github.com/cms-sw/cmssw/pull/29050][Add new conditions for pp collisions introduced during UL]]| ---+++ Global Tags for MWGR4 September 18-20, 2019 ---++++ HLT reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/106X_dataRun3_HLT_v3][106X_dataRun3_HLT_v3]] | for CMSSW_10_6_0 onwards | MWGR | [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4211/2/1/1/1/1/1/1/1/1/1.html][Append new HCAL conditions]]; [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4221.html][technical update of pixel LA labeled "forWidth"]]| ---++++ Express reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/106X_dataRun3_Express_v2][106X_dataRun3_Express_v2]] | for CMSSW_10_6_0 onwards | MWGR | [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4211/2/1/1/1/1/1/1/1/1/1.html][Append new HCAL conditions]]; [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4221.html][technical update of pixel LA labeled "forWidth"]] | ---++++ Prompt reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/106X_dataRun3_Prompt_v3][106X_dataRun3_Prompt_v3]] | for CMSSW_10_6_0 onwards | MWGR | [[https://cms-conddb.cern.ch/cmsDbBrowser/diff/Prod/gts/106X_dataRun3_Prompt_v2/106X_dataRun3_Prompt_v3][Go back to O2O populated ECAL ADC2GeV tag]] ([[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4191.html][HN message]]); [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4211/2/1/1/1/1/1/1/1/1/1.html][Append new HCAL conditions]]; [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/4221.html][technical update of pixel LA labeled "forWidth"]]| ---+++ Global Tags for MWGR3 July 17-19, 2019 ---++++ HLT reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/106X_dataRun3_HLT_v3][106X_dataRun3_HLT_v3]] | for CMSSW_10_6_0 onwards | MWGR | CMSSW_10_6_X GT for Run3 data taking | ---++++ Express reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/106X_dataRun3_Express_v2][106X_dataRun3_Express_v2]] | for CMSSW_10_6_0 onwards | MWGR | CMSSW_10_6_X GT for Run3 data taking | ---++++ Prompt reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/106X_dataRun3_Prompt_v2][106X_dataRun3_Prompt_v2]] | for CMSSW_10_6_0 onwards | MWGR | CMSSW_10_6_X GT for Run3 data taking | ---+++ Global Tags for MWGR1 2019 Mar. 22nd - 24th ---++++ HLT reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/103X_dataRun2_HLT_v1][103X_dataRun2_HLT_v1]] | for CMSSW_10_6_0 onwards | MWGR | CMSSW_10_6_X GT for Run3 data taking | ---+++ Global Tags for 2018 data taking ---++++ HLT reconstruction Global tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/103X_dataRun2_HLT_v1][103X_dataRun2_HLT_v1]] | for CMSSW_10_3_0 onwards | Heavy Ion 2018 | first HLT GT for Heavy Ion collision in 2018 | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/101X_dataRun2_HLT_v7][101X_dataRun2_HLT_v7]] | for CMSSW_10_1_1 onwards | Collisions 2018 | first HLT GT for collisions | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/100X_dataRun2_HLT_v2][100X_dataRun2_HLT_v2]] | for CMSSW_10_0_3 onwards | CRUZET 2018 | update of 0T templates for SiPixels. [[https://cms-conddb.cern.ch/cmsDbBrowser/diff/Prod/gts/100X_dataRun2_HLT_v2/100X_dataRun2_HLT_v1][Diff]] | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/100X_dataRun2_HLT_v1][100X_dataRun2_HLT_v1]] | for CMSSW_10_0_0 onwards | MWGRs 2018 | first HLT GT for 2018 | ---++++ Express reconstruction Global tags | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/103X_dataRun2_Express_v2][103X_dataRun2_Express_v2]] | for CMSSW_10_3_0 onwards | Heavy Ion 2018 | first Express GT for Heavy Ion collision in 2018 | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/101X_dataRun2_Express_v8][101X_dataRun2_Express_v8]] | for CMSSW_10_1_7 onwards | Collisions 2018 | having a technical update of ECAL timing calibration tag | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/101X_dataRun2_Express_v7][101X_dataRun2_Express_v7]] | for CMSSW_10_1_1 onwards | Collisions 2018 | First Express GT for collisions | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/100X_dataRun2_Express_v2][100X_dataRun2_Express_v2]] | for CMSSW_10_0_3 onwards | CRUZET 2018 | update of 0T templates for SiPixels. [[https://cms-conddb.cern.ch/cmsDbBrowser/diff/Prod/gts/100X_dataRun2_Express_v2/100X_dataRun2_Express_v1][Diff]] | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/100X_dataRun2_Express_v1][100X_dataRun2_Express_v1]] | for CMSSW_10_0_0 onwards | MWGRs 2018 | first Express GT for 2018 | ---++++ Prompt Reconstruction Global Tags | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/103X_dataRun2_Prompt_v3][103X_dataRun2_Prompt_v3]] | for CMSSW_10_3_0 onwards | Heavy Ion 2018 | first Prompt GT for Heavy Ion collision in 2018 | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/101X_dataRun2_Prompt_v11][101X_dataRun2_Prompt_v11]] | for CMSSW_10_1_7 onwards | Collisions 2018 | Splitting of ECAL timing calibration tag between HLT/Express and Prompt | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/101X_dataRun2_Prompt_v10][101X_dataRun2_Prompt_v10]] | for CMSSW_10_1_6 onwards | Collisions 2018 | Splitting of ECAL pulse shape tag between HLT/Express and Prompt | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/101X_dataRun2_Prompt_v9][101X_dataRun2_Prompt_v9]] | for CMSSW_10_1_1 onwards | Collisions 2018 | Stable Prompt GT for collisions 2018 | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/100X_dataRun2_Prompt_v2][100X_dataRun2_Prompt_v2]] | for CMSSW_10_0_3 onwards | CRUZET 2018 | update of 0T templates for SiPixels. [[https://cms-conddb.cern.ch/cmsDbBrowser/diff/Prod/gts/100X_dataRun2_Prompt_v2/100X_dataRun2_Prompt_v1][Diff]] | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/100X_dataRun2_Prompt_v1][100X_dataRun2_Prompt_v1]] | for CMSSW_10_0_0 onwards | MWGRs 2018 | first Prompt GT for 2018 | ---+++ Global Tags for 2017 data taking ---++++ HLT reconstruction Global Tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_dataRun2_HLT_v7][92X_dataRun2_HLT_v7]] | for CMSSW_9_2_8 onwards | collisions with v2.2 menu | [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/92X_dataRun2_HLT_v5][92X_dataRun2_HLT_v5]] with <br /> - change the tag for PF calibrations for HLT <br /> - change the tag for PF calibrations at HLT | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_dataRun2_HLT_v5][92X_dataRun2_HLT_v5]] | for CMSSW_9_2_6 onwards | first collisions | [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/92X_dataRun2_HLT_v4][92X_dataRun2_HLT_v4]] with <br /> - includes CTPPS tags and remove offline PF corrections tags <br /> - includes CTPPS tags and remove offline PF corrections tags which are not used in HLT and DQM | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_dataRun2_HLT_v4][92X_dataRun2_HLT_v4]] | for CMSSW_9_2_0 onwards | first collisions | [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/92X_dataRun2_HLT_v2][92X_dataRun2_HLT_v2]] with <br /> - updated JEC tags to fix synchronisation and allow to append IOVs <br /> - updated PFCalibration tag to fix synchronisation and allow to append IOVs | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/90X_dataRun2_HLT_v2][90X_dataRun2_HLT_v2]] | for CMSSW_9_0_2 onwards | CRUZET/CRAFT | [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/90X_dataRun2_HLT_v1][90X_dataRun2_HLT_v1]] with <br /> - in GEM reco geometry tag the IOV has been moved to first run of 2017 <br /> - update of !L1T !CaloParam and addition of !L1T MuonParam tags <br /> - technical update of HCAL reco param tag | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/90X_dataRun2_HLT_v1][90X_dataRun2_HLT_v1]] | for CMSSW_9_0_0_pre5 onwards | first test of HLT MWGR1 with phaseI plan1 HCAL detector in raw | as [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/90X_dataRun2_HLT_v1][90X_dataRun2_HLT_v1]] with <br /> - a run-dependent HCAL reco geometry to serve the phaseI-plan1 for runs >=287446 <br /> - the full set of HCAL calibrations which include the upgraded HF and plan1 HE | ---++++ Express reconstruction Global Tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_dataRun2_Express_v8][92X_dataRun2_Express_v8]] | for CMSSW_9_2_13 onwards | collisions | [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/92X_dataRun2_Express_v7][92X_dataRun2_Express_v7]] with <br /> - merge the express and hlt tags for ECAL preshower | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_dataRun2_Express_v7][92X_dataRun2_Express_v7]] | for CMSSW_9_2_7 onwards | collisions | [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/92X_dataRun2_Express_v6][92X_dataRun2_Express_v6]] with <br /> - include CTPPS tags | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_dataRun2_Express_v6][92X_dataRun2_Express_v6]] | for CMSSW_9_2_7 onwards | collisions | [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/92X_dataRun2_Express_v4][92X_dataRun2_Express_v4]] with <br /> - update HAD and EM PF cluster calibration | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_dataRun2_Express_v4][92X_dataRun2_Express_v4]] | for CMSSW_9_2_6 onwards | collisions | [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/92X_dataRun2_Express_v2][92X_dataRun2_Express_v2]] with <br /> - change of pixel local calibration and derived alignment to account for the recalibrarted pixel VCAL | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_dataRun2_Express_v2][92X_dataRun2_Express_v2]] | for CMSSW_9_2_0 onwards | first collisions | [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/90X_dataRun2_Express_v4][90X_dataRun2_Express_v4]] with <br /> - change of pixel mapping tag to fix the phaseI history <br /> - PGeometricDetExtra, PGeometricDet, PTrackerParameters adapted to have the same history | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/90X_dataRun2_Express_v4][90X_dataRun2_Express_v4]] | for CMSSW_9_0_2 onwards | CRUZET/CRAFT | as [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/90X_dataRun2_Express_v2][90X_dataRun2_Express_v2]] with <br /> - In GEM reco geometry tag the IOV has been moved to first run of 2017 <br /> - update of !L1T CaloParam and addition of !L1T !MuonParam tags <br /> - technical update of HCAL reco param tag. | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/90X_dataRun2_Express_v2][90X_dataRun2_Express_v2]] | for CMSSW_9_0_0_pre5 onwards | first test of T0 with phaseI plan1 HCAL detector in raw | as [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/90X_dataRun2_Express_v1][90X_dataRun2_Express_v1]] with <br /> - Jet Energy Correction adapted to pA and energy with better accuracy at low pT <br /> - inclusion of GEM geometry, required by the 2017 CMSSW eras <br /> - a run-dependent HCAL reco geometry to serve the phaseI-plan1 for runs >=287446 <br /> - the full set of HCAL calibrations which include the upgraded HF and plan1 HE <br /> - the updated Jet Energy corrections | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/90X_dataRun2_Express_v1][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 [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/90X_dataRun2_Express_Queue][90X_dataRun2_Express_Queue]] | ---++++ Prompt reconstruction Global Tags | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_dataRun2_Prompt_v11][92X_dataRun2_Prompt_v11]] | for CMSSW_9_2_13 onwards | collisions | [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/92X_dataRun2_Prompt_v10][92X_dataRun2_Prompt_v10]] with <br /> - new prompt tag for ECAL Pedestals with PCL synch. ECAL pedestals PCL is made to populate this tag now. First IOV is 306091. | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_dataRun2_Prompt_v10][92X_dataRun2_Prompt_v10]] | for CMSSW_9_2_13 onwards | collisions | [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/92X_dataRun2_Prompt_v9][92X_dataRun2_Prompt_v9]] with <br /> - separate the hlt/express and prompt tags for ECAL preshower. | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_dataRun2_Prompt_v9][92X_dataRun2_Prompt_v9]] | for CMSSW_9_2_11 onwards | collisions | [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/92X_dataRun2_Prompt_v8][92X_dataRun2_Prompt_v8]] with <br /> - remove the separation of express and prompt tags for pixel offline and tracker alignment tags. bring back the consistency in beamspot computation | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_dataRun2_Prompt_v8][92X_dataRun2_Prompt_v8]] | for CMSSW_9_2_7 onwards | collisions | [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/92X_dataRun2_Prompt_v7][92X_dataRun2_Prompt_v7]] with <br /> - adding CTPPS tags | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_dataRun2_Prompt_v7][92X_dataRun2_Prompt_v7]] | for CMSSW_9_2_7 onwards | collisions | [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/92X_dataRun2_Prompt_v6][92X_dataRun2_Prompt_v7]] with <br /> - update HAD and EM PF cluster calibration | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_dataRun2_Prompt_v6][92X_dataRun2_Prompt_v6]] | for CMSSW_9_2_6 onwards | collisions | [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/92X_dataRun2_Prompt_v5][92X_dataRun2_Prompt_v5]] with <br /> - change of pixel local calibration and derived alignment to account for the recalibrarted pixel VCAL | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_dataRun2_Prompt_v5][92X_dataRun2_Prompt_v5]] | for CMSSW_9_2_6 onwards | collisions | [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/92X_dataRun2_Prompt_v4][92X_dataRun2_Prompt_v4]] with <br /> - temporarily DECOUPLE express and prompt for pixel commissioning , which will be reverted <br /> - pixel genErrors, templates, lorenzAngle . tracker Alignmenet, APE and SURFACES: all these tags are copied from their express versio | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_dataRun2_Prompt_v4][92X_dataRun2_Prompt_v4]] | for CMSSW_9_2_0 onwards | first collisions | [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/92X_dataRun2_Prompt_v4][92X_dataRun2_Prompt_v2]] with <br /> - splitting of pixel gain between express and prompt | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/92X_dataRun2_Prompt_v2][92X_dataRun2_Prompt_v2]] | for CMSSW_9_2_0 onwards | first collisions | [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/90X_dataRun2_Prompt_v3][90X_dataRun2_Prompt_v3]] with <br /> - change of pixel mapping tag to fix the phaseI history <br /> - PGeometricDetExtra, PGeometricDet, PTrackerParameters adapted to have the same history | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/90X_dataRun2_Prompt_v3][90X_dataRun2_Prompt_v3]] | for CMSSW_9_0_2 onwards | CRUZET/CRAFT | as [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/90X_dataRun2_Prompt_v2][90X_dataRun2_Prompt_v2]] with <br /> - In GEM reco geometry tag the IOV has been moved to first run of 2017 <br /> - update of !L1T !CaloParam and addition of !L1T !MuonParam tags <br /> - technical update of HCAL reco param tag and prompt version of HCAL channel quality, gains and response corrections are added instead of hlt ones. | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/90X_dataRun2_Prompt_v2][90X_dataRun2_Prompt_v2]] | for CMSSW_9_0_0_pre5 onwards | first test of T0 with phaseI plan1 HCAL detector in raw | as [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/90X_dataRun2_Prompt_v1][90X_dataRun2_Prompt_v1]] with <br /> - Jet Energy Correction adapted to pA and energy with better accuracy at low pT <br /> - inclusion of GEM geometry, required by the 2017 CMSSW eras <br /> - a run-dependent HCAL reco geometry to serve the phaseI-plan1 for runs >=287446 <br /> - the full set of HCAL calibrations which include the upgraded HF and plan1 HE <br /> - the updated Jet Energy corrections | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/90X_dataRun2_Prompt_v1][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 [[https://cms-conddb.cern.ch/cmsDbBrowser/queue_list/Prod/90X_dataRun2_Prompt_Queue][90X_dataRun2_Prompt_Queue]] | ---+++ Global Tags for 2016 data taking <br />#GR16HEP ---++++ HLT reconstruction Global Tags <br />#GR16H | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_pA_HLT_v0][80X_dataRun2_pA_HLT_v0]] | for CMSSW_8_0_X X>=22 | To be used for 2016 pA operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_12][80X_dataRun2_HLT_v12]] with <br /> - Jet Energy Correction adapted to pA and energy with better accuracy at low pT | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_v12][80X_dataRun2_HLT_v12]] | for CMSSW_8_0_X X>4 | To be used for 2016 pre-beam operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_11][80X_dataRun2_HLT_v11]] with <br /> - new tags for DT and CSC Alignment errors (allow updates via append IOV with HLT synchronization) | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_v11][80X_dataRun2_HLT_v11]] | for CMSSW_8_0_X X>4 | To be used for 2016 pre-beam operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_10][80X_dataRun2_HLT_v10]] with <br /> - adding 7 payloads for !GBRWrapperRcd for tracking MVA needed by CMSHLT-716 | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_v10][80X_dataRun2_HLT_v10]] | for CMSSW_8_0_X X>3 | To be used for 2016 pre-beam operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_9][80X_dataRun2_HLT_v9]] with <br /> -updated set of HLT Jet Energy correction (v11) | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_v9][80X_dataRun2_HLT_v9]] | for CMSSW_8_0_X X>3 | To be used for 2016 pre-beam operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_8][80X_dataRun2_HLT_v8]] with <br /> - updated set of HLT Jet Energy correction (v10) | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_v8][80X_dataRun2_HLT_v8]] | for CMSSW_8_0_X X>2 | To be used for 2016 pre-beam operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_v7][80X_dataRun2_HLT_v7]] <br /> - better nomenclature for !L1TUtmTriggerMenuRcd for stage-2 L1 menu (will receive !O2O updates) | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_v7][80X_dataRun2_HLT_v7]] | for CMSSW_8_0_X X>2 | To be used for 2016 pre-beam operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_v6][80X_dataRun2_HLT_v6]] <br /> - adding new Condition Format !L1TUtmTriggerMenuRcd for stage-2 L1 menu (will receive !O2O updates) | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_v6][80X_dataRun2_HLT_v6]] | for CMSSW_8_0_X X>0 | To be used for 2016 MWGR-III operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_v4][80X_dataRun2_HLT_v4]] <br /> - introducing an IOV in 2016 for Hcal Parameters to include 1x1 HF trigger primitives | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_v4][80X_dataRun2_HLT_v4]] | for CMSSW_8_0_X X>0 | To be used for 2016 MWGR-II operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_v3][80X_dataRun2_HLT_v3]] <br /> - updated Hcal e-maps (unlabeled and full) for unpacking of uTCA FEDs in HBHE | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_v3][80X_dataRun2_HLT_v3]] | for CMSSW_8_0_X X>0 | To be used for 2016 MWGR-II operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_v2][80X_dataRun2_HLT_v2]] <br /> - updated ES intercalibrations and ESEE intercalibrations <br /> - added e-gamma mustache regressions for HLT <br /> - updated HLT JEC energy correction with L2L3 residuals and hadron PF calibration | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_HLT_v2][80X_dataRun2_HLT_v2]] | for CMSSW_8_0_X X>0 | To be used for 2016 MWGR-II operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/75X_dataRun2_HLT_v7][75X_dataRun2_HLT_v7]] <br /> - added HLT label for B-tagging MVA calibrations <br />- new egamma regresions for 2016 <br /> - added payload for !HCalParameterRcd <br /> - added payload for !HCalQIETypesRcd <br /> - added label HLT for !PFCalibrations <br /> - added payload for !PHcalParametersRcd <br /> - technical change on the !DTRecoUncertainties tag name to remove fully qualified V1 account name <br /> - technical change on the !ESInterCalibConstantsRcd and !EcalGainRationsRcd to remove fully qualified V1 account name <br /> - new version for !PHcalRcd <br /> - changed !CaloTower topology | ---++++ Express reconstruction Global Tags <br />#GR16E | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Express_v15][80X_dataRun2_Express_v15]] | for CMSSW_8_0_X X>=20 | To be used for 2016 beam operations | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Express_v14][80X_dataRun2_Express_v15]] with <br /> - tags for JER and JER SF with content for DATA and with express synchronization | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Express_v14][80X_dataRun2_Express_v14]] | for CMSSW_8_0_X X>=20 | To be used for 2016 beam operations | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Express_v13][80X_dataRun2_Express_v13]] with <br /> - updated/added JER and JER Data/MC scale factors | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Express_v13][80X_dataRun2_Express_v13]] | for CMSSW_8_0_X X>=19 | To be used for 2016 beam operations | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Express_v12][80X_dataRun2_Express_v12]] with <br /> - added needed AlCaReco trigger keys for HIP monitoring | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Express_v12][80X_dataRun2_Express_v12]] | for CMSSW_8_0_X X>=14 | To be used for 2016 beam operations | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Express_v11][80X_dataRun2_Express_v11]] with <br /> - updated !DropBoxMetaData (v5.1) to activate !SiPixelAli PCL workflow in express/prompt production tag. | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Express_v11][80X_dataRun2_Express_v11]] | for CMSSW_8_0_X X>=14 | To be used for 2016 beam operations | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Express_v10][80X_dataRun2_Express_v10]] with <br /> - updated !SiStrip and Tracking DQM !TriggerBits from DB | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Express_v10][80X_dataRun2_Express_v10]] | for CMSSW_8_0_X X>=10 | To be used for 2016 beam operations | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Express_v9][80X_dataRun2_Express_v9]] with <br /> - correct snapshot time (set to infinity: 9999-12-31 23:59:59,000000) | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Express_v9][80X_dataRun2_Express_v9]] | for CMSSW_8_0_X X>=10 | %ICON{led-box-red}% NOT TO USE! WRONG SYNCHRONIZATION %ICON{led-box-red}% | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Express_v8][80X_dataRun2_Express_v8]] with <br /> - updated Jet Energy Corrections for 2016C including 2016 data-mc residuals and uncertainties <br /> - added JEC for algortihm !AK4PT and !AK4Calo <br /> - introduced new Tracker Alignment tag (copy of the existing one) for the purpose of switching on the !SiPixelAli PCL. | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Express_v8][80X_dataRun2_Express_v8]] | for CMSSW_8_0_X X>=10 | To be used for 2016 beam operations | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v7][80X_dataRun2_Prompt_v7]] updating <br /> - updated DropBoxMetadata payload to fix the SiStripGainAfterAbortGap PCL worflow. | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Express_v7][80X_dataRun2_Express_v7]] | for CMSSW_8_0_X X>=8 | To be used for 2016 beam operations | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v6][80X_dataRun2_Prompt_v6]] updating <br /> - updated DropBoxMetadata payload to fix the SiPixeAli PCL worflow. | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Express_v6][80X_dataRun2_Express_v6]] | for CMSSW_8_0_X X>=5 | To be used for 2016 beam operations | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v4][80X_dataRun2_Prompt_v4]] updating <br /> - splitting ECAL pedestal tag between HLT and EXPRESS/PROMPT | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Express_v4][80X_dataRun2_Express_v4]] | for CMSSW_8_0_X X>3 | To be used for 2016 pre-beam operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Express_v3][80X_dataRun2_Express_v3]] adding <br /> - better nomenclature for !L1TUtmTriggerMenuRcd for stage-2 L1 menu (will receive !O2O updates) <br /> - 4 labels for !JetResolutionScaleFactorRcd and 10 labels for !JetResolutionRcd needed for MET code updates. | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Express_v3][80X_dataRun2_Express_v3]] | for CMSSW_8_0_X X>2 | To be used for 2016 pre-beam operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Express_v2][80X_dataRun2_Express_v2]] adding <br /> - new Condition Format !L1TUtmTriggerMenuRcd for stage-2 L1 menu (will receive !O2O updates) | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Express_v2][80X_dataRun2_Express_v2]] | for CMSSW_8_0_X X>0 | To be used for 2016 MWGR-III operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Express_v1][80X_dataRun2_Express_v1]] <br /> - introducing an IOV in 2016 for Hcal Parameters to include 1x1 HF trigger primitives | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Express_v1][80X_dataRun2_Express_v1]] | for CMSSW_8_0_X X>0 | To be used for 2016 MWGR-II operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Express_v0][80X_dataRun2_Express_v0]] <br /> - updated Hcal e-maps (unlabeled and full) for unpacking of uTCA FEDs in HBHE | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Express_v0][80X_dataRun2_Express_v0]] | for CMSSW_8_0_X X>0 | To be used for 2016 MWGR-II operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/75X_dataRun2_Express_v0][75X_dataRun2_Express_v0]] <br /> - added HLT label for B-tagging MVA calibrations <br />- new egamma regresions for 2016 <br /> - added payload for !HCalParameterRcd <br /> - added payload for !HCalQIETypesRcd <br /> - added label HLT for !PFCalibrations <br /> - added payload for !PHcalParametersRcd <br /> - technical change on the !DTRecoUncertainties tag name to remove fully qualified V1 account name <br /> - new version for !PHcalRcd <br /> - changed !CaloTower topology | ---++++ Prompt reconstruction Global Tags <br />#GR16P | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v16][80X_dataRun2_Prompt_v16]] | for CMSSW_8_0_X X>=24 | Moriond17 recommandation for 02Feb2016 reminiaod | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v15][80X_dataRun2_Prompt_v15]] with <br /> - [[https://hypernews.cern.ch/HyperNews/CMS/get/calibrations/2804.html][new JEC]] for reMiniAod 02Feb2017 campaign (based on Summer16 MC) | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v15][80X_dataRun2_Prompt_v15]] | for CMSSW_8_0_X X>=20 | To be used for 2016 beam operations | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v14][80X_dataRun2_Prompt_v14]] with <br /> - castor local reconstruction tags cloned and separated from the hlt ones | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v14][80X_dataRun2_Prompt_v14]] | for CMSSW_8_0_X X>=20 | To be used for 2016 beam operations | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v13][80X_dataRun2_Prompt_v13]] with <br /> - tags for JER and JER SF with content for DATA and with express synchronization | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v13][80X_dataRun2_Prompt_v13]] | for CMSSW_8_0_X X>=20 | To be used for 2016 beam operations | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v12][80X_dataRun2_Prompt_v12]] with <br /> - updated/added JER and JER Data/MC scale factors | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v12][80X_dataRun2_Prompt_v12]] | for CMSSW_8_0_X X>=19 | To be used for 2016 beam operations | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v11][80X_dataRun2_Prompt_v11]] with <br /> - added needed AlCaReco trigger keys for HIP monitoring | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v11][80X_dataRun2_Prompt_v11]] | for CMSSW_8_0_X X>=14 | To be used for 2016 beam operations | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v10][80X_dataRun2_Prompt_v10]] with <br /> - amended !SiPixelQuality history during post-MD2 Prompt Reco pause (split tag from HLT/Express) | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v10][80X_dataRun2_Prompt_v10]] | for CMSSW_8_0_X X>=14 | To be used for 2016 beam operations | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v9][80X_dataRun2_Prompt_v9]] with <br /> - updated !SiStrip and Tracking DQM !TriggerBits from DB | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v9][80X_dataRun2_Prompt_v9]] | for CMSSW_8_0_X X>=10 | To be used for 2016 beam operations | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v8][80X_dataRun2_Prompt_v8]] with <br /> - updated Jet Energy Corrections for 2016C including 2016 data-mc residuals and uncertainties <br /> - added JEC for algortihm AK4PT and AK4Calo <br /> - introduced new Tracker Alignment tag (copy of the existing one) for the purpose of switching on the SiPixelAli PCL. | | [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v8][80X_dataRun2_Prompt_v8]] | for CMSSW_8_0_X X>=5 | To be used for 2016 beam operations | as [[https://cms-conddb.cern.ch/cmsDbBrowser/list/Prod/gts/80X_dataRun2_Prompt_v7][80X_dataRun2_Prompt_v7]] updating <br /> - splitting ECAL pedestal tag between HLT and EXPRESS/PROMPT | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Prompt_v6][80X_dataRun2_Prompt_v6]] | for CMSSW_8_0_X X>=5 | To be used for 2016 pre-beam operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Promtp_v5][80X_dataRun2_Prompt_v5]] updating <br /> - new tags to accommodate DT and CSC Alignment errors (allow updates via append IOV with express synchronization) <br /> - new tag for !HBHENegativeEFilter (allows updates via append IOV with express synchronization) <br /> - latest set of HLT JECs (v11) | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Prompt_v5][80X_dataRun2_Prompt_v5]] | for CMSSW_8_0_X X>3 | To be used for 2016 pre-beam operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Promtp_v4][80X_dataRun2_Prompt_v4]] with: <br /> - propagation of latest available set of HLT JECs (v10) | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Prompt_v4][80X_dataRun2_Prompt_v4]] | for CMSSW_8_0_X X>3 | To be used for 2016 pre-beam operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Promtp_v3][80X_dataRun2_Prompt_v3]] adding <br /> - better nomenclature for !L1TUtmTriggerMenuRcd for stage-2 L1 menu (will receive !O2O updates) <br /> - 4 labels for !JetResolutionScaleFactorRcd and 10 labels for !JetResolutionRcd needed for MET code updates. | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Prompt_v3][80X_dataRun2_Prompt_v3]] | for CMSSW_8_0_X X>2 | To be used for 2016 pre-bem operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Prompt_v2][80X_dataRun2_Prompt_v2]] adding <br /> - new Condition Format !L1TUtmTriggerMenuRcd for stage-2 L1 menu (will receive !O2O updates) | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Prompt_v2][80X_dataRun2_Prompt_v2]] | for CMSSW_8_0_X X>0 | To be used for 2016 MWGR-III operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Prompt_v1][80X_dataRun2_Prompt_v1]] <br /> - introducing an IOV in 2016 for Hcal Parameters to include 1x1 HF trigger primitives | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Prompt_v1][80X_dataRun2_Prompt_v1]] | for CMSSW_8_0_X X>0 | To be used for 2016 MWGR-II operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Prompt_v0][80X_dataRun2_Prompt_v0]] <br /> - updated Hcal e-maps (unlabeled and full) for unpacking of uTCA FEDs in HBHE | | [[https://cms-conddb.cern.ch/browser/#list/gts/80X_dataRun2_Prompt_v0][80X_dataRun2_Prompt_v0]] | for CMSSW_8_0_X X>0 | To be used for 2016 MWGR-II operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/75X_dataRun2_Prompt_v2][75X_dataRun2_Prompt_v2]] <br /> - added HLT label for B-tagging MVA calibrations <br />- new egamma regresions for 2016 <br /> - added payload for !HCalParameterRcd <br /> - added payload for !HCalQIETypesRcd <br /> - added label HLT for !PFCalibrations <br /> - added payload for !PHcalParametersRcd <br /> - technical change on the !DTRecoUncertainties tag name to remove fully qualified V1 account name <br /> - new version for !PHcalRcd <br /> - changed !CaloTower topology | ---+++ Global Tags for 2015 data taking <br />#GR15HEP ---++++ HLT reconstruction Global Tags <br />#GR15H | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[%LINKTOBROWSER%/74X_dataRun2_HLT_ppAt5TeV_v0][74X_dataRun2_HLT_ppAt5TeV_v0]] | for CMSSW_7_4_X X>=6 | To be used for pp reference run @ 5.02TeV operations | As [[%LINKTOBROWSER%/74X_dataRun2_HLT_v3][74X_dataRun2_HLT_v3]] changing: <br /> - replaced !AK4Calo HLT JEC for pp reference run at 5 !TeV and HI run | | [[%LINKTOBROWSER%/74X_dataRun2_HLT_v3][74X_dataRun2_HLT_v3]] | for CMSSW_7_4_X X>=6 | To be used for 2015C (25 ns collisions) | As [[%LINKTOBROWSER%/74X_dataRun2_HLT_v2][74X_dataRun2_HLT_v2]] changing: <br /> - taxonomy changes for the muon APE <br /> - replacing tag names containing fully qualified conddB v1 account | | [[%LINKTOBROWSER%/74X_dataRun2_HLT_v2][74X_dataRun2_HLT_v2]] | for CMSSW_7_4_X X>=6 | To be used for 2015C (25 ns collisions) | As [[%LINKTOBROWSER%/74X_dataRun2_HLT_v1][74X_dataRun2_HLT_v1]] changing: <br /> - re-introducing the HLT Tracker backplane corrections tag | | [[%LINKTOBROWSER%/74X_dataRun2_HLT_v1][74X_dataRun2_HLT_v1]] | for CMSSW_7_4_X X>=6 | To be used for 2015C (25 ns collisions) | As [[%LINKTOBROWSER%/GR_H_V58C][GR_H_V58C]] changing: <br /> - 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; <br /> - added record for HB HE negative energy filter. | | [[%LINKTOBROWSER%/74X_dataRun2_HLT_v0][74X_dataRun2_HLT_v0]] | for CMSSW_7_4_X X>=0 | To be used for 2015C (25 ns collisions) | As [[%LINKTOBROWSER%/GR_H_V58C][GR_H_V58C]] changing: <br /> - 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. | | [[%LINKTOGTLIST%/?GlobalTag=GR_H_V58C][GR_H_V58C]] | for CMSSW_7_4_X X>=0 | To be used for 2015A+B (50 ns collisions) | As [[%LINKTOGTLIST%/?GlobalTag=GR_H_V58][GR_H_V58]] changing: <br /> - changed ECAL Cluster corrections tag name to contain "hlt" <br /> - adding: label "full" for HcalElectronicsMapRcd | ---++++ Express reconstruction Global Tags <br />#GR15E | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/75X_dataRun2_Express_ppAt5TeV_v0][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 [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/74X_dataRun2_Express_v3][74X_dataRun2_Express_v3]] changing: <br /> - | | [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/74X_dataRun2_Express_v3][74X_dataRun2_Express_v3]] | for CMSSW_7_4_X X>=10 [*] | To be used !Run2015D (25ns) data taking operations | as [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/74X_dataRun2_Express_v2][74X_dataRun2_Express_v2]] changing: <br /> - updating to new Jet Energy corrections <br /> - taxonomy change for the Muon APE (=0 explicit) <br /> - added new GBRForest payloads for the existing TMVA-based taggers. | | [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/74X_dataRun2_Express_v2][74X_dataRun2_Express_v2]] | for CMSSW_7_4_X X>=10 [*] | To be used !Run2015D (25ns) data taking operations | as [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/74X_dataRun2_Express_v1][74X_dataRun2_Express_v1]] changing: <br /> - added e/gamma regression from ECAL multifit <br /> - changes in taxonomy for SiStripBackPlaneCorrection (introducing express tag). | | [[https://cms-conddb.cern.ch/browser/#list/Prod/gts/74X_dataRun2_Express_v1][74X_dataRun2_Express_v1]] | for CMSSW_7_4_X X>=8 [*] | To be used !Run2015C (25ns) data taking operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/74X_dataRun2_Express_v0][74X_dataRun2_Express_v0]] changing: <br /> - adding Negative Energy Filter tag. | | [[https://cms-conddb.cern.ch/browser/#list/gts/74X_dataRun2_Express_v0][74X_dataRun2_Express_v0]] | for CMSSW_7_4_X X>=1 [*] | To be used !Run2015B (50ns) data taking operations | as [[%LINKTOGTLIST%/?GlobalTag=GR_E_V49][GR_E_V49]] changing: <br /> - taxonomy of the EcalClusterLocalContCorrParametersRcd | | [[%LINKTOGTLIST%/?GlobalTag=GR_E_V49][GR_E_V49]] | for CMSSW_7_4_X X>=1 | To be used for first beam data 2015 | As [[%LINKTOGTLIST%/?GlobalTag=GR_E_V48][GR_E_V48]] <br /> - improved !Dropbox !metadata to fix PCL uploads <br /> - new tag for DT t0 calibration taking into account FEB path corrections | | [[%LINKTOGTLIST%/?GlobalTag=GR_E_V48][GR_E_V48]] | for CMSSW_7_4_X X>=1 | To be used for first beam data 2015 | As [[%LINKTOGTLIST%/?GlobalTag=GR_E_V47][GR_E_V47]] <br /> - adding: label "full" for HcalElectronicsMapRcd | ---++++ Prompt reconstruction Global Tags <br />#GR15P | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[https://cms-conddb.cern.ch/browser/#list/gts/75X_dataRun2_Prompt_v1][75X_dataRun2_Prompt_v1]] | for CMSSW_7_5_X X>5 [*] | To be used for Heavy Ion data-taking operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/74X_dataRun2_Prompt_v2][74X_dataRun2_Prompt_v2]] <br /> - | | [[https://cms-conddb.cern.ch/browser/#list/gts/74X_dataRun2_Prompt_v4][75X_dataRun2_Prompt_v4]] | for CMSSW_7_4_X X>10 [*] | To be used !Run2015D (25ns) data taking operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/74X_dataRun2_Prompt_v3][74X_dataRun2_Prompt_v3]] <br /> - updating to new Jet Energy corrections <br /> - taxonomy change for the Muon APE (=0 explicit) <br /> - added new GBRForest payloads for the existing TMVA-based taggers | | [[https://cms-conddb.cern.ch/browser/#list/gts/74X_dataRun2_Prompt_v3][74X_dataRun2_Prompt_v3]] | for CMSSW_7_4_X X>10 [*] | To be used !Run2015D (25ns) data taking operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/74X_dataRun2_Prompt_v2][74X_dataRun2_Prompt_v2]] <br /> - introduced prompt version for Strip O2O tags | | [[https://cms-conddb.cern.ch/browser/#list/gts/74X_dataRun2_Prompt_v2][74X_dataRun2_Prompt_v2]] | for CMSSW_7_4_X X>10 [*] | To be used !Run2015D (25ns) data taking operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/74X_dataRun2_Prompt_v1][74X_dataRun2_Prompt_v1]] <br /> - added e/gamma regression from ECAL multifit <br /> - changes in taxonomy for !SiStripBackPlaneCorrection (introducing express tag) <br /> - changes in taxonomy for the !TrackerAlignment (introducing prompt tag) | | [[https://cms-conddb.cern.ch/browser/#list/gts/74X_dataRun2_Prompt_v1][74X_dataRun2_Prompt_v1]] | for CMSSW_7_4_X X>=6 [*] | To be used !Run2015B/C (50/25ns) data taking operations | as [[https://cms-conddb.cern.ch/browser/#list/gts/74X_dataRun2_Prompt_v0][74X_dataRun2_Prompt_v0]] <br /> - adding Negative Energy Filter tag. | | [[https://cms-conddb.cern.ch/browser/#list/gts/74X_dataRun2_Prompt_v0][74X_dataRun2_Prompt_v0]] | for CMSSW_7_4_X X>=1 [*] | To be used !Run2015B (50ns) data taking operations | as [[%LINKTOGTLIST%/?GlobalTag=GR_P_V56][GR_P_V56]] <br /> - changing name of tag for EcalClusterLocalContCorrParameters to decouple it from MC <br /> upgrade tag for DTT0Rcd to FEB corrected one | | [[%LINKTOGTLIST%/?GlobalTag=GR_P_V56][GR_P_V56]] | for CMSSW_7_4_X X>=1 | To be used for first beam data 2015 | As [[%LINKTOGTLIST%/?GlobalTag=GR_P_V55][GR_P_V55]] with: <br /> - changed ECAL Cluster corrections to parametric (as in run2 MC) <br /> - added all labels for JetCorrectionsRecord (JEC), required for MINIAOD production | | [[%LINKTOGTLIST%/?GlobalTag=GR_P_V55][GR_P_V55]] | for CMSSW_7_4_X X>=1 | To be used for first beam data 2015 | As [[%LINKTOGTLIST%/?GlobalTag=GR_P_V54][GR_P_V54]] whith: <br /> - new tag for EcalLaserAPDPNRatiosRcd to allow !O2O to properly work <br /> - 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 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 [[CMS.AlCaScenarios][here]]. Additional information about individual tags within the global tags can be found at the links provided [[#TagDetails][here]] ---+++ Special GTs for Upgrade Documented at the following [[CMS.GlobalTagsForUpgrade][Twiki]] ---+++ GTs for special MC productions | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[%LINKTOGTLIST%/?GlobalTag=START53_V19H][START53_V19H]] | >=CMSSW_5_3_8_patch3 | For special MinBias ECAL production (B field OFF) | As !START53_V19 with the following updates:<br /> - Magnetic field OFF ECAL [[https://twiki.cern.ch/twiki/bin/viewauth/CMS/EcalMCConditions][conditions] | | [[%LINKTOGTLIST%/?GlobalTag=START53_V19G][START53_V19G]] | >=CMSSW_5_3_8_patch3 | For special MinBias ECAL production (B field ON) | As !START53_V19 with the following updates:<br /> - Magnetic field ON ECAL [[https://twiki.cern.ch/twiki/bin/viewauth/CMS/EcalMCConditions][conditions] | | [[%LINKTOGTLIST%/?GlobalTag=START53_V19F][START53_V19F]] | >=CMSSW_5_3_8_patch3 | For run dependent MC conditions | As !START53_V19 with the following updates:<br /> - Run-dependent L1 menu conditions and PU mixing configuration for 2012A,B,C,D eras. | | [[%LINKTOGTLIST%/?GlobalTag=START53_V14B][START53_V14B]] | >=CMSSW_5_3_8_patch3 | For Egamma systematic studies | As !START53_V14A with the following change:<br /> - Flat30 geometry tag | | [[%LINKTOGTLIST%/?GlobalTag=START53_V14A][START53_V14A]] | >=CMSSW_5_3_8_patch3 | For Hgg systematic studies | As !START53_V14 with the following updates:<br /> - run dependent ECAL conditions taken from START53_V7N | ---+++ 74Y Releases (MC) ---+++++ 74Y Releases <br />#MC74X The following are valid for 74X releases: | *TAGNAME* | *Validity* | *Description* | *Comments* | | [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V8A][MCRUN2_74_V8A]] | CMSSW >= 7_4_1 | As 'run2_mcStartup' GT, but with "worst" case scenario SiPixelQualityFromDbRcd | As [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V8][MCRUN2_74_V8]] with the following changes:<br /> - 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. | | [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V8B][MCRUN2_74_V8B]] | CMSSW >= 7_4_1 | As 'run2_mcStartup' GT, but with "best" case scenario SiPixelQualityFromDbRcd | As [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V8][MCRUN2_74_V8]] with the following changes:<br /> - 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. | | [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V7C][MCRUN2_74_V9C]] | CMSSW >= 7_4_1 | As 'run2_mcAsymptotic' GT, but with "worst" case scenario SiPixelQualityFromDbRcd | As [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V9][MCRUN2_74_V9]] with the following changes:<br /> - 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. | | [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V9D][MCRUN2_74_V9D]] | CMSSW >= 7_4_1 | As 'run2_mcAsymptotic' GT, but with "best" case scenario SiPixelQualityFromDbRcd | As [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V9][MCRUN2_74_V9]] with the following changes:<br /> - 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. | | [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V6A][MCRUN2_74_V6A]] | CMSSW >= 7_4_0 | As 'run2_mcStartup' GT, but with "worst" case scenario SiPixelQualityFromDbRcd | As [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V6][MCRUN2_74_V6]] with the following changes:<br /> - 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. | | [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V6B][MCRUN2_74_V6B]] | CMSSW >= 7_4_0 | As 'run2_mcStartup' GT, but with "best" case scenario SiPixelQualityFromDbRcd | As [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V6][MCRUN2_74_V6]] with the following changes:<br /> - 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. | | [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V7C][MCRUN2_74_V7C]] | CMSSW >= 7_4_0 | As 'run2_mcAsymptotic' GT, but with "worst" case scenario SiPixelQualityFromDbRcd | As [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V7][MCRUN2_74_V7]] with the following changes:<br /> - 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. | | [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V7D][MCRUN2_74_V7D]] | CMSSW >= 7_4_0 | As 'run2_mcAsymptotic' GT, but with "best" case scenario SiPixelQualityFromDbRcd | As [[%LINKTOGTLIST%/?GlobalTag=MCRUN2_74_V7][MCRUN2_74_V7]] with the following changes:<br /> - 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. | <br />%TWISTY{<br />mode="div"<br />showlink="Show..."<br />hidelink="Hide"<br />showimgleft="%ICONURLPATH{toggleopen-small}%"<br />hideimgleft="%ICONURLPATH{toggleclose-small}%"<br />}% <br />%ENDTWISTY% ---++ For Run-I and earlier version of Global tags : * please refer to : https://twiki.cern.ch/twiki/bin/view/CMSPublic/SWGuideFrontierConditions?rev=609* ---++ NOTES: <br />#NOTENotProd *[1]* Global Tags labelled with (Not for prod. [[%5B#NOTENotProd][1]]]) are not meant for production since some of the records are read from the preparation account and could not be readable forever. <br />#NOTESnapValid *[2]* Global Tags which are *'frozen snapshots'* meant for central re-reco should be used with care since the tags are up to date only until the last run interested by that particular re-reco (which is usually indicated in the documentation). Being frozen, by definition, they can not be further updated and the original version should be used instead. For more details please refer to the [[http://indico.cern.ch/getFile.py/access?contribId=7&sessionId=6&resId=0&materialId=slides&confId=88844][GT tutorial]], looking in particular to slides 6 to 12. -- Main.GianlucaCerminara - 09-Apr-2010
E
dit
|
A
ttach
|
Watch
|
P
rint version
|
H
istory
: r638
<
r637
<
r636
<
r635
<
r634
|
B
acklinks
|
V
iew topic
|
WYSIWYG
|
M
ore topic actions
Topic revision: r638 - 2021-03-08
-
TapioLampen
Log In
CMSPublic
CMSPublic Web
CMSPrivate Web
Create New Topic
Index
Search
Changes
Notifications
Statistics
Preferences
Create
a LeftBar
Public webs
Public webs
ABATBEA
ACPP
ADCgroup
AEGIS
AfricaMap
AgileInfrastructure
ALICE
AliceEbyE
AliceSPD
AliceSSD
AliceTOF
AliFemto
ALPHA
ArdaGrid
ASACUSA
AthenaFCalTBAna
Atlas
AtlasLBNL
AXIALPET
CAE
CALICE
CDS
CENF
CERNSearch
CLIC
Cloud
CloudServices
CMS
Controls
CTA
CvmFS
DB
DefaultWeb
DESgroup
DPHEP
DM-LHC
DSSGroup
EGEE
EgeePtf
ELFms
EMI
ETICS
FIOgroup
FlukaTeam
Frontier
Gaudi
GeneratorServices
GuidesInfo
HardwareLabs
HCC
HEPIX
ILCBDSColl
ILCTPC
IMWG
Inspire
IPv6
IT
ItCommTeam
ITCoord
ITdeptTechForum
ITDRP
ITGT
ITSDC
LAr
LCG
LCGAAWorkbook
Leade
LHCAccess
LHCAtHome
LHCb
LHCgas
LHCONE
LHCOPN
LinuxSupport
Main
Medipix
Messaging
MPGD
NA49
NA61
NA62
NTOF
Openlab
PDBService
Persistency
PESgroup
Plugins
PSAccess
PSBUpgrade
R2Eproject
RCTF
RD42
RFCond12
RFLowLevel
ROXIE
Sandbox
SocialActivities
SPI
SRMDev
SSM
Student
SuperComputing
Support
SwfCatalogue
TMVA
TOTEM
TWiki
UNOSAT
Virtualization
VOBox
WITCH
XTCA
Cern Search
TWiki Search
Google Search
CMSPublic
All webs
Copyright &© 2008-2021 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
or Ideas, requests, problems regarding TWiki? use
Discourse
or
Send feedback