CMS 3D CMS Logo

DTRecSegment2DProducer.cc
Go to the documentation of this file.
1 
7 /* This Class Header */
9 
10 /* Collaborating Class Header */
15 using namespace edm;
16 
20 
26 
28 
29 /* C++ Headers */
30 #include <string>
31 using namespace std;
32 
33 /* ====================================================================== */
34 
37  : theAlgo{DTRecSegment2DAlgoFactory::get()->create(pset.getParameter<string>("Reco2DAlgoName"),
38  pset.getParameter<ParameterSet>("Reco2DAlgoConfig"))} {
39  // Set verbose output
40  debug = pset.getUntrackedParameter<bool>("debug");
41 
42  // the name of the 1D rec hits collection
43  recHits1DToken_ = consumes<DTRecHitCollection>(pset.getParameter<InputTag>("recHits1DLabel"));
44 
45  if (debug)
46  cout << "[DTRecSegment2DProducer] Constructor called" << endl;
47 
48  produces<DTRecSegment2DCollection>();
49 
50  // Get the concrete reconstruction algo from the factory
51  if (debug)
52  cout << "the Reco2D AlgoName is " << pset.getParameter<string>("Reco2DAlgoName") << endl;
53 }
54 
57  if (debug)
58  cout << "[DTRecSegment2DProducer] Destructor called" << endl;
59 }
60 
61 /* Operations */
63  if (debug)
64  cout << "[DTRecSegment2DProducer] produce called" << endl;
65  // Get the DT Geometry
66  ESHandle<DTGeometry> dtGeom;
67  setup.get<MuonGeometryRecord>().get(dtGeom);
68 
69  theAlgo->setES(setup);
70 
71  // Get the 1D rechits from the event
73  event.getByToken(recHits1DToken_, allHits);
74 
75  // Create the pointer to the collection which will store the rechits
76  auto segments = std::make_unique<DTRecSegment2DCollection>();
77 
78  // Iterate through all hit collections ordered by LayerId
80  DTSuperLayerId oldSlId;
81  for (dtLayerIt = allHits->id_begin(); dtLayerIt != allHits->id_end(); ++dtLayerIt) {
82  // The layerId
83  DTLayerId layerId = (*dtLayerIt);
84  const DTSuperLayerId SLId = layerId.superlayerId();
85  if (SLId == oldSlId)
86  continue; // I'm on the same SL as before
87  oldSlId = SLId;
88 
89  if (debug)
90  cout << "Reconstructing the 2D segments in " << SLId << endl;
91 
92  const DTSuperLayer* sl = dtGeom->superLayer(SLId);
93 
94  // Get all the rec hit in the same superLayer in which layerId relies
96 
97  // Fill the vector with the 1D RecHit
98  vector<DTRecHit1DPair> pairs(range.first, range.second);
99 
100  if (debug)
101  cout << "Number of 1D-RecHit pairs " << pairs.size() << endl;
102 
103  if (debug)
104  cout << "Start the 2D-segments Reco " << endl;
105  OwnVector<DTSLRecSegment2D> segs = theAlgo->reconstruct(sl, pairs);
106  if (debug)
107  cout << "Number of Reconstructed segments: " << segs.size() << endl;
108 
109  if (!segs.empty())
110  segments->put(SLId, segs.begin(), segs.end());
111  }
112  event.put(std::move(segments));
113 }
DTRecSegment2DCollection.h
DTSuperLayerId
Definition: DTSuperLayerId.h:12
FastTimerService_cff.range
range
Definition: FastTimerService_cff.py:34
ESHandle.h
edm::OwnVector::end
iterator end()
Definition: OwnVector.h:285
DTRecSegment2DProducer::~DTRecSegment2DProducer
~DTRecSegment2DProducer() override
Destructor.
Definition: DTRecSegment2DProducer.cc:56
DTRecHit1D.h
edm
HLT enums.
Definition: AlignableModifier.h:19
gather_cfg.cout
cout
Definition: gather_cfg.py:144
DTSuperLayer
Definition: DTSuperLayer.h:24
edm::Handle< DTRecHitCollection >
edm::RangeMap::id_iterator
identifier iterator
Definition: RangeMap.h:130
singleTopDQM_cfi.setup
setup
Definition: singleTopDQM_cfi.py:37
DTRecSegment2DProducer.h
edm::OwnVector::empty
bool empty() const
Definition: OwnVector.h:305
debug
#define debug
Definition: HDRShower.cc:19
DTRecSegment2DProducer::recHits1DToken_
edm::EDGetTokenT< DTRecHitCollection > recHits1DToken_
Definition: DTRecSegment2DProducer.h:53
edm::ESHandle< DTGeometry >
DTLayerId
Definition: DTLayerId.h:12
DTLayer.h
DTGeometry.h
DTRecSegment2DAlgoFactory.h
edm::ParameterSet
Definition: ParameterSet.h:47
DTRangeMapAccessor::layersBySuperLayer
static std::pair< DTLayerId, DTSuperLayerIdComparator > layersBySuperLayer(DTSuperLayerId slId)
Access by SL objects written into a RangeMap by layer.
Definition: DTRangeMapAccessor.cc:15
Event.h
DTRecSegment2DProducer::debug
bool debug
Definition: DTRecSegment2DProducer.h:47
DTRangeMapAccessor.h
DTRecSegment2DProducer::DTRecSegment2DProducer
DTRecSegment2DProducer(const edm::ParameterSet &)
Constructor.
Definition: DTRecSegment2DProducer.cc:36
DTRecHit1DPair.h
edm::EventSetup
Definition: EventSetup.h:57
get
#define get
InputTag.h
edm::RangeMap::range
std::pair< const_iterator, const_iterator > range
iterator range
Definition: RangeMap.h:50
eostools.move
def move(src, dest)
Definition: eostools.py:511
std
Definition: JetResolutionObject.h:76
DTRecSegment2DProducer::produce
void produce(edm::Event &event, const edm::EventSetup &setup) override
The method which produces the 2D-segments.
Definition: DTRecSegment2DProducer.cc:62
DTLayerId::superlayerId
DTSuperLayerId superlayerId() const
Return the corresponding SuperLayerId.
Definition: DTLayerId.h:45
DTSLRecSegment2D.h
DTRecSegment2DProducer::theAlgo
std::unique_ptr< DTRecSegment2DBaseAlgo > theAlgo
Definition: DTRecSegment2DProducer.h:50
DTGeometry::superLayer
const DTSuperLayer * superLayer(const DTSuperLayerId &id) const
Return a DTSuperLayer given its id.
Definition: DTGeometry.cc:92
ParameterSet.h
edm::OwnVector::begin
iterator begin()
Definition: OwnVector.h:280
MuonGeometryRecord.h
event
Definition: event.py:1
edm::Event
Definition: Event.h:73
edm::OwnVector::size
size_type size() const
Definition: OwnVector.h:300
MuonGeometryRecord
Definition: MuonGeometryRecord.h:34
edm::InputTag
Definition: InputTag.h:15
muonDTDigis_cfi.pset
pset
Definition: muonDTDigis_cfi.py:27
edm::OwnVector
Definition: OwnVector.h:24