CMS 3D CMS Logo

FWCSCSegmentProxyBuilder.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Muons
4 // Class : FWCSCSegmentProxyBuilder
5 //
6 // Implementation:
7 // <Notes on implementation>
8 //
9 // Original Author:
10 // Created: Sun Jan 6 23:57:00 EST 2008
11 //
12 
13 #include "TEveGeoNode.h"
14 #include "TEveStraightLineSet.h"
15 #include "TGeoArb8.h"
16 
21 
23 
25 {
26 public:
28  ~FWCSCSegmentProxyBuilder( void ) override {}
29 
31 
32 private:
35 
37  void build( const CSCSegment& iData, unsigned int iIndex, TEveElement& oItemHolder, const FWViewContext* ) override;
38 };
39 
40 void
42  unsigned int iIndex, TEveElement& oItemHolder, const FWViewContext* )
43 {
44  const FWGeometry *geom = item()->getGeom();
45  unsigned int rawid = iData.cscDetId().rawId();
46 
47  if( ! geom->contains( rawid ))
48  {
49  fwLog(fwlog::kError) << "failed to get geometry of CSC chamber with rawid: "
50  << rawid << std::endl;
51  return;
52  }
53 
54  TEveStraightLineSet* segmentSet = new TEveStraightLineSet();
55  // FIXME: This should be set elsewhere.
56  segmentSet->SetLineWidth( 3 );
57  setupAddElement( segmentSet, &oItemHolder );
58 
59  TEveGeoShape* shape = item()->getGeom()->getEveShape( rawid );
60  if( TGeoTrap* trap = dynamic_cast<TGeoTrap*>( shape->GetShape())) // Trapezoidal
61  {
62  LocalPoint pos = iData.localPosition();
63  LocalVector dir = iData.localDirection();
64  LocalVector unit = dir.unit();
65 
66  Double_t localPosition[3] = { pos.x(), pos.y(), pos.z() };
67  Double_t localDirectionIn[3] = { dir.x(), dir.y(), dir.z() };
68  Double_t localDirectionOut[3] = { -dir.x(), -dir.y(), -dir.z() };
69 
70  float distIn = trap->DistFromInside( localPosition, localDirectionIn );
71  float distOut = trap->DistFromInside( localPosition, localDirectionOut );
72  LocalVector vIn = unit * distIn;
73  LocalVector vOut = -unit * distOut;
74  float localSegmentInnerPoint[3] = { static_cast<float>(localPosition[0] + vIn.x()),
75  static_cast<float>(localPosition[1] + vIn.y()),
76  static_cast<float>(localPosition[2] + vIn.z())
77  };
78 
79  float localSegmentOuterPoint[3] = { static_cast<float>(localPosition[0] + vOut.x()),
80  static_cast<float>(localPosition[1] + vOut.y()),
81  static_cast<float>(localPosition[2] + vOut.z())
82  };
83 
84  float globalSegmentInnerPoint[3];
85  float globalSegmentOuterPoint[3];
86 
87  geom->localToGlobal( rawid, localSegmentInnerPoint, globalSegmentInnerPoint, localSegmentOuterPoint, globalSegmentOuterPoint );
88 
89  segmentSet->AddLine( globalSegmentInnerPoint[0], globalSegmentInnerPoint[1], globalSegmentInnerPoint[2],
90  globalSegmentOuterPoint[0], globalSegmentOuterPoint[1], globalSegmentOuterPoint[2] );
91  }
92 }
93 
95 
96 
#define REGISTER_PROXYBUILDER_METHODS()
#define REGISTER_FWPROXYBUILDER(_name_, _type_, _purpose_, _view_)
CSCDetId cscDetId() const
Definition: CSCSegment.h:69
LocalVector localDirection() const override
Local direction.
Definition: CSCSegment.h:41
static const int kAllRPZBits
Definition: FWViewType.h:58
void setupAddElement(TEveElement *el, TEveElement *parent, bool set_color=true) const
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:50
T y() const
Definition: PV3DBase.h:63
const FWEventItem * item() const
static const int kAll3DBits
Definition: FWViewType.h:59
TEveGeoShape * getEveShape(unsigned int id) const
Definition: FWGeometry.cc:298
T z() const
Definition: PV3DBase.h:64
void localToGlobal(unsigned int id, const float *local, float *global, bool translatep=true) const
Definition: FWGeometry.cc:478
LocalPoint localPosition() const override
Definition: CSCSegment.h:38
bool contains(unsigned int id) const
Definition: FWGeometry.h:117
Vector3DBase unit() const
Definition: Vector3DBase.h:57
#define fwLog(_level_)
Definition: fwLog.h:50
const FWCSCSegmentProxyBuilder & operator=(const FWCSCSegmentProxyBuilder &)=delete
dbl *** dir
Definition: mlp_gen.cc:35
T x() const
Definition: PV3DBase.h:62
const FWGeometry * getGeom() const
Definition: FWEventItem.cc:686