CMS 3D CMS Logo

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

Public Member Functions

 FWCSCStripDigiProxyBuilder ()
 
 FWCSCStripDigiProxyBuilder (const FWCSCStripDigiProxyBuilder &)=delete
 
const FWCSCStripDigiProxyBuilderoperator= (const FWCSCStripDigiProxyBuilder &)=delete
 
const std::string & purpose () const
 
const std::string & typeName () const
 
const std::string & view () const
 
 ~FWCSCStripDigiProxyBuilder () 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
 

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 23 of file FWCSCStripDigiProxyBuilder.cc.

Constructor & Destructor Documentation

◆ FWCSCStripDigiProxyBuilder() [1/2]

FWCSCStripDigiProxyBuilder::FWCSCStripDigiProxyBuilder ( )
inline

Definition at line 25 of file FWCSCStripDigiProxyBuilder.cc.

25 {}

◆ ~FWCSCStripDigiProxyBuilder()

FWCSCStripDigiProxyBuilder::~FWCSCStripDigiProxyBuilder ( )
inlineoverride

Definition at line 26 of file FWCSCStripDigiProxyBuilder.cc.

26 {}

◆ FWCSCStripDigiProxyBuilder() [2/2]

FWCSCStripDigiProxyBuilder::FWCSCStripDigiProxyBuilder ( const FWCSCStripDigiProxyBuilder )
delete

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 }
size_t size() const
Definition: FWEventItem.cc:457
virtual void buildViewType(const FWEventItem *iItem, TEveElementList *, FWViewType::EType, const FWViewContext *)
std::vector< Product * >::iterator Product_it
std::vector< Product * > m_products
virtual bool haveSingleProduct() const
const FWEventItem * m_item
void added(TEveElement *, unsigned int)
#define fwLog(_level_)
Definition: fwLog.h:45
const std::string & name() const
Definition: FWEventItem.cc:435
FWInteractionList * m_interactionList
const FWEventItem * item() const
def exit(msg="")

◆ 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 }
assert(be >=bs)

◆ build() [3/3]

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

Reimplemented from FWProxyBuilderBase.

Definition at line 39 of file FWCSCStripDigiProxyBuilder.cc.

References DummyCfis::c, FWProxyBuilderBase::createCompound(), fwLog, relativeConstraints::geom, FWEventItem::get(), FWEventItem::getGeom(), fwlog::kWarning, FastTimerService_cff::range, FWProxyBuilderBase::setupAddElement(), l1trig_cff::shape, and funct::tan().

39  {
40  const CSCStripDigiCollection* digis = nullptr;
41 
42  iItem->get(digis);
43 
44  if (!digis) {
45  fwLog(fwlog::kWarning) << "failed to get CSCStripDigis" << std::endl;
46  return;
47  }
48  const FWGeometry* geom = iItem->getGeom();
49 
50  int thresholdOffset = 9;
51 
52  for (CSCStripDigiCollection::DigiRangeIterator dri = digis->begin(), driEnd = digis->end(); dri != driEnd; ++dri) {
53  unsigned int rawid = (*dri).first.rawId();
54  const CSCStripDigiCollection::Range& range = (*dri).second;
55 
56  if (!geom->contains(rawid)) {
57  fwLog(fwlog::kWarning) << "failed to get geometry of CSC with detid: " << rawid << std::endl;
58 
59  TEveCompound* compound = createCompound();
60  setupAddElement(compound, product);
61 
62  continue;
63  }
64 
65  const float* shape = geom->getShapePars(rawid);
66  float length = shape[4];
67 
68  const float* parameters = geom->getParameters(rawid);
69 
70  float yAxisOrientation = parameters[0];
71  float centreToIntersection = parameters[1];
72  float yCentre = parameters[2];
73  float phiOfOneEdge = parameters[3];
74  float stripOffset = parameters[4];
75  float angularWidth = parameters[5];
76 
77  for (CSCStripDigiCollection::const_iterator dit = range.first; dit != range.second; ++dit) {
78  std::vector<int> adcCounts = (*dit).getADCCounts();
79 
80  int signalThreshold = (adcCounts[0] + adcCounts[1]) / 2 + thresholdOffset;
81 
82  TEveStraightLineSet* stripDigiSet = new TEveStraightLineSet();
83  setupAddElement(stripDigiSet, product);
84 
85  if (std::find_if(adcCounts.begin(), adcCounts.end(), [&](auto c) { return c > signalThreshold; }) !=
86  adcCounts.end()) {
87  stripDigiSet->SetLineWidth(3);
88  int stripId = (*dit).getStrip();
89 
90  float yOrigin = centreToIntersection - yCentre;
91  float stripAngle = phiOfOneEdge + yAxisOrientation * (stripId - (0.5 - stripOffset)) * angularWidth;
92  float tanStripAngle = tan(stripAngle);
93  //float xOfStrip = yAxisOrientation*yOrigin*tanStripAngle; this is x of strip at origin
94 
95  float localPointTop[3] = {yAxisOrientation * (yOrigin + length) * tanStripAngle, length, 0.0};
96 
97  float localPointBottom[3] = {yAxisOrientation * (yOrigin - length) * tanStripAngle, -length, 0.0};
98 
99  float globalPointTop[3];
100  float globalPointBottom[3];
101 
102  geom->localToGlobal(rawid, localPointTop, globalPointTop, localPointBottom, globalPointBottom);
103 
104  stripDigiSet->AddLine(globalPointBottom[0],
105  globalPointBottom[1],
106  globalPointBottom[2],
107  globalPointTop[0],
108  globalPointTop[1],
109  globalPointTop[2]);
110  }
111  }
112  }
113 }
void setupAddElement(TEveElement *el, TEveElement *parent, bool set_color=true) const
void get(const T *&oData) const
Definition: FWEventItem.h:78
Tan< T >::type tan(const T &t)
Definition: Tan.h:22
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< DigiType >::const_iterator const_iterator

◆ classPurpose()

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

Definition at line 118 of file FWCSCStripDigiProxyBuilder.cc.

◆ classRegisterTypeName()

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

Definition at line 118 of file FWCSCStripDigiProxyBuilder.cc.

◆ classTypeName()

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

Definition at line 118 of file FWCSCStripDigiProxyBuilder.cc.

◆ classView()

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

Definition at line 118 of file FWCSCStripDigiProxyBuilder.cc.

◆ operator=()

const FWCSCStripDigiProxyBuilder& FWCSCStripDigiProxyBuilder::operator= ( const FWCSCStripDigiProxyBuilder )
delete

◆ purpose()

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

Definition at line 28 of file FWCSCStripDigiProxyBuilder.cc.

◆ typeName()

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

Definition at line 28 of file FWCSCStripDigiProxyBuilder.cc.

◆ view()

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

Definition at line 28 of file FWCSCStripDigiProxyBuilder.cc.