All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
SmartDataObjectPtr.cpp File Reference
Include dependency graph for SmartDataObjectPtr.cpp:

Go to the source code of this file.

Macros

#define GAUDIKERNEL_SMARTDATAOBJECTPTR_CPP   1
 

Functions

bool operator&& (SmartDataObjectPtr &object_1, SmartDataObjectPtr &object_2)
 Helper to test Smart data objects efficiently This construct allows statements like: SmartEvtDataPtr<MCVertexVector> mcvertices (evt,"/MC/MCVertices"); SmartEvtDataPtr<MCParticleVector> mctracks (evt,"/MC/MCParticles"); if ( mctracks && mcvertices ) { ... More...
 
bool operator|| (SmartDataObjectPtr &object_1, SmartDataObjectPtr &object_2)
 Helper to test Smart data objects efficiently This construct allows statements like: SmartEvtDataPtr<MCVertexVector> mcvertices (evt,"/MC/MCVertices"); SmartEvtDataPtr<MCParticleVector> mctracks (evt,"/MC/MCParticles"); if ( mctracks || mcvertices ) { ... More...
 

Macro Definition Documentation

#define GAUDIKERNEL_SMARTDATAOBJECTPTR_CPP   1

Definition at line 11 of file SmartDataObjectPtr.cpp.

Function Documentation

bool operator&& ( SmartDataObjectPtr object_1,
SmartDataObjectPtr object_2 
)

Helper to test Smart data objects efficiently This construct allows statements like: SmartEvtDataPtr<MCVertexVector> mcvertices (evt,"/MC/MCVertices"); SmartEvtDataPtr<MCParticleVector> mctracks (evt,"/MC/MCParticles"); if ( mctracks && mcvertices ) { ...

} and tests the existence of BOTH objects in the data store. This is not done inline due to danger of code explosion.

Parameters
object_1Smart pointer to object 1
object_2Smart pointer to second object
Returns
Boolean indicating existence of both objects

Definition at line 145 of file SmartDataObjectPtr.cpp.

145  {
146  if ( 0 != object_1.accessData() ) { // Test existence of the first object
147  if ( 0 != object_2.accessData() ) { // Test existence of the second object
148  return true; // Fine: Both objects exist
149  }
150  }
151  return false; // Tough luck: One is missing.
152 }
DataObject * accessData()
Static Object retrieval method: must call specific function.
bool operator|| ( SmartDataObjectPtr object_1,
SmartDataObjectPtr object_2 
)

Helper to test Smart data objects efficiently This construct allows statements like: SmartEvtDataPtr<MCVertexVector> mcvertices (evt,"/MC/MCVertices"); SmartEvtDataPtr<MCParticleVector> mctracks (evt,"/MC/MCParticles"); if ( mctracks || mcvertices ) { ...

} and tests the existence of at least one objects in the data store. The second object will then NOT be loaded. It is assumed that the second choice is only an alternative usable in case the first object cannot be retrieved.

This is not done inline due to danger of code explosion.

Parameters
object_1Smart pointer to object 1
object_2Smart pointer to second object
Returns
Boolean indicating existence of both objects

Definition at line 170 of file SmartDataObjectPtr.cpp.

170  {
171  if ( 0 != object_1.accessData() ) { // Test existence of the first object
172  return true;
173  }
174  if ( 0 != object_2.accessData() ) { // Test existence of the second object
175  return true;
176  }
177  return false; // Tough luck: Both are missing.
178 }
DataObject * accessData()
Static Object retrieval method: must call specific function.