CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Member Functions
FWCSCWireDigiProxyBuilder Class Reference
Inheritance diagram for FWCSCWireDigiProxyBuilder:
FWProxyBuilderBase

Public Member Functions

 FWCSCWireDigiProxyBuilder ()
 
const std::string & purpose () const
 
const std::string & typeName () const
 
const std::string & view () const
 
 ~FWCSCWireDigiProxyBuilder () override
 
- 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 ()
 

Static Public Member Functions

static const std::string & classPurpose ()
 
static const std::string & classRegisterTypeName ()
 
static const std::string & classTypeName ()
 
static const std::string & classView ()
 
- 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...
 

Private Member Functions

void build ()
 
virtual void build (const FWEventItem *iItem, TEveElementList *product, const FWViewContext *)
 
void build (const FWEventItem *iItem, TEveElementList *product, const FWViewContext *) override
 
 FWCSCWireDigiProxyBuilder (const FWCSCWireDigiProxyBuilder &)=delete
 
double getAverageWireSpacing (const int station, const int ring)
 
double getYOfFirstWire (const int station, const int ring, const double length)
 
const FWCSCWireDigiProxyBuilderoperator= (const FWCSCWireDigiProxyBuilder &)=delete
 

Additional Inherited Members

- Protected Types inherited from FWProxyBuilderBase
typedef std::vector< Product * >::iterator Product_it
 
- Protected Member Functions inherited from FWProxyBuilderBase
virtual void buildViewType (const FWEventItem *iItem, TEveElementList *, FWViewType::EType, const FWViewContext *)
 
virtual void clean ()
 
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)
 
virtual bool visibilityModelChanges (const FWModelId &, TEveElement *, FWViewType::EType, const FWViewContext *)
 
- Protected Attributes inherited from FWProxyBuilderBase
std::vector< Product * > m_products
 

Detailed Description

Definition at line 25 of file FWCSCWireDigiProxyBuilder.cc.

Constructor & Destructor Documentation

◆ FWCSCWireDigiProxyBuilder() [1/2]

FWCSCWireDigiProxyBuilder::FWCSCWireDigiProxyBuilder ( )
inline

Definition at line 27 of file FWCSCWireDigiProxyBuilder.cc.

27 {}

◆ ~FWCSCWireDigiProxyBuilder()

FWCSCWireDigiProxyBuilder::~FWCSCWireDigiProxyBuilder ( )
inlineoverride

Definition at line 28 of file FWCSCWireDigiProxyBuilder.cc.

28 {}

◆ FWCSCWireDigiProxyBuilder() [2/2]

FWCSCWireDigiProxyBuilder::FWCSCWireDigiProxyBuilder ( const FWCSCWireDigiProxyBuilder )
privatedelete

Member Function Documentation

◆ build() [1/3]

void FWProxyBuilderBase::build
private

Definition at line 110 of file FWProxyBuilderBase.cc.

110  {
111  if (m_item) {
112  try {
113  size_t itemSize = m_item->size(); //cashed
114 
115  clean();
116  for (Product_it i = m_products.begin(); i != m_products.end(); ++i) {
117  //printf("build() %s \n", m_item->name().c_str());
118  TEveElementList* elms = (*i)->m_elements;
119  size_t oldSize = elms->NumChildren();
120 
121  if (haveSingleProduct()) {
122  build(m_item, elms, (*i)->m_viewContext);
123  } else {
124  buildViewType(m_item, elms, (*i)->m_viewType, (*i)->m_viewContext);
125  }
126 
127  // Project all children of current product.
128  // If product is not registered into any projection-manager,
129  // this does nothing.
130  TEveProjectable* pable = dynamic_cast<TEveProjectable*>(elms);
131  if (pable->HasProjecteds()) {
132  // loop projected holders
133  for (TEveProjectable::ProjList_i i = pable->BeginProjecteds(); i != pable->EndProjecteds(); ++i) {
134  TEveProjectionManager* pmgr = (*i)->GetManager();
135  Float_t oldDepth = pmgr->GetCurrentDepth();
136  pmgr->SetCurrentDepth(item()->layer());
137  size_t cnt = 0;
138 
139  TEveElement* projectedAsElement = (*i)->GetProjectedAsElement();
140  TEveElement::List_i parentIt = projectedAsElement->BeginChildren();
141  for (TEveElement::List_i prodIt = elms->BeginChildren(); prodIt != elms->EndChildren(); ++prodIt, ++cnt) {
142  // reused projected holder
143  if (cnt < oldSize) {
144  if ((*parentIt)->NumChildren()) {
145  // update projected (mislleading name)
146  for (TEveElement::List_i pci = (*parentIt)->BeginChildren(); pci != (*parentIt)->EndChildren(); pci++)
147  pmgr->ProjectChildrenRecurse(*parentIt);
148  } else {
149  // import projectable
150  pmgr->SubImportChildren(*prodIt, *parentIt);
151  }
152 
153  ++parentIt;
154  } else if (cnt < itemSize) {
155  // new product holder
156  pmgr->SubImportElements(*prodIt, projectedAsElement);
157  } else {
158  break;
159  }
160  }
161  pmgr->SetCurrentDepth(oldDepth);
162  }
163  }
164 
165  if (m_interactionList && itemSize > oldSize) {
166  TEveElement::List_i elIt = elms->BeginChildren();
167  for (size_t cnt = 0; cnt < itemSize; ++cnt, ++elIt) {
168  if (cnt >= oldSize)
169  m_interactionList->added(*elIt, cnt);
170  }
171  }
172  }
173  } catch (const std::runtime_error& iException) {
174  fwLog(fwlog::kError) << "Caught exception in build function for item " << m_item->name() << ":\n"
175  << iException.what() << std::endl;
176  exit(1);
177  }
178  }
179  m_mustBuild = false;
180 }

◆ build() [2/3]

void FWProxyBuilderBase::build
private

Definition at line 328 of file FWProxyBuilderBase.cc.

328  {
329  assert(
330  "virtual build(const FWEventItem*, TEveElementList*, const FWViewContext*) not implemented by inherited class");
331 }

◆ build() [3/3]

void FWCSCWireDigiProxyBuilder::build ( const FWEventItem iItem,
TEveElementList *  product,
const FWViewContext  
)
overrideprivatevirtual

Reimplemented from FWProxyBuilderBase.

Definition at line 95 of file FWCSCWireDigiProxyBuilder.cc.

95  {
96  const CSCWireDigiCollection* digis = nullptr;
97 
98  iItem->get(digis);
99 
100  if (!digis) {
101  fwLog(fwlog::kWarning) << "Failed to get CSCWireDigis" << std::endl;
102  return;
103  }
104  const FWGeometry* geom = iItem->getGeom();
105 
106  for (CSCWireDigiCollection::DigiRangeIterator dri = digis->begin(), driEnd = digis->end(); dri != driEnd; ++dri) {
107  const CSCDetId& cscDetId = (*dri).first;
108  unsigned int rawid = cscDetId.rawId();
109  const CSCWireDigiCollection::Range& range = (*dri).second;
110 
111  if (!geom->contains(rawid)) {
112  fwLog(fwlog::kWarning) << "Failed to get geometry of CSC chamber with detid: " << rawid << std::endl;
113 
114  TEveCompound* compound = createCompound();
115  setupAddElement(compound, product);
116 
117  continue;
118  }
119 
120  const float* shape = geom->getShapePars(rawid);
121 
122  float length = shape[4];
123  float topWidth = shape[2];
124  float bottomWidth = shape[1];
125 
126  // NOTE: do not use parameters right now: need to sort out what is finally needed
127  //const float* parameters = iItem->getGeom()->getParameters( rawid );
128  //float wireSpacing = parameters[6];
129  double wireSpacing = getAverageWireSpacing(cscDetId.station(), cscDetId.ring());
130  //float wireAngle = parameters[7];
131  //float cosWireAngle = cos(wireAngle);
132 
133  double yOfFirstWire = getYOfFirstWire(cscDetId.station(), cscDetId.ring(), length);
134 
135  for (CSCWireDigiCollection::const_iterator dit = range.first; dit != range.second; ++dit) {
136  TEveStraightLineSet* wireDigiSet = new TEveStraightLineSet();
137  wireDigiSet->SetLineWidth(3);
138  setupAddElement(wireDigiSet, product);
139 
140  int wireGroup = (*dit).getWireGroup();
141  float yOfWire = yOfFirstWire + ((wireGroup - 1) * wireSpacing);
142  float wireLength = yOfWire * (topWidth - bottomWidth) / length;
143  wireLength += bottomWidth * 2.0;
144 
145  float localPointLeft[3] = {static_cast<float>(-wireLength * 0.5), yOfWire, static_cast<float>(0.0)};
146 
147  // NOTE: This is only an approximation for slanted wires.
148  // Need to improve the determination of the x coordinate.
149  float localPointRight[3] = {
150  static_cast<float>(wireLength * 0.5), yOfWire, static_cast<float>(0.0)
151  //wireLength*0.5, yOfWire + wireLength*tan(wireAngle), 0.0
152  };
153 
154  float globalPointLeft[3];
155  float globalPointRight[3];
156 
157  geom->localToGlobal(rawid, localPointLeft, globalPointLeft, localPointRight, globalPointRight);
158 
159  wireDigiSet->AddLine(globalPointLeft[0],
160  globalPointLeft[1],
161  globalPointLeft[2],
162  globalPointRight[0],
163  globalPointRight[1],
164  globalPointRight[2]);
165  }
166  }
167 }

References FWProxyBuilderBase::createCompound(), fwLog, relativeConstraints::geom, FWEventItem::get(), getAverageWireSpacing(), FWEventItem::getGeom(), getYOfFirstWire(), fwlog::kWarning, FastTimerService_cff::range, DetId::rawId(), CSCDetId::ring(), FWProxyBuilderBase::setupAddElement(), and CSCDetId::station().

◆ classPurpose()

const std::string & FWCSCWireDigiProxyBuilder::classPurpose ( )
static

Definition at line 172 of file FWCSCWireDigiProxyBuilder.cc.

◆ classRegisterTypeName()

const std::string & FWCSCWireDigiProxyBuilder::classRegisterTypeName ( )
static

Definition at line 172 of file FWCSCWireDigiProxyBuilder.cc.

◆ classTypeName()

const std::string & FWCSCWireDigiProxyBuilder::classTypeName ( )
static

Definition at line 172 of file FWCSCWireDigiProxyBuilder.cc.

◆ classView()

const std::string & FWCSCWireDigiProxyBuilder::classView ( )
static

Definition at line 172 of file FWCSCWireDigiProxyBuilder.cc.

◆ getAverageWireSpacing()

double FWCSCWireDigiProxyBuilder::getAverageWireSpacing ( const int  station,
const int  ring 
)
private

Definition at line 70 of file FWCSCWireDigiProxyBuilder.cc.

70  {
71  // return radialExtentOfTheWirePlane / numOfWireGroups
72  // These numbers come from cscSpec.xml
73 
74  if (ring == 2) {
75  if (station == 1)
76  return 174.81 / 64;
77  else
78  return 323.38 / 64;
79  }
80 
81  if (station == 1 && (ring == 1 || ring == 4))
82  return 150.5 / 48;
83  if (station == 1 && ring == 3)
84  return 164.47 / 32;
85  if (station == 2 && ring == 1)
86  return 189.97 / 112;
87  if (station == 3 && ring == 1)
88  return 170.01 / 96;
89  if (station == 4 && ring == 1)
90  return 149.73 / 96;
91 
92  return 0.0;
93 }

References relativeConstraints::ring, and relativeConstraints::station.

Referenced by build().

◆ getYOfFirstWire()

double FWCSCWireDigiProxyBuilder::getYOfFirstWire ( const int  station,
const int  ring,
const double  length 
)
private

Definition at line 44 of file FWCSCWireDigiProxyBuilder.cc.

44  {
45  double yAlignmentFrame = 3.49;
46  double alignmentPinToFirstWire;
47 
48  if (station == 1) {
49  if (ring == 1 || ring == 4) {
50  alignmentPinToFirstWire = 1.065;
51  yAlignmentFrame = 0.0;
52  }
53 
54  else // ME12, ME 13
55  alignmentPinToFirstWire = 2.85;
56  }
57 
58  else if (station == 4 && ring == 1)
59  alignmentPinToFirstWire = 3.04;
60 
61  else if (station == 3 && ring == 1)
62  alignmentPinToFirstWire = 2.84;
63 
64  else // ME21, ME22, ME32, ME42
65  alignmentPinToFirstWire = 2.87;
66 
67  return (yAlignmentFrame - length) + alignmentPinToFirstWire;
68 }

References relativeConstraints::ring, and relativeConstraints::station.

Referenced by build().

◆ operator=()

const FWCSCWireDigiProxyBuilder& FWCSCWireDigiProxyBuilder::operator= ( const FWCSCWireDigiProxyBuilder )
privatedelete

◆ purpose()

const std::string& FWCSCWireDigiProxyBuilder::purpose ( ) const
inline

Definition at line 30 of file FWCSCWireDigiProxyBuilder.cc.

32 :

◆ typeName()

const std::string& FWCSCWireDigiProxyBuilder::typeName ( ) const
inline

Definition at line 30 of file FWCSCWireDigiProxyBuilder.cc.

32 :

◆ view()

const std::string& FWCSCWireDigiProxyBuilder::view ( ) const
inline

Definition at line 30 of file FWCSCWireDigiProxyBuilder.cc.

32 :
FastTimerService_cff.range
range
Definition: FastTimerService_cff.py:34
fwLog
#define fwLog(_level_)
Definition: fwLog.h:45
mps_fire.i
i
Definition: mps_fire.py:428
FWGeometry
Definition: FWGeometry.h:27
FWProxyBuilderBase::m_item
const FWEventItem * m_item
Definition: FWProxyBuilderBase.h:145
relativeConstraints.station
station
Definition: relativeConstraints.py:67
CSCDetId::ring
int ring() const
Definition: CSCDetId.h:68
FWEventItem::get
void get(const T *&oData) const
Definition: FWEventItem.h:78
cms::cuda::assert
assert(be >=bs)
FWProxyBuilderBase::createCompound
TEveCompound * createCompound(bool set_color=true, bool propagate_color_to_all_children=false) const
Definition: FWProxyBuilderBase.cc:374
MuonDigiCollection::const_iterator
std::vector< DigiType >::const_iterator const_iterator
Definition: MuonDigiCollection.h:94
FWProxyBuilderBase::layer
int layer() const
Definition: FWProxyBuilderBase.cc:414
FWProxyBuilderBase::m_mustBuild
bool m_mustBuild
Definition: FWProxyBuilderBase.h:149
relativeConstraints.geom
geom
Definition: relativeConstraints.py:72
FWCSCWireDigiProxyBuilder::getAverageWireSpacing
double getAverageWireSpacing(const int station, const int ring)
Definition: FWCSCWireDigiProxyBuilder.cc:70
FWProxyBuilderBase::buildViewType
virtual void buildViewType(const FWEventItem *iItem, TEveElementList *, FWViewType::EType, const FWViewContext *)
Definition: FWProxyBuilderBase.cc:333
FWInteractionList::added
void added(TEveElement *, unsigned int)
Definition: FWInteractionList.cc:63
FWProxyBuilderBase::clean
virtual void clean()
Definition: FWProxyBuilderBase.cc:314
FWCSCWireDigiProxyBuilder::getYOfFirstWire
double getYOfFirstWire(const int station, const int ring, const double length)
Definition: FWCSCWireDigiProxyBuilder.cc:44
CSCDetId
Definition: CSCDetId.h:26
FWProxyBuilderBase::Product_it
std::vector< Product * >::iterator Product_it
Definition: FWProxyBuilderBase.h:133
FWProxyBuilderBase::setupAddElement
void setupAddElement(TEveElement *el, TEveElement *parent, bool set_color=true) const
Definition: FWProxyBuilderBase.cc:350
FWProxyBuilderBase::m_interactionList
FWInteractionList * m_interactionList
Definition: FWProxyBuilderBase.h:143
fwlog::kWarning
Definition: fwLog.h:35
FWProxyBuilderBase::build
void build()
Definition: FWProxyBuilderBase.cc:110
FWEventItem::getGeom
const FWGeometry * getGeom() const
Definition: FWEventItem.cc:548
FWProxyBuilderBase::item
const FWEventItem * item() const
Definition: FWProxyBuilderBase.h:64
DetId::rawId
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
CSCWireDigiCollection
relativeConstraints.ring
ring
Definition: relativeConstraints.py:68
MuonDigiCollection::Range
std::pair< const_iterator, const_iterator > Range
Definition: MuonDigiCollection.h:95
fwlog::kError
Definition: fwLog.h:35
FWProxyBuilderBase::haveSingleProduct
virtual bool haveSingleProduct() const
Definition: FWProxyBuilderBase.h:88
FWEventItem::name
const std::string & name() const
Definition: FWEventItem.cc:435
beamvalidation.exit
def exit(msg="")
Definition: beamvalidation.py:53
CSCDetId::station
int station() const
Definition: CSCDetId.h:79
DigiContainerIterator
Definition: MuonDigiCollection.h:30
FWProxyBuilderBase::m_products
std::vector< Product * > m_products
Definition: FWProxyBuilderBase.h:135
FWEventItem::size
size_t size() const
Definition: FWEventItem.cc:457