CMS 3D CMS Logo

ShallowClustersProducer.cc
Go to the documentation of this file.
2 
12 
14  : Prefix(iConfig.getParameter<std::string>("Prefix")) {
15  produces<std::vector<unsigned>>(Prefix + "number");
16  produces<std::vector<unsigned>>(Prefix + "width");
17  produces<std::vector<float>>(Prefix + "variance");
18  produces<std::vector<float>>(Prefix + "barystrip");
19  produces<std::vector<float>>(Prefix + "middlestrip");
20  produces<std::vector<unsigned>>(Prefix + "charge");
21  produces<std::vector<float>>(Prefix + "noise");
22  produces<std::vector<float>>(Prefix + "ston");
23  produces<std::vector<unsigned>>(Prefix + "seedstrip");
24  produces<std::vector<unsigned>>(Prefix + "seedindex");
25  produces<std::vector<unsigned>>(Prefix + "seedcharge");
26  produces<std::vector<float>>(Prefix + "seednoise");
27  produces<std::vector<float>>(Prefix + "seedgain");
28  produces<std::vector<unsigned>>(Prefix + "qualityisbad");
29 
30  produces<std::vector<float>>(Prefix + "rawchargeC");
31  produces<std::vector<float>>(Prefix + "rawchargeL");
32  produces<std::vector<float>>(Prefix + "rawchargeR");
33  produces<std::vector<float>>(Prefix + "rawchargeLL");
34  produces<std::vector<float>>(Prefix + "rawchargeRR");
35  produces<std::vector<float>>(Prefix + "eta");
36  produces<std::vector<float>>(Prefix + "foldedeta");
37  produces<std::vector<float>>(Prefix + "etaX");
38  produces<std::vector<float>>(Prefix + "etaasymm");
39  produces<std::vector<float>>(Prefix + "outsideasymm");
40  produces<std::vector<float>>(Prefix + "neweta");
41  produces<std::vector<float>>(Prefix + "newetaerr");
42 
43  produces<std::vector<unsigned>>(Prefix + "detid");
44  produces<std::vector<int>>(Prefix + "subdetid");
45  produces<std::vector<int>>(Prefix + "module");
46  produces<std::vector<int>>(Prefix + "side");
47  produces<std::vector<int>>(Prefix + "layerwheel");
48  produces<std::vector<int>>(Prefix + "stringringrod");
49  produces<std::vector<int>>(Prefix + "petal");
50  produces<std::vector<int>>(Prefix + "stereo");
51 
52  theClustersToken_ = consumes<edmNew::DetSetVector<SiStripCluster>>(iConfig.getParameter<edm::InputTag>("Clusters"));
53  theDigisToken_ = consumes<edm::DetSetVector<SiStripProcessedRawDigi>>(edm::InputTag("siStripProcessedRawDigis", ""));
54 }
55 
57  //Retrieve tracker topology from geometry
59  iSetup.get<TrackerTopologyRcd>().get(tTopoHandle);
60  const TrackerTopology* const tTopo = tTopoHandle.product();
61 
62  auto number = std::make_unique<std::vector<unsigned>>(7, 0);
63  auto width = std::make_unique<std::vector<unsigned>>();
64  auto variance = std::make_unique<std::vector<float>>();
65  auto barystrip = std::make_unique<std::vector<float>>();
66  auto middlestrip = std::make_unique<std::vector<float>>();
67  auto charge = std::make_unique<std::vector<unsigned>>();
68  auto noise = std::make_unique<std::vector<float>>();
69  auto ston = std::make_unique<std::vector<float>>();
70  auto seedstrip = std::make_unique<std::vector<unsigned>>();
71  auto seedindex = std::make_unique<std::vector<unsigned>>();
72  auto seedcharge = std::make_unique<std::vector<unsigned>>();
73  auto seednoise = std::make_unique<std::vector<float>>();
74  auto seedgain = std::make_unique<std::vector<float>>();
75  auto qualityisbad = std::make_unique<std::vector<unsigned>>();
76 
77  auto rawchargeC = std::make_unique<std::vector<float>>();
78  auto rawchargeL = std::make_unique<std::vector<float>>();
79  auto rawchargeR = std::make_unique<std::vector<float>>();
80  auto rawchargeLL = std::make_unique<std::vector<float>>();
81  auto rawchargeRR = std::make_unique<std::vector<float>>();
82  auto etaX = std::make_unique<std::vector<float>>();
83  auto eta = std::make_unique<std::vector<float>>();
84  auto foldedeta = std::make_unique<std::vector<float>>();
85  auto etaasymm = std::make_unique<std::vector<float>>();
86  auto outsideasymm = std::make_unique<std::vector<float>>();
87  auto neweta = std::make_unique<std::vector<float>>();
88  auto newetaerr = std::make_unique<std::vector<float>>();
89 
90  auto detid = std::make_unique<std::vector<unsigned>>();
91  auto subdetid = std::make_unique<std::vector<int>>();
92  auto side = std::make_unique<std::vector<int>>();
93  auto module = std::make_unique<std::vector<int>>();
94  auto layerwheel = std::make_unique<std::vector<int>>();
95  auto stringringrod = std::make_unique<std::vector<int>>();
96  auto petal = std::make_unique<std::vector<int>>();
97  auto stereo = std::make_unique<std::vector<int>>();
98 
100  // iEvent.getByLabel(theClustersLabel, clusters);
101  iEvent.getByToken(theClustersToken_, clusters);
102 
104  // iEvent.getByLabel("siStripProcessedRawDigis", "", rawProcessedDigis);
105  iEvent.getByToken(theDigisToken_, rawProcessedDigis);
106 
107  edmNew::DetSetVector<SiStripCluster>::const_iterator itClusters = clusters->begin();
108  for (; itClusters != clusters->end(); ++itClusters) {
109  uint32_t id = itClusters->id();
110  const moduleVars moduleV(id, tTopo);
111  for (edmNew::DetSet<SiStripCluster>::const_iterator cluster = itClusters->begin(); cluster != itClusters->end();
112  ++cluster) {
113  const SiStripClusterInfo info(*cluster, iSetup, id);
114  const NearDigis digis = rawProcessedDigis.isValid() ? NearDigis(info, *rawProcessedDigis) : NearDigis(info);
115 
116  (number->at(0))++;
117  (number->at(moduleV.subdetid))++;
118  width->push_back(cluster->amplitudes().size());
119  barystrip->push_back(cluster->barycenter());
120  variance->push_back(info.variance());
121  middlestrip->push_back(info.firstStrip() + info.width() / 2.0);
122  charge->push_back(info.charge());
123  noise->push_back(info.noiseRescaledByGain());
124  ston->push_back(info.signalOverNoise());
125  seedstrip->push_back(info.maxStrip());
126  seedindex->push_back(info.maxIndex());
127  seedcharge->push_back(info.maxCharge());
128  seednoise->push_back(info.stripNoisesRescaledByGain().at(info.maxIndex()));
129  seedgain->push_back(info.stripGains().at(info.maxIndex()));
130  qualityisbad->push_back(info.IsAnythingBad());
131 
132  rawchargeC->push_back(digis.max);
133  rawchargeL->push_back(digis.left);
134  rawchargeR->push_back(digis.right);
135  rawchargeLL->push_back(digis.Lleft);
136  rawchargeRR->push_back(digis.Rright);
137  etaX->push_back(digis.etaX());
138  eta->push_back(digis.eta());
139  etaasymm->push_back(digis.etaasymm());
140  outsideasymm->push_back(digis.outsideasymm());
141  neweta->push_back((digis.last - digis.first) / info.charge());
142  newetaerr->push_back((sqrt(digis.last + digis.first)) / pow(info.charge(), 1.5));
143 
144  detid->push_back(id);
145  subdetid->push_back(moduleV.subdetid);
146  side->push_back(moduleV.side);
147  module->push_back(moduleV.module);
148  layerwheel->push_back(moduleV.layerwheel);
149  stringringrod->push_back(moduleV.stringringrod);
150  petal->push_back(moduleV.petal);
151  stereo->push_back(moduleV.stereo);
152  }
153  }
154 
155  iEvent.put(std::move(number), Prefix + "number");
156  iEvent.put(std::move(width), Prefix + "width");
157  iEvent.put(std::move(variance), Prefix + "variance");
158  iEvent.put(std::move(barystrip), Prefix + "barystrip");
159  iEvent.put(std::move(middlestrip), Prefix + "middlestrip");
160  iEvent.put(std::move(charge), Prefix + "charge");
161  iEvent.put(std::move(noise), Prefix + "noise");
162  iEvent.put(std::move(ston), Prefix + "ston");
163  iEvent.put(std::move(seedstrip), Prefix + "seedstrip");
164  iEvent.put(std::move(seedindex), Prefix + "seedindex");
165  iEvent.put(std::move(seedcharge), Prefix + "seedcharge");
166  iEvent.put(std::move(seednoise), Prefix + "seednoise");
167  iEvent.put(std::move(seedgain), Prefix + "seedgain");
168  iEvent.put(std::move(qualityisbad), Prefix + "qualityisbad");
169 
170  iEvent.put(std::move(rawchargeC), Prefix + "rawchargeC");
171  iEvent.put(std::move(rawchargeL), Prefix + "rawchargeL");
172  iEvent.put(std::move(rawchargeR), Prefix + "rawchargeR");
173  iEvent.put(std::move(rawchargeLL), Prefix + "rawchargeLL");
174  iEvent.put(std::move(rawchargeRR), Prefix + "rawchargeRR");
175  iEvent.put(std::move(etaX), Prefix + "etaX");
176  iEvent.put(std::move(eta), Prefix + "eta");
177  iEvent.put(std::move(foldedeta), Prefix + "foldedeta");
178  iEvent.put(std::move(etaasymm), Prefix + "etaasymm");
179  iEvent.put(std::move(outsideasymm), Prefix + "outsideasymm");
180  iEvent.put(std::move(neweta), Prefix + "neweta");
181  iEvent.put(std::move(newetaerr), Prefix + "newetaerr");
182 
183  iEvent.put(std::move(detid), Prefix + "detid");
184  iEvent.put(std::move(subdetid), Prefix + "subdetid");
185  iEvent.put(std::move(module), Prefix + "module");
186  iEvent.put(std::move(side), Prefix + "side");
187  iEvent.put(std::move(layerwheel), Prefix + "layerwheel");
188  iEvent.put(std::move(stringringrod), Prefix + "stringringrod");
189  iEvent.put(std::move(petal), Prefix + "petal");
190  iEvent.put(std::move(stereo), Prefix + "stereo");
191 }
192 
194  max = info.maxCharge();
195  left = info.maxIndex() > uint16_t(0) ? info.stripCharges()[info.maxIndex() - 1] : 0;
196  Lleft = info.maxIndex() > uint16_t(1) ? info.stripCharges()[info.maxIndex() - 2] : 0;
197  right = unsigned(info.maxIndex() + 1) < info.stripCharges().size() ? info.stripCharges()[info.maxIndex() + 1] : 0;
198  Rright = unsigned(info.maxIndex() + 2) < info.stripCharges().size() ? info.stripCharges()[info.maxIndex() + 2] : 0;
199  first = info.stripCharges()[0];
200  last = info.stripCharges()[info.width() - 1];
201 }
202 
204  const edm::DetSetVector<SiStripProcessedRawDigi>& rawProcessedDigis) {
205  edm::DetSetVector<SiStripProcessedRawDigi>::const_iterator digiframe = rawProcessedDigis.find(info.detId());
206  if (digiframe != rawProcessedDigis.end()) {
207  max = digiframe->data.at(info.maxStrip()).adc();
208  left = info.maxStrip() > uint16_t(0) ? digiframe->data.at(info.maxStrip() - 1).adc() : 0;
209  Lleft = info.maxStrip() > uint16_t(1) ? digiframe->data.at(info.maxStrip() - 2).adc() : 0;
210  right = unsigned(info.maxStrip() + 1) < digiframe->data.size() ? digiframe->data.at(info.maxStrip() + 1).adc() : 0;
211  Rright = unsigned(info.maxStrip() + 2) < digiframe->data.size() ? digiframe->data.at(info.maxStrip() + 2).adc() : 0;
212  first = digiframe->data.at(info.firstStrip()).adc();
213  last = digiframe->data.at(info.firstStrip() + info.width() - 1).adc();
214  } else {
215  *this = NearDigis(info);
216  }
217 }
218 
220  SiStripDetId subdet(detid);
221  subdetid = subdet.subDetector();
222  if (SiStripDetId::TIB == subdetid) {
223  module = tTopo->tibModule(detid);
224  side = tTopo->tibIsZMinusSide(detid) ? -1 : 1;
225  layerwheel = tTopo->tibLayer(detid);
226  stringringrod = tTopo->tibString(detid);
227  stereo = tTopo->tibIsStereo(detid) ? 1 : 0;
228  } else if (SiStripDetId::TID == subdetid) {
229  module = tTopo->tidModule(detid);
230  side = tTopo->tidIsZMinusSide(detid) ? -1 : 1;
231  layerwheel = tTopo->tidWheel(detid);
232  stringringrod = tTopo->tidRing(detid);
233  stereo = tTopo->tidIsStereo(detid) ? 1 : 0;
234  } else if (SiStripDetId::TOB == subdetid) {
235  module = tTopo->tobModule(detid);
236  side = tTopo->tobIsZMinusSide(detid) ? -1 : 1;
237  layerwheel = tTopo->tobLayer(detid);
238  stringringrod = tTopo->tobRod(detid);
239  stereo = tTopo->tobIsStereo(detid) ? 1 : 0;
240  } else if (SiStripDetId::TEC == subdetid) {
241  module = tTopo->tecModule(detid);
242  side = tTopo->tecIsZMinusSide(detid) ? -1 : 1;
243  layerwheel = tTopo->tecWheel(detid);
244  stringringrod = tTopo->tecRing(detid);
245  petal = tTopo->tecPetalNumber(detid);
246  stereo = tTopo->tecIsStereo(detid) ? 1 : 0;
247  } else {
248  module = 0;
249  side = 0;
250  layerwheel = -1;
251  stringringrod = -1;
252  petal = -1;
253  }
254 }
uint8_t maxCharge() const
T getParameter(std::string const &) const
const_iterator end(bool update=false) const
static const TGPicture * info(bool iBackgroundIsBlack)
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:131
uint16_t firstStrip() const
iterator find(det_id_type id)
Definition: DetSetVector.h:264
unsigned int tibLayer(const DetId &id) const
unsigned int tibString(const DetId &id) const
unsigned int tidRing(const DetId &id) const
std::vector< float > stripGains() const
bool IsAnythingBad() const
bool tobIsStereo(const DetId &id) const
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
float noiseRescaledByGain() const
static constexpr auto TID
Definition: SiStripDetId.h:38
unsigned int tecRing(const DetId &id) const
ring id
ShallowClustersProducer(const edm::ParameterSet &)
unsigned int tidWheel(const DetId &id) const
float variance() const
data_type const * const_iterator
Definition: DetSetNew.h:31
uint16_t maxIndex() const
auto stripCharges() const -> decltype(cluster() ->amplitudes())
id_type id(size_t cell) const
moduleVars(uint32_t, const TrackerTopology *)
bool tecIsZMinusSide(const DetId &id) const
bool tidIsStereo(const DetId &id) const
bool tidIsZMinusSide(const DetId &id) const
bool tecIsStereo(const DetId &id) const
float signalOverNoise() const
int iEvent
Definition: GenABIO.cc:224
uint16_t charge() const
bool tibIsZMinusSide(const DetId &id) const
T sqrt(T t)
Definition: SSEVec.h:19
unsigned int tidModule(const DetId &id) const
bool tobIsZMinusSide(const DetId &id) const
uint16_t width() const
constexpr int adc(sample_type sample)
get the ADC sample (12 bits)
bool isValid() const
Definition: HandleBase.h:70
static constexpr auto TOB
Definition: SiStripDetId.h:39
iterator end()
Return the off-the-end iterator.
Definition: DetSetVector.h:325
size_type size() const
Return the number of contained DetSets.
Definition: DetSetVector.h:259
unsigned int tibModule(const DetId &id) const
unsigned int tecModule(const DetId &id) const
Detector identifier class for the strip tracker.
Definition: SiStripDetId.h:18
boost::transform_iterator< IterHelp, const_IdIter > const_iterator
SubDetector subDetector() const
Definition: SiStripDetId.h:105
uint16_t maxStrip() const
bool tibIsStereo(const DetId &id) const
void produce(edm::Event &, const edm::EventSetup &) override
static constexpr auto TIB
Definition: SiStripDetId.h:37
unsigned int tobModule(const DetId &id) const
uint32_t detId() const
edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > > theClustersToken_
edm::EDGetTokenT< edm::DetSetVector< SiStripProcessedRawDigi > > theDigisToken_
T get() const
Definition: EventSetup.h:73
unsigned int tecPetalNumber(const DetId &id) const
unsigned int tobRod(const DetId &id) const
collection_type::const_iterator const_iterator
Definition: DetSetVector.h:102
unsigned int tecWheel(const DetId &id) const
T const * product() const
Definition: ESHandle.h:86
Definition: vlib.h:198
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:30
def move(src, dest)
Definition: eostools.py:511
const_iterator begin(bool update=false) const
static constexpr auto TEC
Definition: SiStripDetId.h:40
unsigned int tobLayer(const DetId &id) const
std::vector< float > stripNoisesRescaledByGain() const