CMS 3D CMS Logo

FWRPCDigiProxyBuilder.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Muon
4 // Class : FWRPCDigiProxyBuilder
5 //
6 // Implementation:
7 // <Notes on implementation>
8 //
9 // Original Author: mccauley
10 // Created: Sun Jan 6 23:57:00 EST 2008
11 //
12 
13 #include "TEveStraightLineSet.h"
14 #include "TEveCompound.h"
15 #include "TEveGeoNode.h"
16 
21 
23 
25 public:
27  ~FWRPCDigiProxyBuilder() override {}
28 
30 
31 private:
33  void build(const FWEventItem* iItem, TEveElementList* product, const FWViewContext*) override;
34 
35 public:
38 };
39 
40 void FWRPCDigiProxyBuilder::build(const FWEventItem* iItem, TEveElementList* product, const FWViewContext*) {
41  const RPCDigiCollection* digis = nullptr;
42 
43  iItem->get(digis);
44 
45  if (!digis) {
46  fwLog(fwlog::kWarning) << "Failed to get RPCDigis" << std::endl;
47  return;
48  }
49  const FWGeometry* geom = iItem->getGeom();
50 
51  for (RPCDigiCollection::DigiRangeIterator dri = digis->begin(), driEnd = digis->end(); dri != driEnd; ++dri) {
52  unsigned int rawid = (*dri).first.rawId();
53  const RPCDigiCollection::Range& range = (*dri).second;
54 
55  if (!geom->contains(rawid)) {
56  fwLog(fwlog::kWarning) << "Failed to get geometry of RPC roll with detid: " << rawid << std::endl;
57 
58  TEveCompound* compound = createCompound();
59  setupAddElement(compound, product);
60 
61  continue;
62  }
63 
64  const float* parameters = geom->getParameters(rawid);
65  float nStrips = parameters[0];
66  float halfStripLength = parameters[1] * 0.5;
67  float pitch = parameters[2];
68  float offset = -0.5 * nStrips * pitch;
69 
70  for (RPCDigiCollection::const_iterator dit = range.first; dit != range.second; ++dit) {
71  TEveStraightLineSet* stripDigiSet = new TEveStraightLineSet;
72  stripDigiSet->SetLineWidth(3);
73  setupAddElement(stripDigiSet, product);
74 
75  int strip = (*dit).strip();
76  float centreOfStrip = (strip - 0.5) * pitch + offset;
77 
78  float localPointTop[3] = {centreOfStrip, halfStripLength, 0.0};
79 
80  float localPointBottom[3] = {centreOfStrip, -halfStripLength, 0.0};
81 
82  float globalPointTop[3];
83  float globalPointBottom[3];
84 
85  geom->localToGlobal(rawid, localPointTop, globalPointTop, localPointBottom, globalPointBottom);
86 
87  stripDigiSet->AddLine(globalPointTop[0],
88  globalPointTop[1],
89  globalPointTop[2],
90  globalPointBottom[0],
91  globalPointBottom[1],
92  globalPointBottom[2]);
93  }
94  }
95 }
96 
99  "RPCDigi",
#define REGISTER_PROXYBUILDER_METHODS()
#define REGISTER_FWPROXYBUILDER(_name_, _type_, _purpose_, _view_)
const FWRPCDigiProxyBuilder & operator=(const FWRPCDigiProxyBuilder &)=delete
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
static const int kAll3DBits
Definition: FWViewType.h:68
nStrips
1.2 is to make the matching window safely the two nearest strips 0.35 is the size of an ME0 chamber i...
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
std::pair< const_iterator, const_iterator > Range
std::vector< RPCDigi >::const_iterator const_iterator