CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Member Functions | Protected Attributes | Private Member Functions
FWTauProxyBuilderBase Class Reference

#include <Fireworks/Calo/interface/FWTauProxyBuilderBase.h>

Inheritance diagram for FWTauProxyBuilderBase:
FWProxyBuilderBase FWPFTauProxyBuilder

Public Member Functions

void cleanLocal () override
 
 FWTauProxyBuilderBase ()
 
 FWTauProxyBuilderBase (const FWTauProxyBuilderBase &)=delete
 
bool havePerViewProduct (FWViewType::EType) const override
 
bool haveSingleProduct () const override
 
const FWTauProxyBuilderBaseoperator= (const FWTauProxyBuilderBase &)=delete
 
void scaleProduct (TEveElementList *parent, FWViewType::EType, const FWViewContext *vc) override
 
void setItem (const FWEventItem *iItem) override
 
 ~FWTauProxyBuilderBase () 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
 
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 &)
 
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 ()
 

Protected Member Functions

void buildBaseTau (const reco::BaseTau &iTau, const reco::Jet *iJet, TEveElement *comp, FWViewType::EType type, const FWViewContext *vc)
 
void localModelChanges (const FWModelId &iId, TEveElement *iCompound, FWViewType::EType viewType, const FWViewContext *vc) override
 
- Protected Member Functions inherited from FWProxyBuilderBase
virtual void build (const FWEventItem *iItem, TEveElementList *product, const FWViewContext *)
 
virtual void buildViewType (const FWEventItem *iItem, TEveElementList *, FWViewType::EType, const FWViewContext *)
 
virtual void clean ()
 
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 modelChanges (const FWModelIds &, Product *)
 
const FWProxyBuilderBaseoperator= (const FWProxyBuilderBase &)
 
virtual bool visibilityModelChanges (const FWModelId &, TEveElement *, FWViewType::EType, const FWViewContext *)
 

Protected Attributes

float m_maxTheta
 
float m_minTheta
 
std::vector< double > m_phis
 
- Protected Attributes inherited from FWProxyBuilderBase
std::vector< Product * > m_products
 

Private Member Functions

void addConstituentTracks (const reco::BaseTau &tau, class TEveElement *product)
 
void addLeadTrack (const reco::BaseTau &tau, class TEveElement *product)
 

Additional Inherited Members

- 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
 

Detailed Description

Description: [one line class summary]

Usage: <usage>

Definition at line 39 of file FWTauProxyBuilderBase.h.

Constructor & Destructor Documentation

◆ FWTauProxyBuilderBase() [1/2]

FWTauProxyBuilderBase::FWTauProxyBuilderBase ( )

◆ ~FWTauProxyBuilderBase()

FWTauProxyBuilderBase::~FWTauProxyBuilderBase ( )
override

Definition at line 42 of file FWTauProxyBuilderBase.cc.

42 {}

◆ FWTauProxyBuilderBase() [2/2]

FWTauProxyBuilderBase::FWTauProxyBuilderBase ( const FWTauProxyBuilderBase )
delete

Member Function Documentation

◆ addConstituentTracks()

void FWTauProxyBuilderBase::addConstituentTracks ( const reco::BaseTau tau,
class TEveElement *  product 
)
private

Definition at line 122 of file FWTauProxyBuilderBase.cc.

References FWProxyBuilderBase::context(), mps_fire::i, fireworks::prepareTrack(), FWProxyBuilderBase::setupAddElement(), metsig::tau, and HLT_2022v15_cff::track.

Referenced by buildBaseTau().

122  {
123  for (reco::TrackRefVector::iterator i = tau.signalTracks().begin(), iEnd = tau.signalTracks().end(); i != iEnd; ++i) {
124  TEveTrack* track(nullptr);
125  if (i->isAvailable()) {
126  track = fireworks::prepareTrack(**i, context().getTrackPropagator());
127  track->MakeTrack();
128  setupAddElement(track, product);
129  }
130  }
131 }
void setupAddElement(TEveElement *el, TEveElement *parent, bool set_color=true) const
TEveTrack * prepareTrack(const reco::Track &track, TEveTrackPropagator *propagator, const std::vector< TEveVector > &extraRefPoints=std::vector< TEveVector >())
Definition: TrackUtils.cc:62
const fireworks::Context & context() const

◆ addLeadTrack()

void FWTauProxyBuilderBase::addLeadTrack ( const reco::BaseTau tau,
class TEveElement *  product 
)
private

Definition at line 134 of file FWTauProxyBuilderBase.cc.

References FWProxyBuilderBase::context(), singlePfTauSkim_cff::leadTrack, fireworks::prepareTrack(), FWProxyBuilderBase::setupAddElement(), metsig::tau, and HLT_2022v15_cff::track.

Referenced by buildBaseTau().

134  {
135  const reco::TrackRef leadTrack = tau.leadTrack();
136  if (!leadTrack)
137  return;
138 
139  TEveTrack* track = fireworks::prepareTrack(*leadTrack, context().getTrackPropagator());
140  if (track) {
141  track->MakeTrack();
142  setupAddElement(track, product);
143  }
144 }
void setupAddElement(TEveElement *el, TEveElement *parent, bool set_color=true) const
TEveTrack * prepareTrack(const reco::Track &track, TEveTrackPropagator *propagator, const std::vector< TEveVector > &extraRefPoints=std::vector< TEveVector >())
Definition: TrackUtils.cc:62
const fireworks::Context & context() const

◆ buildBaseTau()

void FWTauProxyBuilderBase::buildBaseTau ( const reco::BaseTau iTau,
const reco::Jet iJet,
TEveElement *  comp,
FWViewType::EType  type,
const FWViewContext vc 
)
protected

Definition at line 51 of file FWTauProxyBuilderBase.cc.

References addConstituentTracks(), addLeadTrack(), fireworks::addRhoZEnergyProjection(), Reference_intrackfit_cff::barrel, cms::cuda::bs, fireworks::Context::caloR1(), fireworks::Context::caloR2(), fireworks::Context::caloTransAngle(), fireworks::Context::caloZ1(), fireworks::Context::caloZ2(), AlCaHLTBitMon_QueryRunRegistry::comp, hltPFPuppi_cfi::cone, FWProxyBuilderBase::context(), funct::cos(), FWEventItem::defaultDisplayProperties(), Calorimetry_cff::dp, reco::LeafCandidate::energy(), reco::LeafCandidate::et(), fireworks::Context::getBeamSpot(), FWViewContext::getEnergyScale(), fireworks::getPhiRange(), FWViewEnergyScale::getPlotEt(), FWViewEnergyScale::getScaleFactor3D(), fireworks::getShape(), FWViewType::isProjected(), FWProxyBuilderBase::item(), FWViewType::kRhoZ, kTauApexBeamSpot(), m_maxTheta, m_minTheta, m_phis, M_PI, fireworks::makeEveJetCone(), METSkim_cff::Min, phi, reco::LeafCandidate::phi(), Pi, alignCSCRings::r, FWProxyBuilderBase::setupAddElement(), l1trig_cff::shape, funct::sin(), findQualityFiles::size, theta(), reco::LeafCandidate::theta(), and fireworks::Context::voteMaxEtAndEnergy().

Referenced by FWPFTauProxyBuilder::buildViewType().

55  {
56  // track
57  addLeadTrack(iTau, comp);
59 
60  // projected markers
62  double phi = iTau.phi();
63  double theta = iTau.theta();
64  double size = 1;
65 
67  float ecalR = barrel ? context().caloR1() : context().caloR2();
68  float ecalZ = barrel ? context().caloZ1() : context().caloZ2();
69 
70  TEveScalableStraightLineSet* marker = new TEveScalableStraightLineSet("energy");
71 
72  if (type == FWViewType::kRhoZ) {
73  double r(0);
74  (theta < context().caloTransAngle() || M_PI - theta < context().caloTransAngle()) ? r = ecalZ / fabs(cos(theta))
75  : r = ecalR / sin(theta);
76 
77  fireworks::addRhoZEnergyProjection(this, comp, ecalR, ecalZ, m_minTheta - 0.003, m_maxTheta + 0.003, phi);
78 
79  marker->SetScaleCenter(0., (phi > 0 ? r * fabs(sin(theta)) : -r * fabs(sin(theta))), r * cos(theta));
80  marker->AddLine(0.,
81  (phi > 0 ? r * fabs(sin(theta)) : -r * fabs(sin(theta))),
82  r * cos(theta),
83  0.,
84  (phi > 0 ? (r + size) * fabs(sin(theta)) : -(r + size) * fabs(sin(theta))),
85  (r + size) * cos(theta));
86 
87  } else {
88  std::pair<double, double> phiRange = fireworks::getPhiRange(m_phis, phi);
89  double min_phi = phiRange.first - M_PI / 36 / 2;
90  double max_phi = phiRange.second + M_PI / 36 / 2;
91  TEveGeoManagerHolder gmgr(TEveGeoShape::GetGeoMangeur());
92  TGeoBBox* sc_box = new TGeoTubeSeg(ecalR - 1, ecalR + 1, 1, min_phi * 180 / M_PI, max_phi * 180 / M_PI);
93  TEveGeoShape* shape = fireworks::getShape("spread", sc_box, item()->defaultDisplayProperties().color());
94  shape->SetPickable(kTRUE);
96 
97  marker->SetScaleCenter(ecalR * cos(phi), ecalR * sin(phi), 0);
98  marker->AddLine(ecalR * cos(phi), ecalR * sin(phi), 0, (ecalR + size) * cos(phi), (ecalR + size) * sin(phi), 0);
99  }
100  marker->SetLineWidth(4);
101  FWViewEnergyScale* caloScale = vc->getEnergyScale();
102  marker->SetScale(caloScale->getScaleFactor3D() * (caloScale->getPlotEt() ? iTau.et() : iTau.energy()));
103  setupAddElement(marker, comp);
104 
105  context().voteMaxEtAndEnergy(iTau.et(), iTau.energy());
106  } else if (iJet) {
107  // jet
108  TEveJetCone* cone = fireworks::makeEveJetCone(*iJet, context());
109  if (item()->getConfig()->value<bool>(kTauApexBeamSpot)) {
111  cone->SetApex(TEveVector(bs->x0(), bs->y0(), bs->z0()));
112  }
114  cone->SetFillColor(dp.color());
115  cone->SetLineColor(dp.color());
117  cone->SetMainTransparency(TMath::Min(100, 80 + dp.transparency() / 5));
118  }
119 }
size
Write out results.
const double Pi
std::pair< double, double > getPhiRange(const std::vector< double > &phis, double phi)
Definition: BuilderUtils.cc:21
void setupAddElement(TEveElement *el, TEveElement *parent, bool set_color=true) const
static float caloTransAngle()
Definition: Context.cc:196
void addLeadTrack(const reco::BaseTau &tau, class TEveElement *product)
FWBeamSpot * getBeamSpot() const
Definition: Context.h:67
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
static float caloZ2(bool offset=true)
Definition: Context.cc:192
const fireworks::Context & context() const
bool getPlotEt() const
void addConstituentTracks(const reco::BaseTau &tau, class TEveElement *product)
FWViewEnergyScale * getEnergyScale() const
static bool isProjected(int)
Definition: FWViewType.cc:100
double theta() const final
momentum polar angle
static float caloR2(bool offset=true)
Definition: Context.cc:189
static const std::string kTauApexBeamSpot("Place Apex In BeamSpot")
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:403
void voteMaxEtAndEnergy(float Et, float energy) const
Definition: Context.cc:169
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
static float caloR1(bool offset=true)
Definition: Context.cc:187
#define M_PI
float getScaleFactor3D() const
void addRhoZEnergyProjection(FWProxyBuilderBase *, TEveElement *, double r_ecal, double z_ecal, double theta_min, double theta_max, double phi)
Definition: BuilderUtils.cc:58
double et() const final
transverse energy
static float caloZ1(bool offset=true)
Definition: Context.cc:190
std::vector< double > m_phis
TEveGeoShape * getShape(const char *name, TGeoBBox *shape, Color_t color)
Definition: BuilderUtils.cc:44
double phi() const final
momentum azimuthal angle
Geom::Theta< T > theta() const
const FWEventItem * item() const
TEveJetCone * makeEveJetCone(const reco::Jet &iData, const fireworks::Context &context)
double energy() const final
energy

◆ cleanLocal()

void FWTauProxyBuilderBase::cleanLocal ( )
overridevirtual

Reimplemented from FWProxyBuilderBase.

Definition at line 177 of file FWTauProxyBuilderBase.cc.

177 {}

◆ havePerViewProduct()

bool FWTauProxyBuilderBase::havePerViewProduct ( FWViewType::EType  ) const
inlineoverridevirtual

Reimplemented from FWProxyBuilderBase.

Definition at line 45 of file FWTauProxyBuilderBase.h.

45 { return true; }

◆ haveSingleProduct()

bool FWTauProxyBuilderBase::haveSingleProduct ( void  ) const
inlineoverridevirtual

Reimplemented from FWProxyBuilderBase.

Definition at line 44 of file FWTauProxyBuilderBase.h.

44 { return false; }

◆ localModelChanges()

void FWTauProxyBuilderBase::localModelChanges ( const FWModelId iId,
TEveElement *  iCompound,
FWViewType::EType  viewType,
const FWViewContext vc 
)
overrideprotectedvirtual

Reimplemented from FWProxyBuilderBase.

Definition at line 146 of file FWTauProxyBuilderBase.cc.

References FWProxyBuilderBase::increaseComponentTransparency(), FWModelId::index(), and FWViewType::isProjected().

149  {
150  if (FWViewType::isProjected(viewType))
151  increaseComponentTransparency(iId.index(), iCompound, "TEveJetCone", 80);
152 }
int index() const
Definition: FWModelId.h:41
static bool isProjected(int)
Definition: FWViewType.cc:100
void increaseComponentTransparency(unsigned int index, TEveElement *holder, const std::string &name, Char_t transpOffset)

◆ operator=()

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

◆ scaleProduct()

void FWTauProxyBuilderBase::scaleProduct ( TEveElementList *  parent,
FWViewType::EType  viewType,
const FWViewContext vc 
)
overridevirtual

Reimplemented from FWProxyBuilderBase.

Definition at line 154 of file FWTauProxyBuilderBase.cc.

References HltBtagPostValidation_cff::c, reco::LeafCandidate::energy(), reco::LeafCandidate::et(), FWViewContext::getEnergyScale(), FWViewEnergyScale::getPlotEt(), FWViewEnergyScale::getScaleFactor3D(), heavyIonCSV_trainingSettings::idx, FWProxyBuilderBase::item(), dqmiolumiharvest::j, FWEventItem::modelData(), and relativeConstraints::value.

156  {
157  int idx = 0;
158  for (auto& c : product->RefChildren()) {
159  // check the compound has more than one element (the first one is jet)
160  for (auto& compChld : c->RefChildren()) {
161  TEveScalableStraightLineSet* lineSet = dynamic_cast<TEveScalableStraightLineSet*>(compChld);
162  if (lineSet) {
163  // compund index in the product is an index of model data in the collection
164  const void* modelData = item()->modelData(idx);
165  const reco::BaseTau* ptr = (const reco::BaseTau*)(modelData);
166  float value = vc->getEnergyScale()->getPlotEt() ? ptr->et() : ptr->energy();
167  lineSet->SetScale(vc->getEnergyScale()->getScaleFactor3D() * value);
168  for (TEveProjectable::ProjList_i j = lineSet->BeginProjecteds(); j != lineSet->EndProjecteds(); ++j) {
169  (*j)->UpdateProjection();
170  }
171  }
172  }
173  idx++;
174  }
175 }
const void * modelData(int iIndex) const
Definition: FWEventItem.cc:466
bool getPlotEt() const
FWViewEnergyScale * getEnergyScale() const
Definition: value.py:1
float getScaleFactor3D() const
double et() const final
transverse energy
const FWEventItem * item() const
double energy() const final
energy

◆ setItem()

void FWTauProxyBuilderBase::setItem ( const FWEventItem iItem)
overridevirtual

Reimplemented from FWProxyBuilderBase.

Definition at line 44 of file FWTauProxyBuilderBase.cc.

References FWProxyBuilderConfiguration::assertParam(), FWEventItem::getConfig(), kTauApexBeamSpot(), and FWProxyBuilderBase::setItem().

44  {
46  if (iItem) {
47  iItem->getConfig()->assertParam(kTauApexBeamSpot, false);
48  }
49 }
FWProxyBuilderConfiguration * getConfig() const
Definition: FWEventItem.h:150
static const std::string kTauApexBeamSpot("Place Apex In BeamSpot")
virtual void setItem(const FWEventItem *iItem)
FWGenericParameter< T > * assertParam(const std::string &name, T def)

Member Data Documentation

◆ m_maxTheta

float FWTauProxyBuilderBase::m_maxTheta
protected

Definition at line 53 of file FWTauProxyBuilderBase.h.

Referenced by buildBaseTau(), and FWPFTauProxyBuilder::buildViewType().

◆ m_minTheta

float FWTauProxyBuilderBase::m_minTheta
protected

Definition at line 52 of file FWTauProxyBuilderBase.h.

Referenced by buildBaseTau(), and FWPFTauProxyBuilder::buildViewType().

◆ m_phis

std::vector<double> FWTauProxyBuilderBase::m_phis
protected

Definition at line 54 of file FWTauProxyBuilderBase.h.

Referenced by buildBaseTau(), and FWPFTauProxyBuilder::buildViewType().