CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiClusterTranslator.cc
Go to the documentation of this file.
1 
10 // SiTracker Gaussian Smearing
11 #include "SiClusterTranslator.h"
12 
13 // Geometry
23 
24 //CPEs
27 #include "FastPixelCPE.h"
28 #include "FastStripCPE.h"
29 
30 // Framework
37 
38 // Data Formats
45 
46 //for the SimHit
51 
52 // STL
53 #include <memory>
54 #include <string>
55 
57  fastTrackerClusterCollectionTag_(conf.getParameter<edm::InputTag>("fastTrackerClusterCollectionTag"))
58 {
59  produces<edmNew::DetSetVector<SiStripCluster> >();
60  produces<edmNew::DetSetVector<SiPixelCluster> >();
61  produces<edm::DetSetVector<StripDigiSimLink> >();
62  produces<edm::DetSetVector<PixelDigiSimLink> >();
63 }
64 
65 // Destructor
67 
68 void
70 
71  // Initialize the Tracker Geometry
73  es.get<TrackerDigiGeometryRecord> ().get (theGeometry);
74  geometry = &(*theGeometry);
75 }
76 
77 void
79 {
80  // Step A: Get Inputs (FastGSRecHit's)
82  e.getByLabel(fastTrackerClusterCollectionTag_, theFastClusters);
83 
85  es.get<TrackerDigiGeometryRecord>().get( tkgeom );
86  const TrackerGeometry &tracker(*tkgeom);
87 
89  es.get<TkPixelCPERecord>().get("FastPixelCPE",pixelCPE);
90  const PixelClusterParameterEstimator &pixelcpe(*pixelCPE);
91 
93  es.get<TkStripCPERecord>().get("FastStripCPE", stripCPE);
94  const StripClusterParameterEstimator &stripcpe(*stripCPE);
95 
97  std::vector<const CrossingFrame<PSimHit> *> cf_simhitvec;
98  e.getByLabel("mix","famosSimHitsTrackerHits", cf_simhit);
99  cf_simhitvec.push_back(cf_simhit.product());
100 
101  std::auto_ptr<MixCollection<PSimHit> > allTrackerHits(new MixCollection<PSimHit>(cf_simhitvec));
102  int counter =0;
103 
104  //Clearing vector to hopefully make it run faster.
105  theNewSimHitList.clear();
106  thePixelDigiLinkVector.clear();
107  theStripDigiLinkVector.clear();
108 
109  for(MixCollection<PSimHit>::iterator it = allTrackerHits->begin(); it!= allTrackerHits->end();it++){
110  counter++;
111  theNewSimHitList.push_back(std::make_pair((*it), counter));
112  }
113 
114  // Step B: fill a temporary full Cluster collection from the fast Cluster collection
115  FastTrackerClusterCollection::const_iterator aCluster = theFastClusters->begin();
116  FastTrackerClusterCollection::const_iterator theLastHit = theFastClusters->end();
117  std::map< DetId, std::vector<SiPixelCluster> > temporaryPixelClusters;
118  std::map< DetId, std::vector<SiStripCluster> > temporaryStripClusters;
119 
120  //Clearing CPE maps from previous event.
121  stripcpe.clearParameters();
122  pixelcpe.clearParameters();
123 
124  int ClusterNum = 0;
125 
126  // loop on Fast GS Hits
127  for ( ; aCluster != theLastHit; ++aCluster ) {
128  ClusterNum++;
129 
130  //Finding SubDet Id of cluster: 1 & 2 = Pixel, 3 & 4 & 5 & 6 = Strip, >6 = ?
131  DetId det = aCluster->id();
132  unsigned int subdet = det.subdetId();
133  int sim_counter = 0;
134  for (std::vector<std::pair<PSimHit,int> >::const_iterator
135  simcount = theNewSimHitList.begin() ; simcount != theNewSimHitList.end(); simcount ++){
136  if((aCluster->simtrackId() == (int)(*simcount).first.trackId())&&(det.rawId() == (*simcount).first.detUnitId())&&(aCluster->eeId() == (*simcount).first.eventId().rawId()))
137  sim_counter = (*simcount).second;
138  }
139  if (sim_counter == 0) throw cms::Exception("SiClusterTranslator") << "No Matching SimHit found.";
140 
141  //Separating into Pixels and Strips
142 
143  //Pixel
144  if (subdet < 3) {
145  //Here is the hard part. From the position of the FastSim Cluster I need to figure out the Pixel location for the Cluster.
146  LocalPoint position = aCluster->localPosition();
147  LocalError error = aCluster->localPositionError();
148  //std::cout << "The pixel charge is " << aCluster->charge() << std::endl;
149  int charge = (int)(aCluster->charge() + 0.5);
150  //std::cout << "The pixel charge after integer conversion is " << charge << std::endl;
151 
152  //std::vector<int> digi_vec;
153  //while (charge > 255) {
154  //digi_vec.push_back(charge);
155  //charge -= 256;
156  //}
157  //digi_vec.push_back(charge);
158 
159  const GeomDetUnit * geoDet = tracker.idToDetUnit(det);
160  const PixelGeomDetUnit * pixelDet=(const PixelGeomDetUnit*)(geoDet);
161  const PixelTopology& topol=(const PixelTopology&)pixelDet->topology();
162 
163  //Out of pixel is float, but input of pixel is int. Hopeful it works...
164  std::pair<float,float> pixelPos_out = topol.pixel(position);
165  SiPixelCluster::PixelPos pixelPos((int)pixelPos_out.first, (int)pixelPos_out.second);
166 
167  //Filling Pixel CPE with information.
168  std::pair<int,int> row_col((int)pixelPos_out.first,(int)pixelPos_out.second);
169  pixelcpe.enterLocalParameters((unsigned int) det.rawId() , row_col, std::make_pair(position,error));
170 
171  unsigned int ch = PixelChannelIdentifier::pixelToChannel((int)pixelPos_out.first, (int)pixelPos_out.second);
172 
173  //Creating a new pixel cluster.
174  SiPixelCluster temporaryPixelCluster(pixelPos, charge);
175  temporaryPixelClusters[det].push_back(temporaryPixelCluster);
176 
177  //Making a PixelDigiSimLink.
178  edm::DetSet<PixelDigiSimLink> pixelDetSet;
179  pixelDetSet.id = det.rawId();
180  pixelDetSet.data.push_back(PixelDigiSimLink(ch,
181  aCluster->simtrackId(),
182  EncodedEventId(aCluster->eeId()),
183  1.0));
184  thePixelDigiLinkVector.push_back(pixelDetSet);
185  }
186 
187  //Strips
188  else if ((subdet > 2) && (subdet < 7)) {
189  //Getting pos/err info from the cluster
190  LocalPoint position = aCluster->localPosition();
191  LocalError error = aCluster->localPositionError();
192 
193  //Will have to make charge into ADC eventually...
194  uint16_t charge = (uint16_t)(aCluster->charge() + 0.5);
195 
196  //std::cout << "The charge is " << charge << std::endl;
197 
198  uint16_t strip_num = 0;
199  std::vector<uint16_t> digi_vec;
200  while (charge > 255) {
201  digi_vec.push_back(255);
202  charge -= 255;
203  }
204  if (charge > 0) digi_vec.push_back(charge);
205  //std::cout << "The digi_vec size is " << digi_vec.size() << std::endl;
206  //int totcharge = 0;
207  //for(int i = 0; i < digi_vec.size(); ++i) {
208  //totcharge += digi_vec[i];
209  //}
210  const GeomDetUnit * geoDet = tracker.idToDetUnit(det);
211  const StripGeomDetUnit * stripDet = (const StripGeomDetUnit*)(geoDet);
212 
213  //3 = TIB, 4 = TID, 5 = TOB, 6 = TEC
214  if((subdet == 3) || (subdet == 5)) {
215  const RectangularStripTopology& topol=(const RectangularStripTopology&)stripDet->type().topology();
216  strip_num = (uint16_t)topol.strip(position);
217  } else if ((subdet == 4) || (subdet == 6)) {
218  const RadialStripTopology& topol=(const RadialStripTopology&)stripDet->type().topology();
219  strip_num = (uint16_t)topol.strip(position);
220  }
221 
222  //Filling Strip CPE with info.
223  stripcpe.enterLocalParameters(det.rawId(), strip_num, std::make_pair(position,error));
224 
225  //Creating a new strip cluster
226  SiStripCluster temporaryStripCluster(det.rawId(), strip_num, digi_vec.begin(), digi_vec.end());
227  temporaryStripClusters[det].push_back(temporaryStripCluster);
228 
229  //Making a StripDigiSimLink
230  edm::DetSet<StripDigiSimLink> stripDetSet;
231  stripDetSet.id = det.rawId();
232  stripDetSet.data.push_back(StripDigiSimLink(strip_num,
233  aCluster->simtrackId(),
234  sim_counter,
235  EncodedEventId(aCluster->eeId()),
236  1.0));
237  theStripDigiLinkVector.push_back(stripDetSet);
238  }
239 
240  //?????
241  else {
242  throw cms::Exception("SiClusterTranslator") <<
243  "Trying to build a cluster that is not in the SiStripTracker or Pixels.\n";
244  }
245 
246  }//Cluster loop
247 
248  // Step C: from the temporary Cluster collections, create the real ones.
249 
250  //Pixels
251  std::auto_ptr<edmNew::DetSetVector<SiPixelCluster> >
252  siPixelClusterCollection(new edmNew::DetSetVector<SiPixelCluster>);
253  loadPixelClusters(temporaryPixelClusters, *siPixelClusterCollection);
254  std::auto_ptr<edm::DetSetVector<StripDigiSimLink> > stripoutputlink(new edm::DetSetVector<StripDigiSimLink>(theStripDigiLinkVector) );
255 
256 
257  //Strips
258  std::auto_ptr<edmNew::DetSetVector<SiStripCluster> >
259  siStripClusterCollection(new edmNew::DetSetVector<SiStripCluster>);
260  loadStripClusters(temporaryStripClusters, *siStripClusterCollection);
261  std::auto_ptr<edm::DetSetVector<PixelDigiSimLink> > pixeloutputlink(new edm::DetSetVector<PixelDigiSimLink>(thePixelDigiLinkVector) );
262 
263  // Step D: write output to file
264  e.put(siPixelClusterCollection);
265  e.put(siStripClusterCollection);
266  e.put(stripoutputlink);
267  e.put(pixeloutputlink);
268 }
269 
270 void
272  std::map<DetId,std::vector<SiStripCluster> >& theClusters,
273  edmNew::DetSetVector<SiStripCluster>& theClusterCollection) const
274 {
275  std::map<DetId,std::vector<SiStripCluster> >::const_iterator
276  it = theClusters.begin();
277  std::map<DetId,std::vector<SiStripCluster> >::const_iterator
278  lastDet = theClusters.end();
279  for( ; it != lastDet ; ++it ) {
280  edmNew::DetSetVector<SiStripCluster>::FastFiller cluster_col(theClusterCollection, it->first);
281 
282  std::vector<SiStripCluster>::const_iterator clust_it = it->second.begin();
283  std::vector<SiStripCluster>::const_iterator clust_end = it->second.end();
284  for( ; clust_it != clust_end ; ++clust_it) {
285  cluster_col.push_back(*clust_it);
286  }
287  }
288 }
289 
290 void
292  std::map<DetId,std::vector<SiPixelCluster> >& theClusters,
293  edmNew::DetSetVector<SiPixelCluster>& theClusterCollection) const
294 {
295 
296  std::map<DetId,std::vector<SiPixelCluster> >::const_iterator
297  it = theClusters.begin();
298  std::map<DetId,std::vector<SiPixelCluster> >::const_iterator
299  lastCluster = theClusters.end();
300  for( ; it != lastCluster ; ++it ) {
301  edmNew::DetSetVector<SiPixelCluster>::FastFiller spc(theClusterCollection, it->first);
302 
303  std::vector<SiPixelCluster>::const_iterator clust_it = it->second.begin();
304  std::vector<SiPixelCluster>::const_iterator clust_end = it->second.end();
305  for( ; clust_it != clust_end ; ++clust_it) {
306  spc.push_back(*clust_it);
307  }
308  }
309 }
virtual const Topology & topology() const
Returns a reference to the pixel proxy topology.
void push_back(data_type const &d)
std::vector< edm::DetSet< PixelDigiSimLink > > thePixelDigiLinkVector
const TrackerGeometry * geometry
virtual void clearParameters() const
virtual void produce(edm::Event &e, const edm::EventSetup &c) override
double charge(const std::vector< uint8_t > &Ampls)
static int position[TOTALCHAMBERS][3]
Definition: ReadPGInfo.cc:509
virtual void enterLocalParameters(unsigned int id, std::pair< int, int > &row_col, LocalValues pos_err_info) const
dictionary map
Definition: Association.py:205
SiClusterTranslator(const edm::ParameterSet &conf)
uint32_t rawId() const
get the raw id
Definition: DetId.h:45
C::const_iterator const_iterator
constant access iterator type
Definition: RangeMap.h:45
edm::InputTag fastTrackerClusterCollectionTag_
virtual std::pair< float, float > pixel(const LocalPoint &p) const =0
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:94
void loadPixelClusters(std::map< DetId, std::vector< SiPixelCluster > > &theClusters, SiPixelClusterCollectionNew &theClusterCollection) const
std::vector< edm::DetSet< StripDigiSimLink > > theStripDigiLinkVector
int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:39
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:361
tuple conf
Definition: dbtoconf.py:185
virtual float strip(const LocalPoint &) const =0
Definition: DetId.h:20
virtual const GeomDetType & type() const
const T & get() const
Definition: EventSetup.h:55
std::vector< std::pair< PSimHit, int > > theNewSimHitList
T const * product() const
Definition: Handle.h:74
virtual const Topology & topology() const =0
virtual const GeomDetUnit * idToDetUnit(DetId) const
Return the pointer to the GeomDetUnit corresponding to a given DetId.
collection_type data
Definition: DetSet.h:79
Pixel cluster – collection of neighboring pixels above threshold.
det_id_type id
Definition: DetSet.h:78
void loadStripClusters(std::map< DetId, std::vector< SiStripCluster > > &theClusters, edmNew::DetSetVector< SiStripCluster > &theClusterCollection) const
static int pixelToChannel(int row, int col)
Definition: Run.h:36
virtual void beginRun(edm::Run const &run, const edm::EventSetup &es) override