ATLAS Offline Software
Loading...
Searching...
No Matches
AODHandleBase Class Referenceabstract

#include <AODHandleBase.h>

Inheritance diagram for AODHandleBase:
Collaboration diagram for AODHandleBase:

Classes

class  Imp

Public Member Functions

 AODHandleBase (AODCollHandleBase *)
virtual ~AODHandleBase ()
const AODSysCommonDatacommon () const
void setVisible (bool)
 use by the collection handle.
bool visible () const
const AODCollHandleBasecollHandle () const
virtual bool has3DObjects ()
 Returns true if the 3D objects have been created.
virtual void update3DObjects ()
 Called after some configuration changes, or when the object is first created. Must be overloaded by children.
virtual void rebuild3DObjects ()
virtual void clear3DObjects ()=0
 Delete objects.
virtual void attach3DObjects ()
 Connect to the scene graph.
virtual void detach3DObjects ()
 Remove from the scene graph.
virtual SoNode * nodes ()=0
 Returns the 3Dobjects.
virtual SoMaterial * determineMaterial ()=0
 Should be implemented by children, in order to change the material depending on the interface etc.
void updateMaterial ()
 Called after some configuration related to material changes.
SoMaterial * currentMaterial () const
 Returns the current material of the handle.
virtual QStringList baseInfo () const
virtual QStringList clicked () const =0
 Called when user selects the node (stringlist is displayed in messagebox).
virtual QString shortInfo () const
 returns mom and hit information about track
virtual QString type () const
 return very short word with type (maybe link with collection type?)
virtual void fillObjectBrowser (QList< QTreeWidgetItem * > &list)
 Create and fill the object browser QTreeWidgetItem.
void updateObjectBrowser ()
 Update object browser QTreeWidgetItem.
QTreeWidgetItem * browserTreeItem () const
 Return the QTreeWidgetItem;.
virtual void dumpToJSON (std::ofstream &) const

Static Public Member Functions

static int numberOfInstances ()
static double unknown ()

Protected Member Functions

virtual void visibleStateChanged ()
 Dummy implementation does nothing.
virtual void currentMaterialChanged ()

Private Member Functions

 AODHandleBase (const AODHandleBase &)
 override if need to take action in this case.
AODHandleBaseoperator= (const AODHandleBase &)

Private Attributes

Impm_d
bool m_visible
AODCollHandleBasem_collhandle
SoMaterial * m_currentmaterial

Friends

class AssocObjAttachmentHandle

Detailed Description

Definition at line 43 of file AODHandleBase.h.

Constructor & Destructor Documentation

◆ AODHandleBase() [1/2]

AODHandleBase::AODHandleBase ( AODCollHandleBase * ch)

Definition at line 73 of file AODHandleBase.cxx.

74 : m_d(new Imp(this)), m_visible(false),m_collhandle(ch),m_currentmaterial(0)
75{
77}
static std::atomic< int > nobjhandles
SoMaterial * m_currentmaterial
AODCollHandleBase * m_collhandle

◆ ~AODHandleBase()

AODHandleBase::~AODHandleBase ( )
virtual

Definition at line 80 of file AODHandleBase.cxx.

81{
82 delete m_d;
84}

◆ AODHandleBase() [2/2]

AODHandleBase::AODHandleBase ( const AODHandleBase & )
private

override if need to take action in this case.

Member Function Documentation

◆ attach3DObjects()

void AODHandleBase::attach3DObjects ( )
virtual

Connect to the scene graph.

Definition at line 157 of file AODHandleBase.cxx.

158{
159 VP1Msg::messageVerbose("AODHandleBase::attach3DObjects");
160
161 if (!m_currentmaterial) {
163 m_currentmaterial->ref();
165 }
166 if (has3DObjects() && m_collhandle->sepHelper()) {
167 VP1Msg::messageVerbose("Adding nodes to sep helper...");
168
169 m_collhandle->common()->registerHandle(this);
170
171 // debug
172 // std::cout<<"m_collhandle->sepHelper() = " << m_collhandle->sepHelper()<<std::endl;
173 SoNode* tmp = nodes();
174 // std::cout << "tmp nodes = "<< tmp << std::endl;
175
176 // m_collhandle->sepHelper()->addNodeUnderMaterial( nodes(), m_currentmaterial );
177 m_collhandle->sepHelper()->addNodeUnderMaterial( tmp, m_currentmaterial );
178
179 } else {
180 if (!has3DObjects()) {
181 VP1Msg::message("AODHandleBase::attach3DObjects() - No 3D objects to attach!");
182 }
183 if (!m_collhandle->sepHelper()) VP1Msg::message("AODHandleBase::attach3DObjects() - No sep helper!");
184 }
185 // if (label_sep && theclass->common()->textSep() && theclass->common()->controller()->doTrackLabels())
186 // theclass->common()->textSep()->addChild(label_sep);
187 //
188}
virtual void currentMaterialChanged()
virtual SoNode * nodes()=0
Returns the 3Dobjects.
virtual bool has3DObjects()
Returns true if the 3D objects have been created.
virtual SoMaterial * determineMaterial()=0
Should be implemented by children, in order to change the material depending on the interface etc.
static void messageVerbose(const QString &)
Definition VP1Msg.cxx:84
static void message(const QString &, IVP1System *sys=0)
Definition VP1Msg.cxx:30

◆ baseInfo()

QStringList AODHandleBase::baseInfo ( ) const
virtual

Reimplemented in IParticleHandleBase, and VertexHandle.

Definition at line 247 of file AODHandleBase.cxx.

248{
249 VP1Msg::messageDebug("AODHandleBase::baseInfo()");
250
251 QStringList l;
252
253
254 // Amg::Vector3D mom = momentum()/1000;
255 // if (mom.mag2()==0.0) {
256 // l << "Momentum : 0 (undefined)";
257 // } else {
258 // l << "Momentum [GeV]: "+VP1Msg::str(mom);
259 // l << "|Pt|/|P| [GeV]: "+VP1Msg::str(mom.perp())+" / " + VP1Msg::str(mom.mag());
260 // l << VP1Msg::str("(")+QChar(0x03B7)+","+QChar(0x03D5)+VP1Msg::str(")=(")
261 // +VP1Msg::str(mom.eta())+VP1Msg::str(",")+VP1Msg::str(VP1LinAlgUtils::phiFromXY(mom.x(), mom.y() ))+VP1Msg::str(")");
262 //
263 // l << "Eta: "+VP1Msg::str(mom.eta());
264 // l << "Phi: "+VP1Msg::str(VP1LinAlgUtils::phiFromXY(mom.x(), mom.y() ));
265 // }
266 // l<<"Hit summary: Pix["+VP1Msg::str(getNPixelHits())+"], SCT["+VP1Msg::str(getNSCTHits())+"], TRT["+VP1Msg::str(getNTRTHits())
267 // +"], MDT["+QString::number(getNMDTHits())+"], RPC["+QString::number(getNRPCHits())+"], TGC["+QString::number(getNTGCHits())+"], CSC["+QString::number(getNCSCHits())+"].";
268 //
269 // return l;
270 // int pdg = pdgCode();
271 // if (pdg) {
272 // bool ok;
273 // QString name = VP1ParticleData::particleName(pdg,ok);
274 // if (ok)
275 // l << "pdg: "+QString::number(pdg)+" ["+name+"]";
276 // else
277 // l << "pdg: "+QString::number(pdg);
278 // }
279
280 if (l.length() == 0)
281 l << "baseInfo : (undefined)";
282
283 return l;
284}
static void messageDebug(const QString &)
Definition VP1Msg.cxx:39
l
Printing final latex table to .tex output file.

◆ browserTreeItem()

QTreeWidgetItem * AODHandleBase::browserTreeItem ( ) const

Return the QTreeWidgetItem;.

Definition at line 311 of file AODHandleBase.cxx.

311 {
312 return m_d->m_objBrowseTree;
313}

◆ clear3DObjects()

virtual void AODHandleBase::clear3DObjects ( )
pure virtual

◆ clicked()

virtual QStringList AODHandleBase::clicked ( ) const
pure virtual

Called when user selects the node (stringlist is displayed in messagebox).

Reimplementations should add info momInfo() to get momentum, eta, phi, pid,charge, mass printed.

Implemented in IParticleHandle_CaloCluster, IParticleHandle_Electron, IParticleHandle_Jet, IParticleHandle_Muon, IParticleHandle_TrackParticle, MissingEtHandle, and VertexHandle.

◆ collHandle()

const AODCollHandleBase * AODHandleBase::collHandle ( ) const
inline

Definition at line 55 of file AODHandleBase.h.

55{ return m_collhandle; }

◆ common()

const AODSysCommonData * AODHandleBase::common ( ) const

Definition at line 93 of file AODHandleBase.cxx.

94{
95 return std::as_const(m_collhandle)->common();
96}

◆ currentMaterial()

SoMaterial * AODHandleBase::currentMaterial ( ) const
inline

Returns the current material of the handle.

Definition at line 76 of file AODHandleBase.h.

76{ return m_currentmaterial; }

◆ currentMaterialChanged()

virtual void AODHandleBase::currentMaterialChanged ( )
inlineprotectedvirtual

Definition at line 111 of file AODHandleBase.h.

111{};

◆ detach3DObjects()

void AODHandleBase::detach3DObjects ( )
virtual

Remove from the scene graph.

Definition at line 191 of file AODHandleBase.cxx.

192{
193 VP1Msg::messageVerbose("AODHandleBase::detach3DObjects");
194
196 return;//Can never have been attached!
197 if (has3DObjects() && m_collhandle->sepHelper()) {
198 m_collhandle->sepHelper()->removeNodeUnderMaterial(nodes(),m_currentmaterial);
199 }
200
201 m_collhandle->common()->deregisterHandle(this);
202
203 // if (label_sep && theclass->common()->textSep())
204 // theclass->common()->textSep()->removeChild(label_sep);
205}

◆ determineMaterial()

virtual SoMaterial * AODHandleBase::determineMaterial ( )
pure virtual

Should be implemented by children, in order to change the material depending on the interface etc.

This will (by default) return the collection material.

Implemented in IParticleHandleBase, MissingEtHandle, and VertexHandle.

◆ dumpToJSON()

virtual void AODHandleBase::dumpToJSON ( std::ofstream & ) const
inlinevirtual

◆ fillObjectBrowser()

void AODHandleBase::fillObjectBrowser ( QList< QTreeWidgetItem * > & list)
virtual

Create and fill the object browser QTreeWidgetItem.

Reimplemented in IParticleHandle_CaloCluster, IParticleHandle_Electron, IParticleHandle_Jet, IParticleHandle_Muon, IParticleHandle_TrackParticle, and MissingEtHandle.

Definition at line 288 of file AODHandleBase.cxx.

288 {
289
290 VP1Msg::messageDebug("AODHandleBase::fillObjectBrowser()");
291
292 if (m_d->m_objBrowseTree){
293 VP1Msg::message("ERROR: AODHandleBase::fillObjectBrowser - already have m_objBrowseTree. Aborting.");
294 return;
295 }
296
297 m_d->m_objBrowseTree = new QTreeWidgetItem();
298
299 QString l = shortInfo();
300
301 m_d->m_objBrowseTree->setText(0, type()+QString(QString::number(listOfItems.size())) );
302 m_d->m_objBrowseTree->setText(1, l );
303
304 if (!visible()) {
305 m_d->m_objBrowseTree->setFlags(Qt::ItemFlags()); // not selectable, not enabled
306 }
307 listOfItems << browserTreeItem();
308}
virtual QString type() const
return very short word with type (maybe link with collection type?)
bool visible() const
QTreeWidgetItem * browserTreeItem() const
Return the QTreeWidgetItem;.
virtual QString shortInfo() const
returns mom and hit information about track

◆ has3DObjects()

virtual bool AODHandleBase::has3DObjects ( )
inlinevirtual

Returns true if the 3D objects have been created.

Reimplemented in IParticleHandle_CaloCluster, IParticleHandle_Electron, IParticleHandle_Jet, IParticleHandle_Muon, IParticleHandle_TrackParticle, MissingEtHandle, and VertexHandle.

Definition at line 57 of file AODHandleBase.h.

57{return false;}

◆ nodes()

virtual SoNode * AODHandleBase::nodes ( )
pure virtual

◆ numberOfInstances()

int AODHandleBase::numberOfInstances ( )
static

Definition at line 87 of file AODHandleBase.cxx.

88{
89 return Imp::nobjhandles;
90}

◆ operator=()

AODHandleBase & AODHandleBase::operator= ( const AODHandleBase & )
private

◆ rebuild3DObjects()

void AODHandleBase::rebuild3DObjects ( )
virtual

Definition at line 137 of file AODHandleBase.cxx.

138{
139 QString tmp2 = (m_visible==true)?"True":"False";
140 VP1Msg::messageDebug("AODHandleBase::rebuild3DObjects() - with m_visible="+tmp2 );
141
142 //Ensure we are always detached while updating.
143 if (m_visible) {
145 }
146
148 nodes(); // rebuilds the 3D shapes
149
150 //Attach if visible:
151 if (m_visible) {
153 }
154}
virtual void clear3DObjects()=0
Delete objects.
virtual void detach3DObjects()
Remove from the scene graph.
virtual void attach3DObjects()
Connect to the scene graph.

◆ setVisible()

void AODHandleBase::setVisible ( bool vis)

use by the collection handle.

Definition at line 99 of file AODHandleBase.cxx.

100{
101 QString tmp = (vis==true)?"True":"False";
102 QString tmp2 = (m_visible==true)?"True":"False";
103 VP1Msg::messageDebug(QString("AODHandleBase calling setVisible with vis=")+tmp+QString(", and m_visible=")+tmp2 );
104 if (vis==m_visible)
105 return;
106
107 m_visible=vis;
108 if (vis) {
109 m_collhandle->incrementNShownHandles();
110
111 if (!has3DObjects())
112 rebuild3DObjects();//The call to rebuild also fixes attached state.
113 else
115 } else {
116 m_collhandle->decrementNShownHandles();
118 }
119
121}
virtual void rebuild3DObjects()
virtual void visibleStateChanged()
Dummy implementation does nothing.

◆ shortInfo()

virtual QString AODHandleBase::shortInfo ( ) const
inlinevirtual

returns mom and hit information about track

Reimplemented in IParticleHandle_CaloCluster, IParticleHandle_Electron, IParticleHandle_Jet, IParticleHandle_Muon, IParticleHandle_TrackParticle, MissingEtHandle, and VertexHandle.

Definition at line 95 of file AODHandleBase.h.

◆ type()

virtual QString AODHandleBase::type ( ) const
inlinevirtual

return very short word with type (maybe link with collection type?)

Reimplemented in IParticleHandle_CaloCluster, IParticleHandle_Electron, IParticleHandle_Jet, IParticleHandle_Muon, IParticleHandle_TrackParticle, MissingEtHandle, and VertexHandle.

Definition at line 96 of file AODHandleBase.h.

◆ unknown()

double AODHandleBase::unknown ( )
inlinestatic

Definition at line 93 of file AODHandleBase.h.

93{ return -999.0; }

◆ update3DObjects()

void AODHandleBase::update3DObjects ( )
virtual

Called after some configuration changes, or when the object is first created. Must be overloaded by children.

Definition at line 125 of file AODHandleBase.cxx.

126{
127 if (m_visible) {
129 } else {
130 //Simply clear the present 3D objects. They will only be recreated if/when the track/jet becomes visible again.
132 }
133}

◆ updateMaterial()

void AODHandleBase::updateMaterial ( )

Called after some configuration related to material changes.

Definition at line 208 of file AODHandleBase.cxx.

209{
210 VP1Msg::messageVerbose("AODHandleBase::updateMaterial()");
211
212 //We need to change the current material. This means we need to
213 //clear the cache. Only if we are visible do we need to do a
214 //detach->clear material->attach cycle to trigger attachment under new material.
215
217 return;//We have no material cached and is thus not attached either.
218 if (m_visible) {
219 //See if the material changed. If it did, detach, update the material, attach again.
220 SoMaterial * newmat = determineMaterial();
221 newmat->ref();
222 if (newmat!=m_currentmaterial) {
224 m_currentmaterial->unref();
225 m_currentmaterial = newmat;
228 } else {
229 newmat->unref();
230 }
231 } else {
232 //Just clear material.
233 m_currentmaterial->unref();
236 }
237}

◆ updateObjectBrowser()

void AODHandleBase::updateObjectBrowser ( )
inline

Update object browser QTreeWidgetItem.

Definition at line 102 of file AODHandleBase.h.

102{};

◆ visible()

bool AODHandleBase::visible ( ) const
inline

Definition at line 54 of file AODHandleBase.h.

54{ return m_visible; }

◆ visibleStateChanged()

void AODHandleBase::visibleStateChanged ( )
protectedvirtual

Dummy implementation does nothing.

override if need to take action in this case.

Definition at line 316 of file AODHandleBase.cxx.

317{
318 if ( !browserTreeItem()) {
319 VP1Msg::messageVerbose("visibleStateChanged: No m_objBrowseTree!");
320 return;
321 }
322
323 if (!visible()) {
324 browserTreeItem()->setFlags(Qt::ItemFlags()); // not selectable, not enabled
325 } else {
326 browserTreeItem()->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); // selectable, enabled
327 }
328 QFont itemFont = browserTreeItem()->font(0);
329 itemFont.setStrikeOut(!visible());
330 browserTreeItem()->setFont(0, itemFont);
331 browserTreeItem()->setFont(1, itemFont);
332}

◆ AssocObjAttachmentHandle

friend class AssocObjAttachmentHandle
friend

Definition at line 119 of file AODHandleBase.h.

Member Data Documentation

◆ m_collhandle

AODCollHandleBase* AODHandleBase::m_collhandle
private

Definition at line 126 of file AODHandleBase.h.

◆ m_currentmaterial

SoMaterial* AODHandleBase::m_currentmaterial
private

Definition at line 127 of file AODHandleBase.h.

◆ m_d

Imp* AODHandleBase::m_d
private

Definition at line 121 of file AODHandleBase.h.

◆ m_visible

bool AODHandleBase::m_visible
private

Definition at line 125 of file AODHandleBase.h.


The documentation for this class was generated from the following files: