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"))},
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") {
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") {
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 }
T getParameter(std::string const &) const
std::vector< MaskItem > MaskVec
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
std::unique_ptr< RPCRecHitBaseAlgo > theAlgo
void beginRun(const edm::Run &, const edm::EventSetup &) override
Definition: config.py:1
iterator begin()
Definition: OwnVector.h:280
enum RPCRecHitProducer::MaskSource deadSource_
void produce(edm::Event &event, const edm::EventSetup &setup) override
The method which produces the rechits.
bool empty() const
Definition: OwnVector.h:305
const edm::EDGetTokenT< RPCDigiCollection > theRPCDigiLabel
std::bitset< maskSIZE > RollMask
Definition: RPCRollMask.h:7
std::unique_ptr< RPCMaskedStrips > theRPCMaskedStripsObj
iterator end()
Definition: OwnVector.h:285
std::vector< RPCDeadStrips::DeadItem > DeadVec
RPCRecHitProducer(const edm::ParameterSet &config)
Constructor.
std::pair< const_iterator, const_iterator > Range
enum RPCRecHitProducer::MaskSource maskSource_
HLT enums.
T get() const
Definition: EventSetup.h:73
std::vector< DeadItem > DeadVec
Definition: RPCDeadStrips.h:24
std::string fullPath() const
Definition: FileInPath.cc:163
std::vector< RPCMaskedStrips::MaskItem > MaskVec
T const * product() const
Definition: ESHandle.h:86
def move(src, dest)
Definition: eostools.py:511
std::unique_ptr< RPCDeadStrips > theRPCDeadStripsObj
const RPCRoll * roll(RPCDetId id) const
Return a roll given its id.
Definition: RPCGeometry.cc:50
Definition: event.py:1
Definition: Run.h:45
def exit(msg="")