CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FWSiStripDigiProxyBuilder.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Tracks
4 // Class : FWSiStripDigiProxyBuilder
5 //
6 //
7 // Original Author:
8 // Created: Thu Dec 6 18:01:21 PST 2007
9 //
10 
11 #include "TEveStraightLineSet.h"
12 
18 
22 
24 {
25 public:
27  virtual ~FWSiStripDigiProxyBuilder( void ) {}
28 
30 
31 private:
33  virtual void build( const FWEventItem* iItem, TEveElementList* product, const FWViewContext* ) override;
36 };
37 
38 void
39 FWSiStripDigiProxyBuilder::build( const FWEventItem* iItem, TEveElementList* product, const FWViewContext* )
40 {
41  const edm::DetSetVector<SiStripDigi>* digis = 0;
42 
43  iItem->get( digis );
44 
45  if( ! digis )
46  {
47  return;
48  }
49  const FWGeometry* geom = iItem->getGeom();
50 
51  for( edm::DetSetVector<SiStripDigi>::const_iterator it = digis->begin(), end = digis->end();
52  it != end; ++it )
53  {
54  edm::DetSet<SiStripDigi> ds = *it;
55  const uint32_t& id = ds.id;
56 
57  const float* pars = geom->getParameters( id );
58 
59  for( edm::DetSet<SiStripDigi>::const_iterator idigi = ds.data.begin(), idigiEnd = ds.data.end();
60  idigi != idigiEnd; ++idigi )
61  {
62  TEveStraightLineSet *lineSet = new TEveStraightLineSet;
63  setupAddElement( lineSet, product );
64 
65  if( ! geom->contains( id ))
66  {
68  << "failed get geometry and topology of SiStripDigi with detid: "
69  << id << std::endl;
70  continue;
71  }
72  float localTop[3] = { 0.0, 0.0, 0.0 };
73  float localBottom[3] = { 0.0, 0.0, 0.0 };
74 
75  fireworks::localSiStrip(( *idigi ).strip(), localTop, localBottom, pars, id );
76 
77  float globalTop[3];
78  float globalBottom[3];
79  geom->localToGlobal( id, localTop, globalTop, localBottom, globalBottom );
80 
81  lineSet->AddLine( globalTop[0], globalTop[1], globalTop[2],
82  globalBottom[0], globalBottom[1], globalBottom[2] );
83  } // end of iteration over digis
84  } // end of iteration over the DetSetVector
85 }
86 
#define REGISTER_PROXYBUILDER_METHODS()
#define REGISTER_FWPROXYBUILDER(_name_, _type_, _purpose_, _view_)
static const int kAllRPZBits
Definition: FWViewType.h:58
const float * getParameters(unsigned int id) const
Definition: FWGeometry.cc:296
void setupAddElement(TEveElement *el, TEveElement *parent, bool set_color=true) const
void get(const T *&oData) const
Definition: FWEventItem.h:84
static const int kAll3DBits
Definition: FWViewType.h:59
void localSiStrip(short strip, float *localTop, float *localBottom, const float *pars, unsigned int id)
Definition: TrackUtils.cc:297
void localToGlobal(unsigned int id, const float *local, float *global, bool translatep=true) const
Definition: FWGeometry.cc:328
bool contains(unsigned int id) const
Definition: FWGeometry.h:109
#define end
Definition: vmac.h:37
iterator end()
Return the off-the-end iterator.
Definition: DetSetVector.h:365
#define fwLog(_level_)
Definition: fwLog.h:50
collection_type data
Definition: DetSet.h:78
det_id_type id
Definition: DetSet.h:77
const FWSiStripDigiProxyBuilder & operator=(const FWSiStripDigiProxyBuilder &)
iterator begin()
Return an iterator to the first DetSet.
Definition: DetSetVector.h:350
collection_type::const_iterator const_iterator
Definition: DetSet.h:33
collection_type::const_iterator const_iterator
Definition: DetSetVector.h:108
const FWGeometry * getGeom() const
Definition: FWEventItem.cc:695