Skip to content

Commit

Permalink
Merge pull request #16739 from jfernan2/dropDDU_fromDTDQMtrigger_90X
Browse files Browse the repository at this point in the history
Changes to disable DDU trigger plots in DT DQM Online Trigger checks …
  • Loading branch information
cmsbuild committed Feb 1, 2017
2 parents b38647c + d181328 commit f685d5c
Show file tree
Hide file tree
Showing 17 changed files with 60 additions and 77 deletions.
Expand Up @@ -13,4 +13,6 @@
folderRoot = cms.untracked.string('')
)

from Configuration.Eras.Modifier_run2_25ns_specific_cff import run2_25ns_specific
run2_25ns_specific.toModify( triggerEfficiencyTest,hwSources = cms.untracked.vstring('TM') )

4 changes: 3 additions & 1 deletion DQM/DTMonitorClient/python/dtLocalTriggerTest_cfi.py
Expand Up @@ -6,7 +6,7 @@
# run in online environment
runOnline = cms.untracked.bool(True),
# kind of trigger data processed by DTLocalTriggerTask
hwSources = cms.untracked.vstring('TM','DDU','COM'),
hwSources = cms.untracked.vstring('TM','DDU'),
# false if DTLocalTriggerTask used LTC digis
localrun = cms.untracked.bool(True),
# root folder for booking of histograms
Expand All @@ -25,4 +25,6 @@

)

from Configuration.Eras.Modifier_run2_25ns_specific_cff import run2_25ns_specific
run2_25ns_specific.toModify( triggerTest,hwSources = cms.untracked.vstring('TM') )

2 changes: 1 addition & 1 deletion DQM/DTMonitorClient/python/dtSegmentAnalysisTest_cfi.py
Expand Up @@ -2,7 +2,7 @@

segmentTest = cms.EDAnalyzer("DTSegmentAnalysisTest",
detailedAnalysis = cms.untracked.bool(False),
#Perform basic diagnostic in endLumi/EndRun
#Perform basic diagnostic in endLumi/EndRun
runOnline = cms.untracked.bool(True),
#Names of the quality tests: they must match those specified in "qtList"
chi2TestName = cms.untracked.string('chi2InRange'),
Expand Down
2 changes: 2 additions & 0 deletions DQM/DTMonitorClient/python/dtTriggerEfficiencyTest_cfi.py
Expand Up @@ -15,4 +15,6 @@
detailedAnalysis = cms.untracked.bool(False)
)

from Configuration.Eras.Modifier_run2_25ns_specific_cff import run2_25ns_specific
run2_25ns_specific.toModify( triggerEffTest,hwSources = cms.untracked.vstring('TM') )

2 changes: 1 addition & 1 deletion DQM/DTMonitorClient/src/DTLocalTriggerSynchTest.cc
Expand Up @@ -135,7 +135,7 @@ void DTLocalTriggerSynchTest::runClientDiagnostic(DQMStore::IBooker & ibooker, D
MonitorElement* ratioH = innerME.find(fullName(ratioHistoTag))->second;
makeRatioME(numH,denH,ratioH);
try {
//Need our own copy to avoid threading problems
//Need our own copy to avoid threading problems
TF1 mypol8("mypol8","pol8");
getHisto<TH1F>(ratioH)->Fit(&mypol8,"CQO");
} catch (cms::Exception& iException) {
Expand Down
21 changes: 0 additions & 21 deletions DQM/DTMonitorClient/src/DTLocalTriggerTest.cc
Expand Up @@ -82,15 +82,6 @@ void DTLocalTriggerTest::Bookings(DQMStore::IBooker & ibooker, DQMStore::IGetter
bookWheelHistos(ibooker,wh,"CorrFractionPhi");
bookWheelHistos(ibooker,wh,"2ndFractionPhi");
bookWheelHistos(ibooker,wh,"TriggerInclusivePhi");
bookWheelHistos(ibooker,wh,"CorrectBXTheta");
// Changed after TM implementation, now we have always Theta information
// Changed 11/10/2916 M.C Fouz
/*
if (hwSource=="DDU") {
bookWheelHistos(ibooker,wh,"HFractionTheta");
}
*/
bookWheelHistos(ibooker,wh,"HFractionTheta");
}
}
}
Expand Down Expand Up @@ -197,25 +188,14 @@ void DTLocalTriggerTest::runClientDiagnostic(DQMStore::IBooker & ibooker, DQMSto
}
}
else {
// Changed by M.C.Fouz (11/10/2016)
// Perform TM/DDU common plot analysis (Phi ones)
// This was changed for DQM after TM IN but, in the Modules Source part, they are not defined as *_In
// and the histograms are not being filled, renamed with the same names as the modules
/*
TH2F * BXvsQual = getHisto<TH2F>(igetter.get(getMEName("BXvsQual_In","LocalTriggerPhiIn", chId)));
TH1F * BestQual = getHisto<TH1F>(igetter.get(getMEName("BestQual_In","LocalTriggerPhiIn", chId)));
TH2F * Flag1stvsQual = getHisto<TH2F>(igetter.get(getMEName("Flag1stvsQual_In","LocalTriggerPhiIn", chId)));
*/
TH2F * BXvsQual = getHisto<TH2F>(igetter.get(getMEName("BXvsQual","LocalTriggerPhiIn", chId)));
TH1F * BestQual = getHisto<TH1F>(igetter.get(getMEName("BestQual","LocalTriggerPhiIn", chId)));
TH2F * Flag1stvsQual = getHisto<TH2F>(igetter.get(getMEName("Flag1stvsQual","LocalTriggerPhiIn", chId)));
if (BXvsQual && Flag1stvsQual && BestQual) {

int corrSummary = 1;
int secondSummary = 1;

if (BestQual->GetEntries()>1) {

TH1D* BXHH = BXvsQual->ProjectionY("",6,7,"");
TH1D* Flag1st = Flag1stvsQual->ProjectionY();
int BXOK_bin = BXHH->GetEntries()>=1 ? BXHH->GetMaximumBin() : 51;
Expand Down Expand Up @@ -287,7 +267,6 @@ void DTLocalTriggerTest::runClientDiagnostic(DQMStore::IBooker & ibooker, DQMSto
innerME->find(fullName("CorrFractionPhi"))->second->setBinContent(sect,stat,corrFrac);
innerME->find(fullName("TriggerInclusivePhi"))->second->setBinContent(sect,stat,besttrigs);
innerME->find(fullName("2ndFractionPhi"))->second->setBinContent(sect,stat,secondFrac);

}

whME[wh].find(fullName("CorrFractionSummary"))->second->setBinContent(sect,stat,corrSummary);
Expand Down
2 changes: 1 addition & 1 deletion DQM/DTMonitorClient/src/DTResolutionTest.cc
Expand Up @@ -245,7 +245,7 @@ DTResolutionTest::~DTResolutionTest(){
TProfile* prof = res_histo_2D_root->ProfileX();
prof->GetXaxis()->SetRangeUser(0,2);
//prof->Fit("pol1","Q0");
//need our own copy to avoid threading problems
//need our own copy to avoid threading problems
TF1 fitting("mypol1","pol1");
try {
prof->Fit(&fitting,"Q0");
Expand Down
2 changes: 2 additions & 0 deletions DQM/DTMonitorModule/python/dtTriggerBaseTask_cfi.py
Expand Up @@ -22,4 +22,6 @@
maxBXTM = cms.untracked.int32(2)
)

from Configuration.Eras.Modifier_run2_25ns_specific_cff import run2_25ns_specific
run2_25ns_specific.toModify( dtTriggerBaseMonitor, processDDU = cms.untracked.bool(False))

8 changes: 7 additions & 1 deletion DQM/DTMonitorModule/python/dtTriggerEfficiencyTask_cfi.py
Expand Up @@ -8,6 +8,7 @@

# labels of DDU/TM data and 4D segments
inputTagTM = cms.untracked.InputTag('dttfDigis'),
# inputTagTM = cms.untracked.InputTag('dttfDigis'),
inputTagDDU = cms.untracked.InputTag('muonDTDigis'),
inputTagSEG = cms.untracked.InputTag('dt4DSegments'),
inputTagGMT = cms.untracked.InputTag('gtDigis'),
Expand All @@ -16,10 +17,15 @@
minBXDDU = cms.untracked.int32(7), # min BX for DDU eff computation
maxBXDDU = cms.untracked.int32(15), # max BX for DDU eff computation

checkRPCtriggers = cms.untracked.bool(True),
nMinHitsPhi = cms.untracked.int32(5),
phiAccRange = cms.untracked.double(30.),

detailedAnalysis = cms.untracked.bool(False), #if true enables detailed analysis plots
)


#
# Modify for running in run 2 2016 data
#
from Configuration.Eras.Modifier_run2_25ns_specific_cff import run2_25ns_specific
run2_25ns_specific.toModify( dtTriggerEfficiencyMonitor, checkRPCtriggers = cms.untracked.bool(False),processDDU = cms.untracked.bool(False))
2 changes: 1 addition & 1 deletion DQM/DTMonitorModule/src/DTEfficiencyTask.cc
Expand Up @@ -250,7 +250,7 @@ void DTEfficiencyTask::analyze(const edm::Event& event, const edm::EventSetup& s
<< " hits, skipping" << endl; // FIXME: info output
continue;
}
copy(zRecHits.begin(), zRecHits.end(), back_inserter(recHits1D));
copy(zRecHits.begin(), zRecHits.end(), back_inserter(recHits1D));
}

// Skip the segment if it has more than 1 hit on the same layer
Expand Down
3 changes: 1 addition & 2 deletions DQM/DTMonitorModule/src/DTLocalTriggerBaseTask.cc
Expand Up @@ -119,7 +119,7 @@ void DTLocalTriggerBaseTask::bookHistograms(DQMStore::IBooker & ibooker, edm::Ru
bookHistos(ibooker, DTChamberId(wh,stat,sect));
}
}
bookHistos(ibooker, wh);
if (processDDU) bookHistos(ibooker, wh);
}
}

Expand Down Expand Up @@ -401,7 +401,6 @@ void DTLocalTriggerBaseTask::runTMAnalysis( std::vector<L1MuDTChambPhDigi> const
int qual = iph->code();
int is1st = iph->Ts2Tag() ? 1 : 0;
int bx = iph->bxNum() - is1st;

if (qual <0 || qual>6) continue; // Check that quality is in a valid range

DTChamberId dtChId(wh,st,sec);
Expand Down
18 changes: 9 additions & 9 deletions DQM/DTMonitorModule/src/DTLocalTriggerTask.cc
Expand Up @@ -140,13 +140,13 @@ void DTLocalTriggerTask::bookHistograms(DQMStore::IBooker & ibooker, edm::Run co
DTChamberId dtChId(wh,stat,sect);
if (parameters.getUntrackedParameter<bool>("process_tm", true)){ // TM data

bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","TM_BXvsQual"+(*trigSrcIt));
bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","TM_BXvsQual_In"+(*trigSrcIt));
if (detailedAnalysis) {
bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","TM_QualvsPhirad"+(*trigSrcIt));
bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","TM_QualvsPhibend"+(*trigSrcIt));
bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","TM_QualvsPhirad_In"+(*trigSrcIt));
bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","TM_QualvsPhibend_In"+(*trigSrcIt));
}
bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","TM_Flag1stvsQual"+(*trigSrcIt));
bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","TM_BestQual"+(*trigSrcIt));
bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","TM_Flag1stvsQual_In"+(*trigSrcIt));
bookHistos(ibooker, dtChId,"LocalTriggerPhiIn","TM_BestQual_In"+(*trigSrcIt));
if (stat!=4 && doTMTheta){
bookHistos(ibooker, dtChId,"LocalTriggerTheta","TM_PositionvsBX"+(*trigSrcIt));
bookHistos(ibooker, dtChId,"LocalTriggerTheta","TM_QualityvsBX"+(*trigSrcIt));
Expand Down Expand Up @@ -559,11 +559,11 @@ void DTLocalTriggerTask::runTMAnalysis(std::vector<L1MuDTChambPhDigi> const* phT
innerME.find("TM_QualvsPhirad"+trigsrc)->second->Fill(x,phcode); // SM Qual vs radial angle Phi view
}
else {
innerME.find("TM_BXvsQual"+trigsrc)->second->Fill(phcode,phbx-phi1st); // SM BX vs Qual Phi view (1st tracks)
innerME.find("TM_Flag1stvsQual"+trigsrc)->second->Fill(phcode,phi1st); // SM Qual 1st/2nd track flag Phi view
innerME.find("TM_BXvsQual_In"+trigsrc)->second->Fill(phcode,phbx-phi1st); // SM BX vs Qual Phi view (1st tracks)
innerME.find("TM_Flag1stvsQual_In"+trigsrc)->second->Fill(phcode,phi1st); // SM Qual 1st/2nd track flag Phi view
if (detailedAnalysis) {
innerME.find("TM_QualvsPhirad"+trigsrc)->second->Fill(x,phcode); // SM Qual vs radial angle Phi view
innerME.find("TM_QualvsPhibend"+trigsrc)->second->Fill(angle,phcode); // SM Qual vs bending Phi view
innerME.find("TM_QualvsPhirad_In"+trigsrc)->second->Fill(x,phcode); // SM Qual vs radial angle Phi view
innerME.find("TM_QualvsPhibend_In"+trigsrc)->second->Fill(angle,phcode); // SM Qual vs bending Phi view
}
}

Expand Down
4 changes: 2 additions & 2 deletions DQM/DTMonitorModule/src/DTResolutionAnalysisTask.cc
Expand Up @@ -158,7 +158,7 @@ void DTResolutionAnalysisTask::analyze(const edm::Event& event, const edm::Event
if(phiRecHits.size() < thePhiHitsCut) {
continue;
}
copy(phiRecHits.begin(), phiRecHits.end(), back_inserter(recHits1D_S3));
copy(phiRecHits.begin(), phiRecHits.end(), back_inserter(recHits1D_S3));
} else {

}
Expand All @@ -170,7 +170,7 @@ void DTResolutionAnalysisTask::analyze(const edm::Event& event, const edm::Event

continue;
}
copy(zRecHits.begin(), zRecHits.end(), back_inserter(recHits1D_S3));
copy(zRecHits.begin(), zRecHits.end(), back_inserter(recHits1D_S3));
}

// Loop over 1D RecHit inside 4D segment
Expand Down
17 changes: 4 additions & 13 deletions DQM/DTMonitorModule/src/DTTriggerEfficiencyTask.cc
Expand Up @@ -64,6 +64,7 @@ DTTriggerEfficiencyTask::DTTriggerEfficiencyTask(const edm::ParameterSet& ps) :
minBXDDU = parameters.getUntrackedParameter<int>("minBXDDU");
maxBXDDU = parameters.getUntrackedParameter<int>("maxBXDDU");

checkRPCtriggers = parameters.getUntrackedParameter<bool>("checkRPCtriggers");
nMinHitsPhi = parameters.getUntrackedParameter<int>("nMinHitsPhi");
phiAccRange = parameters.getUntrackedParameter<double>("phiAccRange");

Expand Down Expand Up @@ -94,7 +95,6 @@ void DTTriggerEfficiencyTask::bookHistograms(DQMStore::IBooker & ibooker,
LogTrace ("DTDQM|DTMonitorModule|DTTriggerEfficiencyTask") << "[DTTriggerEfficiencyTask]: bookHistograms" << endl;

nevents = 0;

for (int wh=-2;wh<=2;++wh){
vector<string>::const_iterator tagIt = processTags.begin();
vector<string>::const_iterator tagEnd = processTags.end();
Expand Down Expand Up @@ -122,11 +122,11 @@ void DTTriggerEfficiencyTask::analyze(const edm::Event& e, const edm::EventSetup

nevents++;

if (!hasRPCTriggers(e)) { return; }

if (checkRPCtriggers){ //For pre-2016 Era compatibility
if (!hasRPCTriggers(e)) { return; }
}
map<DTChamberId,const L1MuDTChambPhDigi*> phBestTM;
map<DTChamberId,const DTLocalTrigger*> phBestDDU;

// Getting best TM Stuff
edm::Handle<L1MuDTChambPhContainer> l1DTTPGPh;
e.getByToken(tm_Token_, l1DTTPGPh);
Expand Down Expand Up @@ -222,7 +222,6 @@ void DTTriggerEfficiencyTask::analyze(const edm::Event& e, const edm::EventSetup
// Plot filling
vector<const DTRecSegment4D*>::const_iterator btrack;
for ( btrack = best4DSegments.begin(); btrack != best4DSegments.end(); ++btrack ){

int wheel = (*btrack)->chamberId().wheel();
int station = (*btrack)->chamberId().station();
int scsector = 0;
Expand All @@ -235,16 +234,12 @@ void DTTriggerEfficiencyTask::analyze(const edm::Event& e, const edm::EventSetup
map<string, MonitorElement*> &innerWhME = wheelHistos[wheel];

if (fabs(xdir)<phiAccRange && nHitsPhi>=nMinHitsPhi){

vector<string>::const_iterator tagIt = processTags.begin();
vector<string>::const_iterator tagEnd = processTags.end();

for (; tagIt!=tagEnd; ++tagIt) {

int qual = (*tagIt) == "TM" ?
phBestTM.find(dtChId) != phBestTM.end() ? phBestTM[dtChId]->code() : -1 :
phBestDDU.find(dtChId) != phBestDDU.end() ? phBestDDU[dtChId]->quality() : -1;

innerWhME.find((*tagIt) + "_TrigEffDenum")->second->Fill(scsector,station);
if ( qual>=0 && qual<7 ) {
innerWhME.find((*tagIt) + "_TrigEffNum")->second->Fill(scsector,station);
Expand Down Expand Up @@ -395,7 +390,3 @@ void DTTriggerEfficiencyTask::bookWheelHistos(DQMStore::IBooker& ibooker,int whe
}


// Local Variables:
// show-trailing-whitespace: t
// truncate-lines: t
// End:
2 changes: 1 addition & 1 deletion DQM/DTMonitorModule/src/DTTriggerEfficiencyTask.h
Expand Up @@ -83,7 +83,7 @@ class DTTriggerEfficiencyTask: public DQMEDAnalyzer{

std::string SegmArbitration;

bool processTM, processDDU, detailedPlots;
bool processTM, processDDU, detailedPlots, checkRPCtriggers;
std::vector<std::string> processTags;
int minBXDDU, maxBXDDU;

Expand Down
42 changes: 21 additions & 21 deletions DQM/DTMonitorModule/test/DTkFactValidation_2_DQM_TEMPL_cfg.py
Expand Up @@ -16,27 +16,27 @@
process.source = cms.Source("PoolSource",
processingMode = cms.untracked.string("RunsLumisAndEvents"),
fileNames = cms.untracked.vstring(
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_1.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_10.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_11.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_12.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_13.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_14.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_15.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_16.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_17.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_18.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_2.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_20.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_21.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_22.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_3.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_4.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_5.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_6.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_7.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_8.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_9.root'
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_1.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_10.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_11.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_12.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_13.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_14.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_15.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_16.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_17.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_18.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_2.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_20.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_21.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_22.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_3.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_4.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_5.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_6.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_7.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_8.root',
'file:/afs/cern.ch/cms/CAF/CMSALCA/ALCA_MUONCALIB/DTCALIB/LHC/Temp/ttrig/Run121475/Ttrig/Validation/crab_0_091123_221340/res/DQM_9.root'


)
Expand Down
4 changes: 2 additions & 2 deletions EventFilter/DTRawToDigi/python/dtunpackerDDUGlobal_cfi.py
Expand Up @@ -14,11 +14,11 @@
rosParameters = cms.PSet(
writeSC = cms.untracked.bool(True),
readingDDU = cms.untracked.bool(True),
performDataIntegrityMonitor = cms.untracked.bool(False),
performDataIntegrityMonitor = cms.untracked.bool(True),
readDDUIDfromDDU = cms.untracked.bool(True),
debug = cms.untracked.bool(False),
localDAQ = cms.untracked.bool(False)
),
localDAQ = cms.untracked.bool(False),
performDataIntegrityMonitor = cms.untracked.bool(False)
performDataIntegrityMonitor = cms.untracked.bool(True)
)

0 comments on commit f685d5c

Please sign in to comment.