CMS 3D CMS Logo

FWSiPixelClusterProxyBuilder.cc
Go to the documentation of this file.
1 
2 // -*- C++ -*-
3 //
4 // Package: Tracks
5 // Class : FWSiPixelClusterProxyBuilder
6 //
7 //
8 // Original Author:
9 // Created: Thu Dec 6 18:01:21 PST 2007
10 //
11 
12 #include "TEvePointSet.h"
13 #include "TEveStraightLineSet.h"
14 #include "TEveCompound.h"
15 #include "TEveBox.h"
21 
23 
25 public:
28 
30 
31  // Disable default copy constructor
33  // Disable default assignment operator
35 
36 private:
38  void build(const FWEventItem* iItem, TEveElementList* product, const FWViewContext*) override;
39 };
40 
41 void FWSiPixelClusterProxyBuilder::build(const FWEventItem* iItem, TEveElementList* product, const FWViewContext*) {
42  const SiPixelClusterCollectionNew* pixels = nullptr;
43 
44  iItem->get(pixels);
45 
46  if (!pixels) {
47  fwLog(fwlog::kWarning) << "failed get SiPixelDigis" << std::endl;
48  return;
49  }
50 
51  for (SiPixelClusterCollectionNew::const_iterator set = pixels->begin(), setEnd = pixels->end(); set != setEnd;
52  ++set) {
53  unsigned int id = set->detId();
54 
55  const FWGeometry* geom = iItem->getGeom();
56  const float* pars = geom->getParameters(id);
57 
59 
60  for (edmNew::DetSet<SiPixelCluster>::const_iterator itc = clusters.begin(), edc = clusters.end(); itc != edc;
61  ++itc) {
62  TEveElement* itemHolder = createCompound();
63  product->AddElement(itemHolder);
64 
65  TEvePointSet* pointSet = new TEvePointSet;
66 
67  if (!geom->contains(id)) {
68  fwLog(fwlog::kWarning) << "failed get geometry of SiPixelCluster with detid: " << id << std::endl;
69  continue;
70  }
71 
72  float localPoint[3] = {
73  fireworks::pixelLocalX((*itc).minPixelRow(), pars), fireworks::pixelLocalY((*itc).minPixelCol(), pars), 0.0};
74 
75  float globalPoint[3];
76  geom->localToGlobal(id, localPoint, globalPoint);
77 
78  pointSet->SetNextPoint(globalPoint[0], globalPoint[1], globalPoint[2]);
79 
80  setupAddElement(pointSet, itemHolder);
81 
82  TEveStraightLineSet* ls = new TEveStraightLineSet();
83  for (int j = 0; j < (*itc).size(); j++) {
84  // float adc= (*itc).pixel(j).adc*0.03/5000.;
85  float adc = 0.025;
86  float offsetx[4] = {-0.4, -0.4, +0.4, +0.4};
87  float offsety[4] = {-0.4, +0.4, +0.4, -0.4};
88  // float vert[24];
89 
90  std::vector<TEveVector> boxCorners;
91  for (int of = 0; of < 8; of++) {
92  float lp[3] = {fireworks::pixelLocalX((*itc).pixel(j).x + offsetx[of % 4], pars),
93  fireworks::pixelLocalY((*itc).pixel(j).y + offsety[of % 4], pars),
94  (of < 4) ? (0.0f) : (adc)};
95 
96  TEveVector p;
97  geom->localToGlobal(id, lp, p.Arr());
98 
99  boxCorners.push_back(p);
100  }
101 
102  // bottom
103  ls->AddLine(boxCorners[0], boxCorners[1]);
104  ls->AddLine(boxCorners[1], boxCorners[2]);
105  ls->AddLine(boxCorners[2], boxCorners[3]);
106  ls->AddLine(boxCorners[3], boxCorners[0]);
107  // top
108  ls->AddLine(boxCorners[4], boxCorners[5]);
109  ls->AddLine(boxCorners[5], boxCorners[6]);
110  ls->AddLine(boxCorners[6], boxCorners[7]);
111  ls->AddLine(boxCorners[7], boxCorners[4]);
112  // sides
113  ls->AddLine(boxCorners[0], boxCorners[4]);
114  ls->AddLine(boxCorners[1], boxCorners[5]);
115  ls->AddLine(boxCorners[2], boxCorners[6]);
116  ls->AddLine(boxCorners[3], boxCorners[7]);
117  }
118 
119  setupAddElement(ls, itemHolder);
120  }
121  }
122 }
123 
126  "SiPixelCluster",
#define REGISTER_PROXYBUILDER_METHODS()
#define REGISTER_FWPROXYBUILDER(_name_, _type_, _purpose_, _view_)
static const int kAllRPZBits
Definition: FWViewType.h:67
void setupAddElement(TEveElement *el, TEveElement *parent, bool set_color=true) const
void get(const T *&oData) const
Definition: FWEventItem.h:78
data_type const * const_iterator
Definition: DetSetNew.h:31
static const int kAll3DBits
Definition: FWViewType.h:68
const_iterator end(bool update=false) const
float pixelLocalX(const double mpx, const float *)
Definition: TrackUtils.cc:159
float pixelLocalY(const double mpy, const float *)
Definition: TrackUtils.cc:209
boost::transform_iterator< IterHelp, const_IdIter > const_iterator
def ls(path, rec=False)
Definition: eostools.py:349
const_iterator begin(bool update=false) const
const FWGeometry * getGeom() const
Definition: FWEventItem.cc:548
#define fwLog(_level_)
Definition: fwLog.h:45
TEveCompound * createCompound(bool set_color=true, bool propagate_color_to_all_children=false) const
const FWSiPixelClusterProxyBuilder & operator=(const FWSiPixelClusterProxyBuilder &)=delete
uint16_t *__restrict__ uint16_t const *__restrict__ adc