Skip to content

Commit

Permalink
Migration of input collection parameters to untracked for CTPPS and D…
Browse files Browse the repository at this point in the history
…TMonitorModule
  • Loading branch information
NiharSaha committed Jul 31, 2022
1 parent af61d7b commit ca9319b
Show file tree
Hide file tree
Showing 45 changed files with 149 additions and 135 deletions.
6 changes: 4 additions & 2 deletions DQM/CTPPS/plugins/CTPPSCommonDQMSource.cc
Expand Up @@ -297,8 +297,10 @@ CTPPSCommonDQMSource::ArmPlots::ArmPlots(DQMStore::IBooker &ibooker, int _id, bo
CTPPSCommonDQMSource::CTPPSCommonDQMSource(const edm::ParameterSet &ps)
: verbosity(ps.getUntrackedParameter<unsigned int>("verbosity", 0)),
ctppsRecordToken(consumes<CTPPSRecord>(ps.getUntrackedParameter<edm::InputTag>("ctppsmetadata"))),
tokenLocalTrackLite(consumes<vector<CTPPSLocalTrackLite>>(ps.getParameter<edm::InputTag>("tagLocalTrackLite"))),
tokenRecoProtons(consumes<std::vector<reco::ForwardProton>>(ps.getParameter<InputTag>("tagRecoProtons"))),
tokenLocalTrackLite(
consumes<vector<CTPPSLocalTrackLite>>(ps.getUntrackedParameter<edm::InputTag>("tagLocalTrackLite"))),
tokenRecoProtons(
consumes<std::vector<reco::ForwardProton>>(ps.getUntrackedParameter<InputTag>("tagRecoProtons"))),
makeProtonRecoPlots_(ps.getParameter<bool>("makeProtonRecoPlots")),
perLSsaving_(ps.getUntrackedParameter<bool>("perLSsaving", false)) {
currentLS = 0;
Expand Down
18 changes: 9 additions & 9 deletions DQM/CTPPS/plugins/CTPPSDiamondDQMSource.cc
Expand Up @@ -587,12 +587,12 @@ CTPPSDiamondDQMSource::ChannelPlots::ChannelPlots(DQMStore::IBooker& ibooker, un

CTPPSDiamondDQMSource::CTPPSDiamondDQMSource(const edm::ParameterSet& ps)
: perLSsaving_(ps.getUntrackedParameter<bool>("perLSsaving", false)),
tokenPixelTrack_(
consumes<edm::DetSetVector<CTPPSPixelLocalTrack>>(ps.getParameter<edm::InputTag>("tagPixelLocalTracks"))),
tokenDiamondHit_(
consumes<edm::DetSetVector<CTPPSDiamondRecHit>>(ps.getParameter<edm::InputTag>("tagDiamondRecHits"))),
tokenDiamondTrack_(
consumes<edm::DetSetVector<CTPPSDiamondLocalTrack>>(ps.getParameter<edm::InputTag>("tagDiamondLocalTracks"))),
tokenPixelTrack_(consumes<edm::DetSetVector<CTPPSPixelLocalTrack>>(
ps.getUntrackedParameter<edm::InputTag>("tagPixelLocalTracks"))),
tokenDiamondHit_(consumes<edm::DetSetVector<CTPPSDiamondRecHit>>(
ps.getUntrackedParameter<edm::InputTag>("tagDiamondRecHits"))),
tokenDiamondTrack_(consumes<edm::DetSetVector<CTPPSDiamondLocalTrack>>(
ps.getUntrackedParameter<edm::InputTag>("tagDiamondLocalTracks"))),
ctppsGeometryRunToken_(esConsumes<CTPPSGeometry, VeryForwardRealGeometryRecord, edm::Transition::BeginRun>()),
ctppsGeometryEventToken_(esConsumes<CTPPSGeometry, VeryForwardRealGeometryRecord>()),
// ctppsLhcInfoToken_(esConsumes<LHCInfo, LHCInfoRcd>()),
Expand All @@ -607,9 +607,9 @@ CTPPSDiamondDQMSource::CTPPSDiamondDQMSource(const edm::ParameterSet& ps)
EC_difference_56_(-500),
EC_difference_45_(-500) {
if (extract_digi_info_) {
tokenStatus_ = consumes<edm::DetSetVector<TotemVFATStatus>>(ps.getParameter<edm::InputTag>("tagStatus"));
tokenFEDInfo_ = consumes<std::vector<TotemFEDInfo>>(ps.getParameter<edm::InputTag>("tagFEDInfo"));
tokenDigi_ = consumes<edm::DetSetVector<CTPPSDiamondDigi>>(ps.getParameter<edm::InputTag>("tagDigi"));
tokenStatus_ = consumes<edm::DetSetVector<TotemVFATStatus>>(ps.getUntrackedParameter<edm::InputTag>("tagStatus"));
tokenFEDInfo_ = consumes<std::vector<TotemFEDInfo>>(ps.getUntrackedParameter<edm::InputTag>("tagFEDInfo"));
tokenDigi_ = consumes<edm::DetSetVector<CTPPSDiamondDigi>>(ps.getUntrackedParameter<edm::InputTag>("tagDigi"));
}
for (const auto& pset : ps.getParameter<std::vector<edm::ParameterSet>>("offsetsOOT")) {
runParameters_.emplace_back(
Expand Down
6 changes: 3 additions & 3 deletions DQM/CTPPS/plugins/CTPPSPixelDQMSource.cc
Expand Up @@ -164,9 +164,9 @@ using namespace edm;
CTPPSPixelDQMSource::CTPPSPixelDQMSource(const edm::ParameterSet &ps)
: verbosity(ps.getUntrackedParameter<unsigned int>("verbosity", 0)),
rpStatusWord(ps.getUntrackedParameter<unsigned int>("RPStatusWord", 0x8008)) {
tokenDigi = consumes<DetSetVector<CTPPSPixelDigi>>(ps.getParameter<edm::InputTag>("tagRPixDigi"));
tokenCluster = consumes<DetSetVector<CTPPSPixelCluster>>(ps.getParameter<edm::InputTag>("tagRPixCluster"));
tokenTrack = consumes<DetSetVector<CTPPSPixelLocalTrack>>(ps.getParameter<edm::InputTag>("tagRPixLTrack"));
tokenDigi = consumes<DetSetVector<CTPPSPixelDigi>>(ps.getUntrackedParameter<edm::InputTag>("tagRPixDigi"));
tokenCluster = consumes<DetSetVector<CTPPSPixelCluster>>(ps.getUntrackedParameter<edm::InputTag>("tagRPixCluster"));
tokenTrack = consumes<DetSetVector<CTPPSPixelLocalTrack>>(ps.getUntrackedParameter<edm::InputTag>("tagRPixLTrack"));
offlinePlots = ps.getUntrackedParameter<bool>("offlinePlots", true);
onlinePlots = ps.getUntrackedParameter<bool>("onlinePlots", true);

Expand Down
5 changes: 3 additions & 2 deletions DQM/CTPPS/plugins/DiamondSampicCalibrationDQMSource.cc
Expand Up @@ -174,8 +174,9 @@ DiamondSampicCalibrationDQMSource::ChannelPlots::ChannelPlots(DQMStore::IBooker

DiamondSampicCalibrationDQMSource::DiamondSampicCalibrationDQMSource(const edm::ParameterSet &ps)
: totemTimingDigiToken_(
consumes<edm::DetSetVector<TotemTimingDigi>>(ps.getParameter<edm::InputTag>("totemTimingDigiTag"))),
tokenRecHit_(consumes<edm::DetSetVector<TotemTimingRecHit>>(ps.getParameter<edm::InputTag>("tagRecHits"))),
consumes<edm::DetSetVector<TotemTimingDigi>>(ps.getUntrackedParameter<edm::InputTag>("totemTimingDigiTag"))),
tokenRecHit_(
consumes<edm::DetSetVector<TotemTimingRecHit>>(ps.getUntrackedParameter<edm::InputTag>("tagRecHits"))),
timingCalibrationToken_(esConsumes<edm::Transition::BeginRun>()),
geomEsToken_(esConsumes<edm::Transition::BeginRun>()),
verbosity_(ps.getUntrackedParameter<unsigned int>("verbosity", 0)),
Expand Down
13 changes: 8 additions & 5 deletions DQM/CTPPS/plugins/DiamondSampicDQMSource.cc
Expand Up @@ -381,11 +381,14 @@ DiamondSampicDQMSource::ChannelPlots::ChannelPlots(DQMStore::IBooker &ibooker, u
//----------------------------------------------------------------------------------------------------

DiamondSampicDQMSource::DiamondSampicDQMSource(const edm::ParameterSet &ps)
: tokenLocalTrack_(consumes<edm::DetSetVector<TotemRPLocalTrack>>(ps.getParameter<edm::InputTag>("tagLocalTrack"))),
tokenDigi_(consumes<edm::DetSetVector<TotemTimingDigi>>(ps.getParameter<edm::InputTag>("tagDigi"))),
tokenRecHit_(consumes<edm::DetSetVector<TotemTimingRecHit>>(ps.getParameter<edm::InputTag>("tagRecHits"))),
tokenTrack_(consumes<edm::DetSetVector<TotemTimingLocalTrack>>(ps.getParameter<edm::InputTag>("tagTracks"))),
tokenFEDInfo_(consumes<std::vector<TotemFEDInfo>>(ps.getParameter<edm::InputTag>("tagFEDInfo"))),
: tokenLocalTrack_(
consumes<edm::DetSetVector<TotemRPLocalTrack>>(ps.getUntrackedParameter<edm::InputTag>("tagLocalTrack"))),
tokenDigi_(consumes<edm::DetSetVector<TotemTimingDigi>>(ps.getUntrackedParameter<edm::InputTag>("tagDigi"))),
tokenRecHit_(
consumes<edm::DetSetVector<TotemTimingRecHit>>(ps.getUntrackedParameter<edm::InputTag>("tagRecHits"))),
tokenTrack_(
consumes<edm::DetSetVector<TotemTimingLocalTrack>>(ps.getUntrackedParameter<edm::InputTag>("tagTracks"))),
tokenFEDInfo_(consumes<std::vector<TotemFEDInfo>>(ps.getUntrackedParameter<edm::InputTag>("tagFEDInfo"))),
ctppsGeometryRunToken_(esConsumes<CTPPSGeometry, VeryForwardRealGeometryRecord, edm::Transition::BeginRun>()),
samplesForNoise_(ps.getUntrackedParameter<unsigned int>("samplesForNoise", 5)),
verbosity_(ps.getUntrackedParameter<unsigned int>("verbosity", 0)),
Expand Down
6 changes: 3 additions & 3 deletions DQM/CTPPS/plugins/ElasticPlotDQMSource.cc
Expand Up @@ -185,9 +185,9 @@ ElasticPlotDQMSource::PotPlots::PotPlots(DQMStore::IBooker &ibooker, unsigned in

ElasticPlotDQMSource::ElasticPlotDQMSource(const edm::ParameterSet &ps)
: verbosity(ps.getUntrackedParameter<unsigned int>("verbosity", 0)) {
tokenRecHit = consumes<edm::DetSetVector<TotemRPRecHit>>(ps.getParameter<edm::InputTag>("tagRecHit"));
tokenUVPattern = consumes<DetSetVector<TotemRPUVPattern>>(ps.getParameter<edm::InputTag>("tagUVPattern"));
tokenLocalTrack = consumes<DetSetVector<TotemRPLocalTrack>>(ps.getParameter<edm::InputTag>("tagLocalTrack"));
tokenRecHit = consumes<edm::DetSetVector<TotemRPRecHit>>(ps.getUntrackedParameter<edm::InputTag>("tagRecHit"));
tokenUVPattern = consumes<DetSetVector<TotemRPUVPattern>>(ps.getUntrackedParameter<edm::InputTag>("tagUVPattern"));
tokenLocalTrack = consumes<DetSetVector<TotemRPLocalTrack>>(ps.getUntrackedParameter<edm::InputTag>("tagLocalTrack"));
}

//----------------------------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion DQM/CTPPS/plugins/TotemDAQTriggerDQMSource.cc
Expand Up @@ -52,7 +52,7 @@ using namespace edm;

TotemDAQTriggerDQMSource::TotemDAQTriggerDQMSource(const edm::ParameterSet &ps)
: verbosity(ps.getUntrackedParameter<unsigned int>("verbosity", 0)) {
tokenFEDInfo = consumes<vector<TotemFEDInfo>>(ps.getParameter<edm::InputTag>("tagFEDInfo"));
tokenFEDInfo = consumes<vector<TotemFEDInfo>>(ps.getUntrackedParameter<edm::InputTag>("tagFEDInfo"));
}

//----------------------------------------------------------------------------------------------------
Expand Down
12 changes: 6 additions & 6 deletions DQM/CTPPS/plugins/TotemRPDQMSource.cc
Expand Up @@ -182,13 +182,13 @@ TotemRPDQMSource::TotemRPDQMSource(const edm::ParameterSet &ps)
geometryToken_(esConsumes())

{
tokenStatus = consumes<DetSetVector<TotemVFATStatus>>(ps.getParameter<edm::InputTag>("tagStatus"));
tokenStatus = consumes<DetSetVector<TotemVFATStatus>>(ps.getUntrackedParameter<edm::InputTag>("tagStatus"));

tokenDigi = consumes<DetSetVector<TotemRPDigi>>(ps.getParameter<edm::InputTag>("tagDigi"));
tokenCluster = consumes<edm::DetSetVector<TotemRPCluster>>(ps.getParameter<edm::InputTag>("tagCluster"));
tokenRecHit = consumes<edm::DetSetVector<TotemRPRecHit>>(ps.getParameter<edm::InputTag>("tagRecHit"));
tokenUVPattern = consumes<DetSetVector<TotemRPUVPattern>>(ps.getParameter<edm::InputTag>("tagUVPattern"));
tokenLocalTrack = consumes<DetSetVector<TotemRPLocalTrack>>(ps.getParameter<edm::InputTag>("tagLocalTrack"));
tokenDigi = consumes<DetSetVector<TotemRPDigi>>(ps.getUntrackedParameter<edm::InputTag>("tagDigi"));
tokenCluster = consumes<edm::DetSetVector<TotemRPCluster>>(ps.getUntrackedParameter<edm::InputTag>("tagCluster"));
tokenRecHit = consumes<edm::DetSetVector<TotemRPRecHit>>(ps.getUntrackedParameter<edm::InputTag>("tagRecHit"));
tokenUVPattern = consumes<DetSetVector<TotemRPUVPattern>>(ps.getUntrackedParameter<edm::InputTag>("tagUVPattern"));
tokenLocalTrack = consumes<DetSetVector<TotemRPLocalTrack>>(ps.getUntrackedParameter<edm::InputTag>("tagLocalTrack"));
}

//----------------------------------------------------------------------------------------------------
Expand Down
10 changes: 6 additions & 4 deletions DQM/CTPPS/plugins/TotemTimingDQMSource.cc
Expand Up @@ -404,12 +404,14 @@ TotemTimingDQMSource::ChannelPlots::ChannelPlots(DQMStore::IBooker &ibooker, uns
//----------------------------------------------------------------------------------------------------

TotemTimingDQMSource::TotemTimingDQMSource(const edm::ParameterSet &ps)
: tokenLocalTrack_(consumes<edm::DetSetVector<TotemRPLocalTrack>>(ps.getParameter<edm::InputTag>("tagLocalTrack"))),
tokenDigi_(consumes<edm::DetSetVector<TotemTimingDigi>>(ps.getParameter<edm::InputTag>("tagDigi"))),
tokenRecHit_(consumes<edm::DetSetVector<TotemTimingRecHit>>(ps.getParameter<edm::InputTag>("tagRecHits"))),
: tokenLocalTrack_(
consumes<edm::DetSetVector<TotemRPLocalTrack>>(ps.getUntrackedParameter<edm::InputTag>("tagLocalTrack"))),
tokenDigi_(consumes<edm::DetSetVector<TotemTimingDigi>>(ps.getUntrackedParameter<edm::InputTag>("tagDigi"))),
tokenRecHit_(
consumes<edm::DetSetVector<TotemTimingRecHit>>(ps.getUntrackedParameter<edm::InputTag>("tagRecHits"))),
// tokenTrack_(consumes<edm::DetSetVector<TotemTimingLocalTrack>>(
// ps.getParameter<edm::InputTag>("tagLocalTracks"))),
tokenFEDInfo_(consumes<std::vector<TotemFEDInfo>>(ps.getParameter<edm::InputTag>("tagFEDInfo"))),
tokenFEDInfo_(consumes<std::vector<TotemFEDInfo>>(ps.getUntrackedParameter<edm::InputTag>("tagFEDInfo"))),
geometryToken_(esConsumes()),
geometryTokenBeginRun_(esConsumes<edm::Transition::BeginRun>()),
minimumStripAngleForTomography_(ps.getParameter<double>("minimumStripAngleForTomography")),
Expand Down
4 changes: 2 additions & 2 deletions DQM/CTPPS/python/ctppsCommonDQMSource_cfi.py
Expand Up @@ -4,8 +4,8 @@

ctppsCommonDQMSource = DQMEDAnalyzer('CTPPSCommonDQMSource',
ctppsmetadata = cms.untracked.InputTag("onlineMetaDataDigis"),
tagLocalTrackLite = cms.InputTag('ctppsLocalTrackLiteProducer'),
tagRecoProtons = cms.InputTag("ctppsProtons", "multiRP"),
tagLocalTrackLite = cms.untracked.InputTag('ctppsLocalTrackLiteProducer'),
tagRecoProtons = cms.untracked.InputTag("ctppsProtons", "multiRP"),

makeProtonRecoPlots = cms.bool(True),

Expand Down
24 changes: 12 additions & 12 deletions DQM/CTPPS/python/ctppsDiamondDQMSource_cfi.py
Expand Up @@ -2,12 +2,12 @@

from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
ctppsDiamondDQMSource = DQMEDAnalyzer('CTPPSDiamondDQMSource',
tagStatus = cms.InputTag("ctppsDiamondRawToDigi", "TimingDiamond"),
tagDigi = cms.InputTag("ctppsDiamondRawToDigi", "TimingDiamond"),
tagFEDInfo = cms.InputTag("ctppsDiamondRawToDigi", "TimingDiamond"),
tagDiamondRecHits = cms.InputTag("ctppsDiamondRecHits"),
tagDiamondLocalTracks = cms.InputTag("ctppsDiamondLocalTracks"),
tagPixelLocalTracks = cms.InputTag("ctppsPixelLocalTracks"),
tagStatus = cms.untracked.InputTag("ctppsDiamondRawToDigi", "TimingDiamond"),
tagDigi = cms.untracked.InputTag("ctppsDiamondRawToDigi", "TimingDiamond"),
tagFEDInfo = cms.untracked.InputTag("ctppsDiamondRawToDigi", "TimingDiamond"),
tagDiamondRecHits = cms.untracked.InputTag("ctppsDiamondRecHits"),
tagDiamondLocalTracks = cms.untracked.InputTag("ctppsDiamondLocalTracks"),
tagPixelLocalTracks = cms.untracked.InputTag("ctppsPixelLocalTracks"),

excludeMultipleHits = cms.bool(True),
extractDigiInfo = cms.bool(True),
Expand Down Expand Up @@ -45,12 +45,12 @@
)

ctppsDiamondDQMOfflineSource = DQMEDAnalyzer('CTPPSDiamondDQMSource',
tagStatus = cms.InputTag("ctppsDiamondRawToDigi", "TimingDiamond"),
tagDigi = cms.InputTag("ctppsDiamondRawToDigi", "TimingDiamond"),
tagFEDInfo = cms.InputTag("ctppsDiamondRawToDigi", "TimingDiamond"),
tagDiamondRecHits = cms.InputTag("ctppsDiamondRecHits"),
tagDiamondLocalTracks = cms.InputTag("ctppsDiamondLocalTracks"),
tagPixelLocalTracks = cms.InputTag("ctppsPixelLocalTracks"),
tagStatus = cms.untracked.InputTag("ctppsDiamondRawToDigi", "TimingDiamond"),
tagDigi = cms.untracked.InputTag("ctppsDiamondRawToDigi", "TimingDiamond"),
tagFEDInfo = cms.untracked.InputTag("ctppsDiamondRawToDigi", "TimingDiamond"),
tagDiamondRecHits = cms.untracked.InputTag("ctppsDiamondRecHits"),
tagDiamondLocalTracks = cms.untracked.InputTag("ctppsDiamondLocalTracks"),
tagPixelLocalTracks = cms.untracked.InputTag("ctppsPixelLocalTracks"),

excludeMultipleHits = cms.bool(True),
extractDigiInfo = cms.bool(True),
Expand Down
14 changes: 7 additions & 7 deletions DQM/CTPPS/python/ctppsPixelDQMSource_cfi.py
Expand Up @@ -3,9 +3,9 @@
#ctppsPixelDQMSource = cms.EDAnalyzer("CTPPSPixelDQMSource",
from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
ctppsPixelDQMSource = DQMEDAnalyzer('CTPPSPixelDQMSource',
tagRPixDigi = cms.InputTag("ctppsPixelDigis", ""),
tagRPixCluster = cms.InputTag("ctppsPixelClusters", ""),
tagRPixLTrack = cms.InputTag("ctppsPixelLocalTracks", ""),
tagRPixDigi = cms.untracked.InputTag("ctppsPixelDigis", ""),
tagRPixCluster = cms.untracked.InputTag("ctppsPixelClusters", ""),
tagRPixLTrack = cms.untracked.InputTag("ctppsPixelLocalTracks", ""),
RPStatusWord = cms.untracked.uint32(0x8008), # rpots in readout:220_fr_hr; 210_fr_hr
verbosity = cms.untracked.uint32(0),
offlinePlots = cms.untracked.bool(False),
Expand All @@ -15,13 +15,13 @@
)

ctppsPixelDQMOfflineSource = DQMEDAnalyzer('CTPPSPixelDQMSource',
tagRPixDigi = cms.InputTag("ctppsPixelDigis", ""),
tagRPixCluster = cms.InputTag("ctppsPixelClusters", ""),
tagRPixLTrack = cms.InputTag("ctppsPixelLocalTracks", ""),
tagRPixDigi = cms.untracked.InputTag("ctppsPixelDigis", ""),
tagRPixCluster = cms.untracked.InputTag("ctppsPixelClusters", ""),
tagRPixLTrack = cms.untracked.InputTag("ctppsPixelLocalTracks", ""),
RPStatusWord = cms.untracked.uint32(0x8008), # rpots in readout: 220_fr_hr; 210_fr_hr
verbosity = cms.untracked.uint32(0),
offlinePlots = cms.untracked.bool(True),
onlinePlots = cms.untracked.bool(False),
turnOffPlanePlots = cms.untracked.vstring(), # add tags for planes to be shut off,
# e.g. "0_2_3_4" for arm 0 station 2 rp 3 plane 4
)
)
20 changes: 10 additions & 10 deletions DQM/CTPPS/python/diamondSampicDQMSource_cfi.py
Expand Up @@ -2,11 +2,11 @@

from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
diamondSampicDQMSourceOnline = DQMEDAnalyzer('DiamondSampicDQMSource',
tagDigi = cms.InputTag("totemTimingRawToDigi", "TotemTiming"),
tagFEDInfo = cms.InputTag("totemTimingRawToDigi", "TotemTiming"),
tagRecHits = cms.InputTag("totemTimingRecHits"),
tagTracks = cms.InputTag("diamondSampicLocalTracks"),
tagLocalTrack = cms.InputTag("totemRPLocalTrackFitter"),
tagDigi = cms.untracked.InputTag("totemTimingRawToDigi", "TotemTiming"),
tagFEDInfo = cms.untracked.InputTag("totemTimingRawToDigi", "TotemTiming"),
tagRecHits = cms.untracked.InputTag("totemTimingRecHits"),
tagTracks = cms.untracked.InputTag("diamondSampicLocalTracks"),
tagLocalTrack = cms.untracked.InputTag("totemRPLocalTrackFitter"),

samplesForNoise = cms.untracked.uint32(6),

Expand All @@ -15,11 +15,11 @@
)

diamondSampicDQMSourceOffline = DQMEDAnalyzer('DiamondSampicDQMSource',
tagDigi = cms.InputTag("totemTimingRawToDigi", "TotemTiming"),
tagFEDInfo = cms.InputTag("totemTimingRawToDigi", "TotemTiming"),
tagRecHits = cms.InputTag("totemTimingRecHits"),
tagTracks = cms.InputTag("diamondSampicLocalTracks"),
tagLocalTrack = cms.InputTag("totemRPLocalTrackFitter"),
tagDigi = cms.untracked.InputTag("totemTimingRawToDigi", "TotemTiming"),
tagFEDInfo = cms.untracked.InputTag("totemTimingRawToDigi", "TotemTiming"),
tagRecHits = cms.untracked.InputTag("totemTimingRecHits"),
tagTracks = cms.untracked.InputTag("diamondSampicLocalTracks"),
tagLocalTrack = cms.untracked.InputTag("totemRPLocalTrackFitter"),

samplesForNoise = cms.untracked.uint32(6),

Expand Down
6 changes: 3 additions & 3 deletions DQM/CTPPS/python/elasticPlotDQMSource_cfi.py
Expand Up @@ -2,9 +2,9 @@

from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
elasticPlotDQMSource = DQMEDAnalyzer("ElasticPlotDQMSource",
tagRecHit = cms.InputTag("totemRPRecHitProducer"),
tagUVPattern = cms.InputTag("totemRPUVPatternFinder"),
tagLocalTrack = cms.InputTag("totemRPLocalTrackFitter"),
tagRecHit = cms.untracked.InputTag("totemRPRecHitProducer"),
tagUVPattern = cms.untracked.InputTag("totemRPUVPatternFinder"),
tagLocalTrack = cms.untracked.InputTag("totemRPLocalTrackFitter"),

verbosity = cms.untracked.uint32(0),
)
2 changes: 1 addition & 1 deletion DQM/CTPPS/python/totemDAQTriggerDQMSource_cfi.py
Expand Up @@ -2,7 +2,7 @@

from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
totemDAQTriggerDQMSource = DQMEDAnalyzer('TotemDAQTriggerDQMSource',
tagFEDInfo = cms.InputTag("totemRPRawToDigi", "TrackingStrip"),
tagFEDInfo = cms.untracked.InputTag("totemRPRawToDigi", "TrackingStrip"),
tagTriggerCounters = cms.InputTag("totemTriggerRawToDigi"),

verbosity = cms.untracked.uint32(0)
Expand Down
10 changes: 5 additions & 5 deletions DQM/CTPPS/python/totemRPDQMSource_cfi.py
Expand Up @@ -3,11 +3,11 @@
from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
totemRPDQMSource = DQMEDAnalyzer('TotemRPDQMSource',
tagStatus = cms.InputTag("totemRPRawToDigi", "TrackingStrip"),
tagDigi = cms.InputTag("totemRPRawToDigi", "TrackingStrip"),
tagCluster = cms.InputTag("totemRPClusterProducer"),
tagRecHit = cms.InputTag("totemRPRecHitProducer"),
tagUVPattern = cms.InputTag("totemRPUVPatternFinder"),
tagLocalTrack = cms.InputTag("totemRPLocalTrackFitter"),
tagDigi = cms.untracked.InputTag("totemRPRawToDigi", "TrackingStrip"),
tagCluster = cms.untracked.InputTag("totemRPClusterProducer"),
tagRecHit = cms.untracked.InputTag("totemRPRecHitProducer"),
tagUVPattern = cms.untracked.InputTag("totemRPUVPatternFinder"),
tagLocalTrack = cms.untracked.InputTag("totemRPLocalTrackFitter"),

verbosity = cms.untracked.uint32(0),
)

0 comments on commit ca9319b

Please sign in to comment.