CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FWGEMDigiProxyBuilder.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Muon
4 // Class : FWGEMDigiProxyBuilder
5 //
6 // Implementation:
7 // <Notes on implementation>
8 //
9 // Original Author: mccauley
10 // Created: Sun Jan 6 23:57:00 EST 2008
11 // $Id: FWRPCDigiProxyBuilder.cc,v 1.14 2010/09/07 15:46:48 yana Exp $
12 // $Id: FWGEMDigiProxyBuilder.cc,v 1.15 2013/10/10 22:06:00 YusangKim$
13 //
14 
15 #include "TEveStraightLineSet.h"
16 #include "TEveCompound.h"
17 #include "TEveGeoNode.h"
18 
23 
25 
27 {
28 public:
31 
33 
34 private:
35  virtual void build(const FWEventItem* iItem, TEveElementList* product, const FWViewContext*);
38 };
39 
40 void
41 FWGEMDigiProxyBuilder::build(const FWEventItem* iItem, TEveElementList* product, const FWViewContext*)
42 {
43  const GEMDigiCollection* digis = 0;
44 
45  iItem->get(digis);
46 
47  if ( ! digis )
48  {
49  fwLog(fwlog::kWarning)<<"Failed to get GEMDigis"<<std::endl;
50  return;
51  }
52  const FWGeometry *geom = iItem->getGeom();
53 
54  for ( GEMDigiCollection::DigiRangeIterator dri = digis->begin(), driEnd = digis->end();
55  dri != driEnd; ++dri )
56  {
57  unsigned int rawid = (*dri).first.rawId();
58  const GEMDigiCollection::Range& range = (*dri).second;
59 
60  if( ! geom->contains( rawid ))
61  {
62  fwLog( fwlog::kWarning ) << "Failed to get geometry of GEM roll with detid: "
63  << rawid << std::endl;
64 
65  TEveCompound* compound = createCompound();
66  setupAddElement( compound, product );
67 
68  continue;
69  }
70 
71  const float* parameters = geom->getParameters( rawid );
72  float nStrips = parameters[0];
73  float halfStripLength = parameters[1]*0.5;
74  float pitch = parameters[2];
75  float offset = -0.5*nStrips*pitch;
76 
77  for( GEMDigiCollection::const_iterator dit = range.first;
78  dit != range.second; ++dit )
79  {
80  TEveStraightLineSet* stripDigiSet = new TEveStraightLineSet;
81  stripDigiSet->SetLineWidth(3);
82  setupAddElement( stripDigiSet, product );
83 
84  int strip = (*dit).strip();
85  float centreOfStrip = (strip-0.5)*pitch + offset;
86 
87  float localPointTop[3] =
88  {
89  centreOfStrip, halfStripLength, 0.0
90  };
91 
92  float localPointBottom[3] =
93  {
94  centreOfStrip, -halfStripLength, 0.0
95  };
96 
97  float globalPointTop[3];
98  float globalPointBottom[3];
99 
100  geom->localToGlobal( rawid, localPointTop, globalPointTop, localPointBottom, globalPointBottom );
101 
102  stripDigiSet->AddLine(globalPointTop[0], globalPointTop[1], globalPointTop[2],
103  globalPointBottom[0], globalPointBottom[1], globalPointBottom[2]);
104  }
105  }
106 }
107 
110 
dictionary parameters
Definition: Parameters.py:2
#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:293
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
const FWGEMDigiProxyBuilder & operator=(const FWGEMDigiProxyBuilder &)
void localToGlobal(unsigned int id, const float *local, float *global, bool translatep=true) const
Definition: FWGeometry.cc:325
bool contains(unsigned int id) const
Definition: FWGeometry.h:98
unsigned int offset(bool)
#define fwLog(_level_)
Definition: fwLog.h:50
std::vector< GEMDigi >::const_iterator const_iterator
TEveCompound * createCompound(bool set_color=true, bool propagate_color_to_all_children=false) const
std::pair< const_iterator, const_iterator > Range
const FWGeometry * getGeom() const
Definition: FWEventItem.cc:681