CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
SiClusterTranslator Class Reference

#include <SiClusterTranslator.h>

Inheritance diagram for SiClusterTranslator:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

virtual void beginRun (edm::Run const &run, const edm::EventSetup &es) override
 
virtual void produce (edm::Event &e, const edm::EventSetup &c) override
 
 SiClusterTranslator (const edm::ParameterSet &conf)
 
virtual ~SiClusterTranslator ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndex indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

void loadPixelClusters (std::map< DetId, std::vector< SiPixelCluster > > &theClusters, SiPixelClusterCollectionNew &theClusterCollection) const
 
void loadStripClusters (std::map< DetId, std::vector< SiStripCluster > > &theClusters, edmNew::DetSetVector< SiStripCluster > &theClusterCollection) const
 

Private Attributes

edm::InputTag fastTrackerClusterCollectionTag_
 
const TrackerGeometrygeometry
 
std::vector< std::pair
< PSimHit, int > > 
theNewSimHitList
 
std::vector< edm::DetSet
< PixelDigiSimLink > > 
thePixelDigiLinkVector
 
std::vector< edm::DetSet
< StripDigiSimLink > > 
theStripDigiLinkVector
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
typedef WorkerT< EDProducerWorkerType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDProducer
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Author
: Douglas Orbaker : Dougl.nosp@m.as.O.nosp@m.rbake.nosp@m.r@ce.nosp@m.rn.ch Clusters Produced by the FastSim and converts them to the standard cluster type.

Definition at line 36 of file SiClusterTranslator.h.

Constructor & Destructor Documentation

SiClusterTranslator::SiClusterTranslator ( const edm::ParameterSet conf)
explicit

SiClusterTranslator.cc

Description: see SiClusterTranslator.h Authors: R. Ranieri (CERN)

History: Sep 27, 2006 - initial version

Definition at line 56 of file SiClusterTranslator.cc.

56  :
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 }
T getParameter(std::string const &) const
edm::InputTag fastTrackerClusterCollectionTag_
SiClusterTranslator::~SiClusterTranslator ( )
virtual

Definition at line 66 of file SiClusterTranslator.cc.

66 {}

Member Function Documentation

void SiClusterTranslator::beginRun ( edm::Run const &  run,
const edm::EventSetup es 
)
overridevirtual

Reimplemented from edm::EDProducer.

Definition at line 69 of file SiClusterTranslator.cc.

References geometry, and edm::EventSetup::get().

69  {
70 
71  // Initialize the Tracker Geometry
73  es.get<TrackerDigiGeometryRecord> ().get (theGeometry);
74  geometry = &(*theGeometry);
75 }
const TrackerGeometry * geometry
const T & get() const
Definition: EventSetup.h:55
void SiClusterTranslator::loadPixelClusters ( std::map< DetId, std::vector< SiPixelCluster > > &  theClusters,
SiPixelClusterCollectionNew theClusterCollection 
) const
private

Definition at line 291 of file SiClusterTranslator.cc.

References edmNew::DetSetVector< T >::FastFiller::push_back().

Referenced by produce().

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 }
void SiClusterTranslator::loadStripClusters ( std::map< DetId, std::vector< SiStripCluster > > &  theClusters,
edmNew::DetSetVector< SiStripCluster > &  theClusterCollection 
) const
private

Definition at line 271 of file SiClusterTranslator.cc.

References edmNew::DetSetVector< T >::FastFiller::push_back().

Referenced by produce().

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 }
void SiClusterTranslator::produce ( edm::Event e,
const edm::EventSetup c 
)
overridevirtual

Implements edm::EDProducer.

Definition at line 78 of file SiClusterTranslator.cc.

References MixCollection< T >::begin(), DeDxDiscriminatorTools::charge(), ClusterParameterEstimator< T >::clearParameters(), edm::DetSet< T >::data, ClusterParameterEstimator< T >::enterLocalParameters(), error, edm::hlt::Exception, fastTrackerClusterCollectionTag_, edm::EventSetup::get(), edm::Event::getByLabel(), edm::DetSet< T >::id, TrackerGeometry::idToDetUnit(), loadPixelClusters(), loadStripClusters(), PixelTopology::pixel(), PixelChannelIdentifier::pixelToChannel(), position, edm::Handle< T >::product(), edm::Event::put(), DetId::rawId(), RadialStripTopology::strip(), DetId::subdetId(), theNewSimHitList, thePixelDigiLinkVector, theStripDigiLinkVector, GeomDetType::topology(), PixelGeomDetUnit::topology(), patCandidatesForDimuonsSequences_cff::tracker, and StripGeomDetUnit::type().

Referenced by JSONExport.JsonExport::export(), HTMLExport.HTMLExport::export(), and HTMLExport.HTMLExportStatic::export().

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 }
virtual const Topology & topology() const
Returns a reference to the pixel proxy topology.
std::vector< edm::DetSet< PixelDigiSimLink > > thePixelDigiLinkVector
double charge(const std::vector< uint8_t > &Ampls)
static int position[TOTALCHAMBERS][3]
Definition: ReadPGInfo.cc:509
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
virtual float strip(const LocalPoint &) const =0
Definition: DetId.h:20
iterator begin()
virtual const GeomDetType & type() const
std::vector< std::pair< PSimHit, int > > theNewSimHitList
T const * product() const
Definition: Handle.h:74
virtual const Topology & topology() const =0
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)

Member Data Documentation

edm::InputTag SiClusterTranslator::fastTrackerClusterCollectionTag_
private

Definition at line 60 of file SiClusterTranslator.h.

Referenced by produce().

const TrackerGeometry* SiClusterTranslator::geometry
private
std::vector<std::pair<PSimHit, int > > SiClusterTranslator::theNewSimHitList
private

Definition at line 52 of file SiClusterTranslator.h.

Referenced by produce().

std::vector<edm::DetSet<PixelDigiSimLink> > SiClusterTranslator::thePixelDigiLinkVector
private

Definition at line 51 of file SiClusterTranslator.h.

Referenced by produce().

std::vector<edm::DetSet<StripDigiSimLink> > SiClusterTranslator::theStripDigiLinkVector
private

Definition at line 50 of file SiClusterTranslator.h.

Referenced by produce().