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:
36  virtual void build(const FWEventItem* iItem, TEveElementList* product, const FWViewContext*);
39 };
40 
41 void
42 FWGEMDigiProxyBuilder::build(const FWEventItem* iItem, TEveElementList* product, const FWViewContext*)
43 {
44  const GEMDigiCollection* digis = 0;
45 
46  iItem->get(digis);
47 
48  if ( ! digis )
49  {
50  fwLog(fwlog::kWarning)<<"Failed to get GEMDigis"<<std::endl;
51  return;
52  }
53  const FWGeometry *geom = iItem->getGeom();
54 
55  for ( GEMDigiCollection::DigiRangeIterator dri = digis->begin(), driEnd = digis->end();
56  dri != driEnd; ++dri )
57  {
58  unsigned int rawid = (*dri).first.rawId();
59  const GEMDigiCollection::Range& range = (*dri).second;
60 
61  if( ! geom->contains( rawid ))
62  {
63  fwLog( fwlog::kWarning ) << "Failed to get geometry of GEM roll with detid: "
64  << rawid << std::endl;
65 
66  TEveCompound* compound = createCompound();
67  setupAddElement( compound, product );
68 
69  continue;
70  }
71 
72  const float* parameters = geom->getParameters( rawid );
73  float nStrips = parameters[0];
74  float halfStripLength = parameters[1]*0.5;
75  float pitch = parameters[2];
76  float offset = -0.5*nStrips*pitch;
77 
78  for( GEMDigiCollection::const_iterator dit = range.first;
79  dit != range.second; ++dit )
80  {
81  TEveStraightLineSet* stripDigiSet = new TEveStraightLineSet;
82  stripDigiSet->SetLineWidth(3);
83  setupAddElement( stripDigiSet, product );
84 
85  int strip = (*dit).strip();
86  float centreOfStrip = (strip-0.5)*pitch + offset;
87 
88  float localPointTop[3] =
89  {
90  centreOfStrip, halfStripLength, 0.0
91  };
92 
93  float localPointBottom[3] =
94  {
95  centreOfStrip, -halfStripLength, 0.0
96  };
97 
98  float globalPointTop[3];
99  float globalPointBottom[3];
100 
101  geom->localToGlobal( rawid, localPointTop, globalPointTop, localPointBottom, globalPointBottom );
102 
103  stripDigiSet->AddLine(globalPointTop[0], globalPointTop[1], globalPointTop[2],
104  globalPointBottom[0], globalPointBottom[1], globalPointBottom[2]);
105  }
106  }
107 }
108 
111 
dictionary parameters
Definition: Parameters.py:2
#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: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:109
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