-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to read 2018D data using CMSSW_10_2_10 #26182
Comments
assign reconstruction |
A new Issue was created by @Dr15Jones Chris Jones. @davidlange6, @Dr15Jones, @smuzaffar, @fabiocos, @kpedro88 can you please review it and eventually sign/assign? Thanks. cms-bot commands are listed here |
Here is an update from today. One file name was shared as an example of the problem There is no data saved in the file output branches with DeepDouble* type, as seen from loading the file and then doing As a test, using CMSSW_10_2_10, I ran nanoAOD processing on this file using configuration strings from the 2018 data workflow 136.8521. |
I ran the following code in CMSSW_10_2_10
which copied (slowly) every object from the input to the output. This ran fine for all 69169 events. |
I managed to get a ~simple test with code in CMSSW which leads to the same problem. import FWCore.ParameterSet.Config as cms
process = cms.Process("TEST")
process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(1000) )
process.source = cms.Source(
'PoolSource',
fileNames = cms.untracked.vstring('/store/data/Run2018D/DoubleMuon/MINIAOD/PromptReco-v2/000/320/673/00000/FEC164FC-E897-E811-A713-FA163EE4DD06.root')
)
process.load('HLTrigger.HLTcore.hltEventAnalyzerAOD_cfi')
process.run = cms.Path(process.hltEventAnalyzerAOD
) The original problematic case in https://hypernews.cern.ch/HyperNews/CMS/get/physTools/3647.html is similarly connected to instantiating @Dr15Jones what's a good way to debug? There is a straightforward solution to make a dummy dictionary. Still, it would be good to understand what triggers the problem. |
|
with linenumbers (this is CMSSW_10_2_10)
The same problem is present in CMSSW_10_6_0_pre3 |
Hi @slava77devel and @Dr15Jones |
the branch info is present in the file (ROOT or our EDM design). |
From hypernews: https://hypernews.cern.ch/HyperNews/CMS/get/physTools/3647.html
The pull request #25370 which was a backport to CMSSW_10_2 removed the class DeepDoubleBFeatures thereby making it not possible to read the Run2018D processed data.
The text was updated successfully, but these errors were encountered: