test
CMS 3D CMS Logo

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