From 0707979a7486be85fe12a3e72666c212deb5ea3b Mon Sep 17 00:00:00 2001 From: Ivan Date: Sun, 7 Oct 2018 12:15:16 +0200 Subject: [PATCH] implementatin with all features --- .../RawDataCollector/interface/RawDataMapperByLabel.h | 1 - .../RawDataCollector/python/rawDataMapperByLabel_cfi.py | 6 ------ 2 files changed, 7 deletions(-) diff --git a/EventFilter/RawDataCollector/interface/RawDataMapperByLabel.h b/EventFilter/RawDataCollector/interface/RawDataMapperByLabel.h index 8303258abd2d2..1ec16af6871ed 100644 --- a/EventFilter/RawDataCollector/interface/RawDataMapperByLabel.h +++ b/EventFilter/RawDataCollector/interface/RawDataMapperByLabel.h @@ -30,7 +30,6 @@ class RawDataMapperByLabel: public edm::stream::EDProducer<> { std::vector inputTags_ ; std::vector > inputTokens_; - int verbose_ ; bool firstEvent_; edm::InputTag filledCollectionName_; diff --git a/EventFilter/RawDataCollector/python/rawDataMapperByLabel_cfi.py b/EventFilter/RawDataCollector/python/rawDataMapperByLabel_cfi.py index 6ab8034b0c3bf..ecde15276f88b 100644 --- a/EventFilter/RawDataCollector/python/rawDataMapperByLabel_cfi.py +++ b/EventFilter/RawDataCollector/python/rawDataMapperByLabel_cfi.py @@ -1,15 +1,9 @@ import FWCore.ParameterSet.Config as cms rawDataCollector = cms.EDProducer("RawDataMapperByLabel", - verbose = cms.untracked.int32(1), # 0 = quiet, 1 = collection list, 2 = FED list RawCollectionList = cms.VInputTag( cms.InputTag('rawDataReducedFormat'), cms.InputTag('rawDataRepacker'), cms.InputTag('rawDataCollector')), MainCollection= cms.InputTag('rawDataCollector') ) -# -# Make changes if using the Stage 1 trigger -# -from Configuration.Eras.Modifier_stage1L1Trigger_cff import stage1L1Trigger -stage1L1Trigger.toModify( rawDataCollector.RawCollectionList, func = lambda list: list.append(cms.InputTag("l1tDigiToRaw")) )