Open dsidirop1 opened 1 day ago
cms-bot internal usage
-code-checks
Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-46749/42720
Code check has found code style and quality issues which could be resolved by applying following patch(s)
curl -k https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-46749/42720/code-format.patch | patch -p1
You can also run scram build code-format
to apply code format directly-code-checks
Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-46749/42727
Code check has found code style and quality issues which could be resolved by applying following patch(s)
curl -k https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-46749/42727/code-format.patch | patch -p1
You can also run scram build code-format
to apply code format directly+code-checks
Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-46749/42737
A new Pull Request was created by @dsidirop1 for master.
It involves the following packages:
@antoniovagnerini, @cmsbuild, @rseidita can you please review it and eventually sign? Thanks. @rappoccio this is something you requested to watch as well. @antoniovilela, @mandrenguyen, @rappoccio, @sextonkennedy you are the release manager for this.
cms-bot commands are listed here
Description of PR
CMSSW_14_2_0_pre3
. Fot the updated B-tags from the old CSV ones to deepCSV the working points were updated accordingly based on the 2018 campaign as described on the BTV internal wiki.<reco::PFCandidate>
objects which are obsolete to f.e.<reco::Muon>
,<reco::GsfElectron>
per the relevant objects found in the input files used.mediumMuonCut = looseMuonCut + " muonRef.innerTrack.validFraction > 0.8"
becomesmediumMuonCut = looseMuonCut + " innerTrack.validFraction > 0.8"
.in TopSingleLeptonDQM.cc were removed completely.
PR validation:
Changes have been made to the following files:
To verify the results of the aforementioned actions the file
DQM/Physics/test/topDQM_production_cfg.py
was executed withcmsRun
to produce a .root file that was then used as input for theDQM/Physics/test/topDQM_harvesting_cfg.py
to produce a tree with the relevant histograms needed that were browsed using the TBrowser root feature. As evidence of the success of the task two of those histograms (one fromTopSingleMuonMediumDQM
and the other fromSingleTopElectronMediumDQM
) are attached on this PR.