CMS 3D CMS Logo

RPCRecHitProducer.cc
Go to the documentation of this file.
1 
6 #include "RPCRecHitProducer.h"
7 
9 
15 
18 
22 
23 #include <string>
24 #include <fstream>
25 
26 using namespace edm;
27 using namespace std;
28 
30  : theRPCDigiLabel(consumes<RPCDigiCollection>(config.getParameter<InputTag>("rpcDigiLabel"))),
31  // Get the concrete reconstruction algo from the factory
32  theAlgo{RPCRecHitAlgoFactory::get()->create(config.getParameter<string>("recAlgo"),
33  config.getParameter<ParameterSet>("recAlgoConfig"))},
34  maskSource_(MaskSource::EventSetup),
35  deadSource_(MaskSource::EventSetup) {
36  // Set verbose output
37  produces<RPCRecHitCollection>();
38 
39  // Get masked- and dead-strip information
40  theRPCMaskedStripsObj = std::make_unique<RPCMaskedStrips>();
41  theRPCDeadStripsObj = std::make_unique<RPCDeadStrips>();
42 
43  const string maskSource = config.getParameter<std::string>("maskSource");
44  if (maskSource == "File") {
45  maskSource_ = MaskSource::File;
46  edm::FileInPath fp = config.getParameter<edm::FileInPath>("maskvecfile");
47  std::ifstream inputFile(fp.fullPath().c_str(), std::ios::in);
48  if (!inputFile) {
49  std::cerr << "Masked Strips File cannot not be opened" << std::endl;
50  exit(1);
51  }
52  while (inputFile.good()) {
54  inputFile >> Item.rawId >> Item.strip;
55  if (inputFile.good())
56  MaskVec.push_back(Item);
57  }
58  inputFile.close();
59  }
60 
61  const string deadSource = config.getParameter<std::string>("deadSource");
62  if (deadSource == "File") {
63  deadSource_ = MaskSource::File;
64  edm::FileInPath fp = config.getParameter<edm::FileInPath>("deadvecfile");
65  std::ifstream inputFile(fp.fullPath().c_str(), std::ios::in);
66  if (!inputFile) {
67  std::cerr << "Dead Strips File cannot not be opened" << std::endl;
68  exit(1);
69  }
70  while (inputFile.good()) {
72  inputFile >> Item.rawId >> Item.strip;
73  if (inputFile.good())
74  DeadVec.push_back(Item);
75  }
76  inputFile.close();
77  }
78 }
79 
81  // Getting the masked-strip information
83  edm::ESHandle<RPCMaskedStrips> readoutMaskedStrips;
84  setup.get<RPCMaskedStripsRcd>().get(readoutMaskedStrips);
85  const RPCMaskedStrips* tmp_obj = readoutMaskedStrips.product();
86  theRPCMaskedStripsObj->MaskVec = tmp_obj->MaskVec;
87  delete tmp_obj;
88  } else if (maskSource_ == MaskSource::File) {
89  std::vector<RPCMaskedStrips::MaskItem>::iterator posVec;
90  for (posVec = MaskVec.begin(); posVec != MaskVec.end(); ++posVec) {
92  Item.rawId = (*posVec).rawId;
93  Item.strip = (*posVec).strip;
94  theRPCMaskedStripsObj->MaskVec.push_back(Item);
95  }
96  }
97 
98  // Getting the dead-strip information
100  edm::ESHandle<RPCDeadStrips> readoutDeadStrips;
101  setup.get<RPCDeadStripsRcd>().get(readoutDeadStrips);
102  const RPCDeadStrips* tmp_obj = readoutDeadStrips.product();
103  theRPCDeadStripsObj->DeadVec = tmp_obj->DeadVec;
104  delete tmp_obj;
105  } else if (deadSource_ == MaskSource::File) {
106  std::vector<RPCDeadStrips::DeadItem>::iterator posVec;
107  for (posVec = DeadVec.begin(); posVec != DeadVec.end(); ++posVec) {
109  Item.rawId = (*posVec).rawId;
110  Item.strip = (*posVec).strip;
111  theRPCDeadStripsObj->DeadVec.push_back(Item);
112  }
113  }
114 }
115 
117  // Get the RPC Geometry
118  ESHandle<RPCGeometry> rpcGeom;
119  setup.get<MuonGeometryRecord>().get(rpcGeom);
120 
121  // Get the digis from the event
123  event.getByToken(theRPCDigiLabel, digis);
124 
125  // Pass the EventSetup to the algo
126  theAlgo->setES(setup);
127 
128  // Create the pointer to the collection which will store the rechits
129  auto recHitCollection = std::make_unique<RPCRecHitCollection>();
130 
131  // Iterate through all digi collections ordered by LayerId
132 
133  for (auto rpcdgIt = digis->begin(); rpcdgIt != digis->end(); ++rpcdgIt) {
134  // The layerId
135  const RPCDetId& rpcId = (*rpcdgIt).first;
136 
137  // Get the GeomDet from the setup
138  const RPCRoll* roll = rpcGeom->roll(rpcId);
139  if (roll == nullptr) {
140  edm::LogError("BadDigiInput") << "Failed to find RPCRoll for ID " << rpcId;
141  continue;
142  }
143 
144  // Get the iterators over the digis associated with this LayerId
145  const RPCDigiCollection::Range& range = (*rpcdgIt).second;
146 
147  // Getting the roll mask, that includes dead strips, for the given RPCDet
148  RollMask mask;
149  const int rawId = rpcId.rawId();
150  for (const auto& tomask : theRPCMaskedStripsObj->MaskVec) {
151  if (tomask.rawId == rawId) {
152  const int bit = tomask.strip;
153  mask.set(bit - 1);
154  }
155  }
156 
157  for (const auto& tomask : theRPCDeadStripsObj->DeadVec) {
158  if (tomask.rawId == rawId) {
159  const int bit = tomask.strip;
160  mask.set(bit - 1);
161  }
162  }
163 
164  // Call the reconstruction algorithm
165  OwnVector<RPCRecHit> recHits = theAlgo->reconstruct(*roll, rpcId, range, mask);
166 
167  if (!recHits.empty()) //FIXME: is it really needed?
168  recHitCollection->put(rpcId, recHits.begin(), recHits.end());
169  }
170 
171  event.put(std::move(recHitCollection));
172 }
edm::ESHandle::product
T const * product() const
Definition: ESHandle.h:86
RPCRecHitProducer::deadSource_
enum RPCRecHitProducer::MaskSource deadSource_
RPCRoll
Definition: RPCRoll.h:12
RollMask
std::bitset< maskSIZE > RollMask
Definition: RPCRollMask.h:7
FastTimerService_cff.range
range
Definition: FastTimerService_cff.py:34
MessageLogger.h
ESHandle.h
RPCMaskedStrips::MaskItem::strip
int strip
Definition: RPCMaskedStrips.h:13
edm::Run
Definition: Run.h:45
RPCDeadStripsRcd
Definition: RPCDeadStripsRcd.h:24
RPCDeadStrips::DeadItem
Definition: RPCDeadStrips.h:11
RPCRecHitProducer::maskSource_
enum RPCRecHitProducer::MaskSource maskSource_
edm
HLT enums.
Definition: AlignableModifier.h:19
RPCDetId
Definition: RPCDetId.h:16
RPCRecHitProducer::theAlgo
std::unique_ptr< RPCRecHitBaseAlgo > theAlgo
Definition: RPCRecHitProducer.h:39
RPCDeadStrips::DeadItem::strip
int strip
Definition: RPCDeadStrips.h:13
RPCGeometry::roll
const RPCRoll * roll(RPCDetId id) const
Return a roll given its id.
Definition: RPCGeometry.cc:50
personalPlayback.fp
fp
Definition: personalPlayback.py:523
RPCRoll.h
RPCDeadStrips
Definition: RPCDeadStrips.h:9
edm::Handle< RPCDigiCollection >
singleTopDQM_cfi.setup
setup
Definition: singleTopDQM_cfi.py:37
RPCRecHitProducer::DeadVec
std::vector< RPCDeadStrips::DeadItem > DeadVec
Definition: RPCRecHitProducer.h:50
RPCRecHitProducer::theRPCDeadStripsObj
std::unique_ptr< RPCDeadStrips > theRPCDeadStripsObj
Definition: RPCRecHitProducer.h:44
RPCDigiCollection
config
Definition: config.py:1
RPCMaskedStrips
Definition: RPCMaskedStrips.h:9
edm::FileInPath
Definition: FileInPath.h:64
RPCRecHitProducer::theRPCMaskedStripsObj
std::unique_ptr< RPCMaskedStrips > theRPCMaskedStripsObj
Definition: RPCRecHitProducer.h:41
HLT_2018_cff.maskSource
maskSource
Definition: HLT_2018_cff.py:7896
edm::ESHandle
Definition: DTSurvey.h:22
RPCRecHitProducer::MaskSource::File
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
FastTrackerRecHitMaskProducer_cfi.recHits
recHits
Definition: FastTrackerRecHitMaskProducer_cfi.py:8
RPCDetId.h
RPCDeadStrips::DeadVec
std::vector< DeadItem > DeadVec
Definition: RPCDeadStrips.h:24
RPCRecHitCollection.h
edm::ParameterSet
Definition: ParameterSet.h:36
RPCMaskedStripsRcd.h
edm::LogError
Definition: MessageLogger.h:183
RPCDeadStrips::DeadItem::rawId
int rawId
Definition: RPCDeadStrips.h:12
beam_dqm_sourceclient-live_cfg.cerr
cerr
Definition: beam_dqm_sourceclient-live_cfg.py:17
recoMuon::in
Definition: RecoMuonEnumerators.h:6
RPCDeadStripsRcd.h
dtResolutionTest_cfi.inputFile
inputFile
Definition: dtResolutionTest_cfi.py:14
edm::EventSetup
Definition: EventSetup.h:57
RPCRecHitProducer::MaskVec
std::vector< RPCMaskedStrips::MaskItem > MaskVec
Definition: RPCRecHitProducer.h:49
get
#define get
RPCRecHitProducer::MaskSource::EventSetup
alignCSCRings.r
r
Definition: alignCSCRings.py:93
VtxSmearedBeamProfile_cfi.File
File
Definition: VtxSmearedBeamProfile_cfi.py:30
eostools.move
def move(src, dest)
Definition: eostools.py:511
std
Definition: JetResolutionObject.h:76
DetId::rawId
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
RPCRecHitProducer::beginRun
void beginRun(const edm::Run &, const edm::EventSetup &) override
Definition: RPCRecHitProducer.cc:80
RPCMaskedStrips::MaskVec
std::vector< MaskItem > MaskVec
Definition: RPCMaskedStrips.h:24
HLT_2018_cff.deadSource
deadSource
Definition: HLT_2018_cff.py:7895
RPCRecHitAlgoFactory.h
RPCRecHit.h
MuonDigiCollection< RPCDetId, RPCDigi >::Range
std::pair< const_iterator, const_iterator > Range
Definition: MuonDigiCollection.h:95
RPCMaskedStrips::MaskItem
Definition: RPCMaskedStrips.h:11
RPCRecHitProducer::produce
void produce(edm::Event &event, const edm::EventSetup &setup) override
The method which produces the rechits.
Definition: RPCRecHitProducer.cc:116
RPCRecHitProducer.h
RPCMaskedStrips::MaskItem::rawId
int rawId
Definition: RPCMaskedStrips.h:12
RPCRecHitProducer::theRPCDigiLabel
const edm::EDGetTokenT< RPCDigiCollection > theRPCDigiLabel
Definition: RPCRecHitProducer.h:35
RPCRecHitProducer::RPCRecHitProducer
RPCRecHitProducer(const edm::ParameterSet &config)
Constructor.
Definition: RPCRecHitProducer.cc:29
beamvalidation.exit
def exit(msg="")
Definition: beamvalidation.py:53
MuonGeometryRecord.h
event
Definition: event.py:1
edm::Event
Definition: Event.h:73
MuonGeometryRecord
Definition: MuonGeometryRecord.h:34
RPCGeometry.h
edm::InputTag
Definition: InputTag.h:15
RPCMaskedStripsRcd
Definition: RPCMaskedStripsRcd.h:24
edm::OwnVector< RPCRecHit >