CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions
FWCSCSegmentProxyBuilder Class Reference
Inheritance diagram for FWCSCSegmentProxyBuilder:
FWSimpleProxyBuilderTemplate< CSCSegment > FWSimpleProxyBuilder FWProxyBuilderBase

Public Member Functions

 FWCSCSegmentProxyBuilder (void)
 
 REGISTER_PROXYBUILDER_METHODS ()
 
virtual ~FWCSCSegmentProxyBuilder (void)
 
- Public Member Functions inherited from FWSimpleProxyBuilderTemplate< CSCSegment >
 FWSimpleProxyBuilderTemplate ()
 
- Public Member Functions inherited from FWSimpleProxyBuilder
 FWSimpleProxyBuilder (const std::type_info &iType)
 
virtual ~FWSimpleProxyBuilder ()
 
- Public Member Functions inherited from FWProxyBuilderBase
void build ()
 
virtual bool canHandle (const FWEventItem &)
 
const fireworks::Contextcontext () const
 
TEveElementList * createProduct (FWViewType::EType, const FWViewContext *)
 
 FWProxyBuilderBase ()
 
bool getHaveWindow () const
 
virtual bool havePerViewProduct (FWViewType::EType) const
 
virtual bool haveSingleProduct () const
 
const FWEventItemitem () const
 
virtual void itemBeingDestroyed (const FWEventItem *)
 
void itemChanged (const FWEventItem *)
 
int layer () const
 
void modelChanges (const FWModelIds &)
 
void removePerViewProduct (FWViewType::EType, const FWViewContext *vc)
 
void scaleChanged (const FWViewContext *)
 
void setHaveWindow (bool iFlag)
 
virtual void setInteractionList (FWInteractionList *, const std::string &)
 
virtual void setItem (const FWEventItem *iItem)
 
void setupAddElement (TEveElement *el, TEveElement *parent, bool set_color=true) const
 
void setupElement (TEveElement *el, bool color=true) const
 
virtual bool willHandleInteraction () const
 
virtual ~FWProxyBuilderBase ()
 

Private Member Functions

void build (const CSCSegment &iData, unsigned int iIndex, TEveElement &oItemHolder, const FWViewContext *) override
 
 FWCSCSegmentProxyBuilder (const FWCSCSegmentProxyBuilder &)
 
const FWCSCSegmentProxyBuilderoperator= (const FWCSCSegmentProxyBuilder &)
 

Additional Inherited Members

- Static Public Member Functions inherited from FWSimpleProxyBuilder
static std::string typeOfBuilder ()
 Used by the plugin system to determine how the proxy uses the data from FWEventItem. More...
 
- Static Public Member Functions inherited from FWProxyBuilderBase
static bool representsSubPart ()
 
static std::string typeOfBuilder ()
 Used by the plugin system to determine how the proxy uses the data from FWEventItem. More...
 
- Protected Types inherited from FWProxyBuilderBase
typedef std::vector< Product * >
::iterator 
Product_it
 
- Protected Member Functions inherited from FWSimpleProxyBuilderTemplate< CSCSegment >
const CSCSegmentmodelData (int index)
 
- Protected Member Functions inherited from FWSimpleProxyBuilder
virtual void build (const FWEventItem *iItem, TEveElementList *product, const FWViewContext *)
 
virtual void buildViewType (const FWEventItem *iItem, TEveElementList *product, FWViewType::EType viewType, const FWViewContext *)
 
virtual void clean ()
 
- Protected Member Functions inherited from FWProxyBuilderBase
virtual void cleanLocal ()
 
TEveCompound * createCompound (bool set_color=true, bool propagate_color_to_all_children=false) const
 
 FWProxyBuilderBase (const FWProxyBuilderBase &)
 
void increaseComponentTransparency (unsigned int index, TEveElement *holder, const std::string &name, Char_t transpOffset)
 
virtual void localModelChanges (const FWModelId &iId, TEveElement *iCompound, FWViewType::EType viewType, const FWViewContext *vc)
 
virtual void modelChanges (const FWModelIds &, Product *)
 
const FWProxyBuilderBaseoperator= (const FWProxyBuilderBase &)
 
virtual void scaleProduct (TEveElementList *parent, FWViewType::EType, const FWViewContext *vc)
 
- Protected Attributes inherited from FWSimpleProxyBuilder
FWSimpleProxyHelper m_helper
 
- Protected Attributes inherited from FWProxyBuilderBase
std::vector< Product * > m_products
 

Detailed Description

Definition at line 24 of file FWCSCSegmentProxyBuilder.cc.

Constructor & Destructor Documentation

FWCSCSegmentProxyBuilder::FWCSCSegmentProxyBuilder ( void  )
inline

Definition at line 27 of file FWCSCSegmentProxyBuilder.cc.

27 {}
virtual FWCSCSegmentProxyBuilder::~FWCSCSegmentProxyBuilder ( void  )
inlinevirtual

Definition at line 28 of file FWCSCSegmentProxyBuilder.cc.

28 {}
FWCSCSegmentProxyBuilder::FWCSCSegmentProxyBuilder ( const FWCSCSegmentProxyBuilder )
private

Member Function Documentation

void FWCSCSegmentProxyBuilder::build ( const CSCSegment iData,
unsigned int  iIndex,
TEveElement &  oItemHolder,
const FWViewContext  
)
overrideprivatevirtual

iIndex is the index where iData is found in the container from which it came iItemHolder is the object to which you add your own objects which inherit from TEveElement

Reimplemented from FWSimpleProxyBuilderTemplate< CSCSegment >.

Definition at line 40 of file FWCSCSegmentProxyBuilder.cc.

References FWGeometry::contains(), dir, fwLog, relativeConstraints::geom, FWGeometry::getEveShape(), FWEventItem::getGeom(), FWProxyBuilderBase::item(), FWViewType::kAll3DBits, FWViewType::kAllRPZBits, fwlog::kError, FWGeometry::localToGlobal(), REGISTER_FWPROXYBUILDER, FWProxyBuilderBase::setupAddElement(), csvLumiCalc::unit, Vector3DBase< T, FrameTag >::unit(), PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().

42 {
43  const FWGeometry *geom = item()->getGeom();
44  unsigned int rawid = iData.cscDetId().rawId();
45 
46  if( ! geom->contains( rawid ))
47  {
48  fwLog(fwlog::kError) << "failed to get geometry of CSC chamber with rawid: "
49  << rawid << std::endl;
50  return;
51  }
52 
53  TEveStraightLineSet* segmentSet = new TEveStraightLineSet();
54  // FIXME: This should be set elsewhere.
55  segmentSet->SetLineWidth( 3 );
56  setupAddElement( segmentSet, &oItemHolder );
57 
58  TEveGeoShape* shape = item()->getGeom()->getEveShape( rawid );
59  if( TGeoTrap* trap = dynamic_cast<TGeoTrap*>( shape->GetShape())) // Trapezoidal
60  {
61  LocalPoint pos = iData.localPosition();
62  LocalVector dir = iData.localDirection();
63  LocalVector unit = dir.unit();
64 
65  Double_t localPosition[3] = { pos.x(), pos.y(), pos.z() };
66  Double_t localDirectionIn[3] = { dir.x(), dir.y(), dir.z() };
67  Double_t localDirectionOut[3] = { -dir.x(), -dir.y(), -dir.z() };
68 
69  float distIn = trap->DistFromInside( localPosition, localDirectionIn );
70  float distOut = trap->DistFromInside( localPosition, localDirectionOut );
71  LocalVector vIn = unit * distIn;
72  LocalVector vOut = -unit * distOut;
73  float localSegmentInnerPoint[3] = { static_cast<float>(localPosition[0] + vIn.x()),
74  static_cast<float>(localPosition[1] + vIn.y()),
75  static_cast<float>(localPosition[2] + vIn.z())
76  };
77 
78  float localSegmentOuterPoint[3] = { static_cast<float>(localPosition[0] + vOut.x()),
79  static_cast<float>(localPosition[1] + vOut.y()),
80  static_cast<float>(localPosition[2] + vOut.z())
81  };
82 
83  float globalSegmentInnerPoint[3];
84  float globalSegmentOuterPoint[3];
85 
86  geom->localToGlobal( rawid, localSegmentInnerPoint, globalSegmentInnerPoint, localSegmentOuterPoint, globalSegmentOuterPoint );
87 
88  segmentSet->AddLine( globalSegmentInnerPoint[0], globalSegmentInnerPoint[1], globalSegmentInnerPoint[2],
89  globalSegmentOuterPoint[0], globalSegmentOuterPoint[1], globalSegmentOuterPoint[2] );
90  }
91 }
void setupAddElement(TEveElement *el, TEveElement *parent, bool set_color=true) const
T y() const
Definition: PV3DBase.h:63
const FWEventItem * item() const
TEveGeoShape * getEveShape(unsigned int id) const
Definition: FWGeometry.cc:250
string unit
Definition: csvLumiCalc.py:46
T z() const
Definition: PV3DBase.h:64
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:98
Vector3DBase unit() const
Definition: Vector3DBase.h:57
#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
const FWCSCSegmentProxyBuilder& FWCSCSegmentProxyBuilder::operator= ( const FWCSCSegmentProxyBuilder )
private
FWCSCSegmentProxyBuilder::REGISTER_PROXYBUILDER_METHODS ( )