Skip to content

Commit

Permalink
Dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bachtis committed Dec 11, 2013
1 parent d383dcb commit fc7cba3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion DQM/DTMonitorModule/src/DTChamberEfficiency.cc
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,10 @@ DTChamberEfficiency::DTChamberEfficiency(const ParameterSet& pSet)
thedt4DSegments = pSet.getParameter<InputTag>("dt4DSegments");
thecscSegments = pSet.getParameter<InputTag>("cscSegments");

edm::ConsumesCollector iC = consumesCollector();

theMeasurementExtractor = new MuonDetLayerMeasurements(thedt4DSegments,thecscSegments,
labelRPCRecHits,true,false,false);
labelRPCRecHits,iC,true,false,false);

theNavigationType = pSet.getParameter<string>("NavigationType");

Expand Down
3 changes: 2 additions & 1 deletion DQMOffline/JetMET/src/BeamHaloAnalyzer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ BeamHaloAnalyzer::BeamHaloAnalyzer( const edm::ParameterSet& iConfig)
edm::ParameterSet serviceParameters = iConfig.getParameter<edm::ParameterSet>("ServiceParameters");
TheService = new MuonServiceProxy(serviceParameters);
edm::ParameterSet matchParameters = iConfig.getParameter<edm::ParameterSet>("MatchParameters");
TheMatcher = new MuonSegmentMatcher(matchParameters, TheService);
edm::ConsumesCollector iC = consumesCollector();
TheMatcher = new MuonSegmentMatcher(matchParameters, TheService,iC);

}

Expand Down
5 changes: 3 additions & 2 deletions DQMOffline/Muon/src/SegmentTrackAnalyzer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ SegmentTrackAnalyzer::SegmentTrackAnalyzer(const edm::ParameterSet& pSet) {

// SegmentTrackAssociatior Parameters
const ParameterSet SegmentsTrackAssociatorParameters = parameters.getParameter<ParameterSet>("SegmentsTrackAssociatorParameters");

theSegmentsAssociator = new SegmentsTrackAssociator(SegmentsTrackAssociatorParameters);

edm::ConsumesCollector iC = consumesCollector();
theSegmentsAssociator = new SegmentsTrackAssociator(SegmentsTrackAssociatorParameters,iC);


}
Expand Down

0 comments on commit fc7cba3

Please sign in to comment.