Skip to content

Commit

Permalink
Continued ME0 investigation
Browse files Browse the repository at this point in the history
  • Loading branch information
dnash86 committed Nov 5, 2015
1 parent cd3924f commit cc3ee97
Show file tree
Hide file tree
Showing 39 changed files with 659 additions and 1,351 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
dt4DSegments = cms.InputTag("dt4DSegments"),
theRPCRecHits = cms.InputTag("dummy"),
thegemRecHits = cms.InputTag("dummy"),
theME0RecHits = cms.InputTag("dummy"),
cscSegments = cms.InputTag("dummy"),
RPCLayers = cms.bool(False),
NavigationType = cms.string("Direct")
Expand Down
1 change: 1 addition & 0 deletions DQM/DTMonitorModule/python/dtChamberEfficiency_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
dt4DSegments = cms.InputTag("dt4DSegments"),
theRPCRecHits = cms.InputTag("dummy"),
thegemRecHits = cms.InputTag("dummy"),
theME0RecHits = cms.InputTag("dummy"),
cscSegments = cms.InputTag("dummy"),
RPCLayers = cms.bool(False),
NavigationType = cms.string("Standard")
Expand Down
2 changes: 1 addition & 1 deletion DQM/DTMonitorModule/src/DTChamberEfficiency.cc
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ DTChamberEfficiency::DTChamberEfficiency(const ParameterSet& pSet)
edm::ConsumesCollector iC = consumesCollector();

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

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

Expand Down
2 changes: 2 additions & 0 deletions DQM/DTMonitorModule/src/DTChamberEfficiency.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const
edm::EDGetTokenT<reco::TrackCollection> theTracksToken_;

edm::InputTag labelRPCRecHits;
edm::InputTag labelGEMRecHits;
edm::InputTag labelME0RecHits;
edm::InputTag thedt4DSegments;
edm::InputTag thecscSegments;
edm::InputTag labelGEMHits;
Expand Down
3 changes: 2 additions & 1 deletion RecoLocalMuon/GEMRecHit/python/me0LocalReco_cff.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import FWCore.ParameterSet.Config as cms

from RecoLocalMuon.GEMRecHit.me0RecHits_cfi import *
from RecoLocalMuon.GEMSegment.me0Segments_cfi import *
#from RecoLocalMuon.GEMSegment.me0Segments_cfi import *
from RecoLocalMuon.GEMRecHit.me0Segments_cfi import *

me0LocalReco = cms.Sequence(me0RecHits*me0Segments)
Loading

0 comments on commit cc3ee97

Please sign in to comment.