CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FWDTSegmentProxyBuilder.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Muons
4 // Class : FWDTSegmentProxyBuilder
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 "TEvePointSet.h"
16 #include "TGeoArb8.h"
17 
22 
25 
26 #include <vector>
27 
29 {
30 public:
32  virtual ~FWDTSegmentProxyBuilder( void ) {}
33 
34  virtual bool haveSingleProduct() const override { return false; }
35 
37 
38 private:
41 
43  void buildViewType( const DTRecSegment4D& iData, unsigned int iIndex, TEveElement& oItemHolder, FWViewType::EType type, const FWViewContext* ) override;
44 };
45 
46 void
48  unsigned int iIndex, TEveElement& oItemHolder, FWViewType::EType type, const FWViewContext* )
49 {
50  unsigned int rawid = iData.chamberId().rawId();
51  const FWGeometry *geom = item()->getGeom();
52 
53  if( ! geom->contains( rawid ))
54  {
55  fwLog( fwlog::kError ) << "failed to get geometry of DT chamber with detid: "
56  << rawid << std::endl;
57  return;
58  }
59 
60  TEveStraightLineSet* segmentSet = new TEveStraightLineSet();
61  // FIXME: This should be set elsewhere.
62  segmentSet->SetLineWidth( 3 );
63  setupAddElement( segmentSet, &oItemHolder );
64 
65  TEveGeoShape* shape = item()->getGeom()->getEveShape( rawid );
66  if( shape )
67  {
68  if( TGeoBBox* box = dynamic_cast<TGeoBBox*>( shape->GetShape()))
69  {
70  LocalPoint pos = iData.localPosition();
71  LocalVector dir = iData.localDirection();
72  LocalVector unit = dir.unit();
73 
74  double localPosition[3] = { pos.x(), pos.y(), pos.z() };
75  double localDirectionIn[3] = { dir.x(), dir.y(), dir.z() };
76  double localDirectionOut[3] = { -dir.x(), -dir.y(), -dir.z() };
77 
78  // In RhoZ view, draw segments at the middle of the chamber, otherwise they won't align with 1D rechits,
79  // for which only one coordinate is known.
80  if (type == FWViewType::kRhoZ) {
81  localPosition[0]=0;
82  localDirectionIn[0]=0;
83  localDirectionOut[0]=0;
84  }
85 
86  Double_t distIn = box->DistFromInside( localPosition, localDirectionIn );
87  Double_t distOut = box->DistFromInside( localPosition, localDirectionOut );
88  LocalVector vIn = unit * distIn;
89  LocalVector vOut = -unit * distOut;
90  float localSegmentInnerPoint[3] = { static_cast<float>(localPosition[0] + vIn.x()),
91  static_cast<float>(localPosition[1] + vIn.y()),
92  static_cast<float>(localPosition[2] + vIn.z())
93  };
94 
95  float localSegmentOuterPoint[3] = { static_cast<float>(localPosition[0] + vOut.x()),
96  static_cast<float>(localPosition[1] + vOut.y()),
97  static_cast<float>(localPosition[2] + vOut.z())
98  };
99 
100  float globalSegmentInnerPoint[3];
101  float globalSegmentOuterPoint[3];
102 
103  geom->localToGlobal( rawid, localSegmentInnerPoint, globalSegmentInnerPoint, localSegmentOuterPoint, globalSegmentOuterPoint );
104 
105  segmentSet->AddLine( globalSegmentInnerPoint[0], globalSegmentInnerPoint[1], globalSegmentInnerPoint[2],
106  globalSegmentOuterPoint[0], globalSegmentOuterPoint[1], globalSegmentOuterPoint[2] );
107 
108 
109  // Draw hits included in the segment
110  TEvePointSet* pointSet = new TEvePointSet;
111  // FIXME: This should be set elsewhere.
112  pointSet->SetMarkerSize(1.5);
113  setupAddElement( pointSet, &oItemHolder );
114 
115  std::vector<DTRecHit1D> recHits;
116  const DTChamberRecSegment2D* phiSeg = iData.phiSegment();
117  const DTSLRecSegment2D* zSeg = iData.zSegment();
118  if (phiSeg) {
119  std::vector<DTRecHit1D> phiRecHits = phiSeg->specificRecHits();
120  copy(phiRecHits.begin(), phiRecHits.end(), back_inserter(recHits));
121  }
122  if (zSeg) {
123  std::vector<DTRecHit1D> zRecHits = zSeg->specificRecHits();
124  copy(zRecHits.begin(), zRecHits.end(), back_inserter(recHits));
125  }
126 
127  for (std::vector<DTRecHit1D>::const_iterator rh=recHits.begin(); rh!=recHits.end(); ++rh){
128  DTLayerId layerId = (*rh).wireId().layerId();
129  LocalPoint hpos = (*rh).localPosition();
130  float hitLocalPos[3]= {hpos.x(), hpos.y(), hpos.z()};
131  if (type == FWViewType::kRhoZ) {
132  // In RhoZ view, draw hits at the middle of the layer in the global Z coordinate,
133  // otherwise they won't align with 1D rechits, for which only one coordinate is known.
134  if (layerId.superLayer()==2) {
135  hitLocalPos[1]=0;
136  } else {
137  hitLocalPos[0]=0;
138  }
139  }
140  float hitGlobalPoint[3];
141  geom->localToGlobal(layerId, hitLocalPos, hitGlobalPoint);
142  pointSet->SetNextPoint(hitGlobalPoint[0], hitGlobalPoint[1], hitGlobalPoint[2]);
143  }
144  }
145  }
146 }
147 
149 
150 
type
Definition: HCALResponse.h:21
#define REGISTER_PROXYBUILDER_METHODS()
#define REGISTER_FWPROXYBUILDER(_name_, _type_, _purpose_, _view_)
static const int kAllRPZBits
Definition: FWViewType.h:58
const DTChamberRecSegment2D * phiSegment() const
The superPhi segment: 0 if no phi projection available.
void setupAddElement(TEveElement *el, TEveElement *parent, bool set_color=true) const
T y() const
Definition: PV3DBase.h:63
virtual DTChamberId chamberId() const
The (specific) DetId of the chamber on which the segment resides.
const FWEventItem * item() const
static const int kAll3DBits
Definition: FWViewType.h:59
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
virtual LocalVector localDirection() const
Local direction in Chamber frame.
TEveGeoShape * getEveShape(unsigned int id) const
Definition: FWGeometry.cc:253
void buildViewType(const DTRecSegment4D &iData, unsigned int iIndex, TEveElement &oItemHolder, FWViewType::EType type, const FWViewContext *) override
string unit
Definition: csvLumiCalc.py:46
T z() const
Definition: PV3DBase.h:64
virtual bool haveSingleProduct() const override
void localToGlobal(unsigned int id, const float *local, float *global, bool translatep=true) const
Definition: FWGeometry.cc:328
int superLayer() const
Return the superlayer number.
bool contains(unsigned int id) const
Definition: FWGeometry.h:109
const FWDTSegmentProxyBuilder & operator=(const FWDTSegmentProxyBuilder &)
virtual LocalPoint localPosition() const
Local position in Chamber frame.
std::vector< DTRecHit1D > specificRecHits() const
Access to specific components.
Vector3DBase unit() const
Definition: Vector3DBase.h:57
const DTSLRecSegment2D * zSegment() const
The Z segment: 0 if not zed projection available.
#define fwLog(_level_)
Definition: fwLog.h:50
dbl *** dir
Definition: mlp_gen.cc:35
T x() const
Definition: PV3DBase.h:62
const FWGeometry * getGeom() const
Definition: FWEventItem.cc:681