The Gaudi Framework  v32r2 (46d42edc)
GaudiCommon< PBASE > Class Template Reference

Implements the common functionality between GaudiTools and GaudiAlgorithms. More...

#include <GaudiAlg/GaudiCommon.h>

Inheritance diagram for GaudiCommon< PBASE >:
Collaboration diagram for GaudiCommon< PBASE >:

Public Member Functions

template<class TYPE >
Gaudi::Utils::GetData< TYPE >::return_type get (IDataProviderSvc *svc, const std::string &location, const bool useRootInTES=true) const
 Templated access to the data in Gaudi Transient Store. More...
 
template<class TYPE >
Gaudi::Utils::GetData< TYPE >::return_type getIfExists (IDataProviderSvc *svc, const std::string &location, const bool useRootInTES=true) const
 Quicker version of the get function which bypasses the check on the retrieved data. More...
 
template<class TYPE >
bool exist (IDataProviderSvc *svc, const std::string &location, const bool useRootInTES=true) const
 Check the existence of a data object or container in the Gaudi Transient Event Store. More...
 
template<class TYPE , class TYPE2 >
Gaudi::Utils::GetData< TYPE >::return_type getOrCreate (IDataProviderSvc *svc, const std::string &location, const bool useRootInTES=true) const
 Get the existing data object from Gaudi Event Transient store. More...
 
DataObjectput (IDataProviderSvc *svc, std::unique_ptr< DataObject > object, const std::string &location, const bool useRootInTES=true) const
 Register a data object or container into Gaudi Event Transient Store. More...
 
DataObjectput (IDataProviderSvc *svc, DataObject *object, const std::string &location, const bool useRootInTES=true) const
 
template<class TOOL >
TOOL * tool (const std::string &type, const std::string &name, const IInterface *parent=0, bool create=true) const
 Useful method for the easy location of tools. More...
 
template<class TOOL >
TOOL * tool (const std::string &type, const IInterface *parent=0, bool create=true) const
 A useful method for the easy location of tools. More...
 
template<class SERVICE >
SmartIF< SERVICE > svc (const std::string &name, const bool create=true) const
 A useful method for the easy location of services. More...
 
IUpdateManagerSvcupdMgrSvc () const
 Short-cut to locate the Update Manager Service. More...
 
WARN_UNUSED StatusCode Error (const std::string &msg, const StatusCode st=StatusCode::FAILURE, const size_t mx=10) const
 Print the error message and return with the given StatusCode. More...
 
WARN_UNUSED StatusCode Warning (const std::string &msg, const StatusCode st=StatusCode::FAILURE, const size_t mx=10) const
 Print the warning message and return with the given StatusCode. More...
 
WARN_UNUSED StatusCode Info (const std::string &msg, const StatusCode st=StatusCode::SUCCESS, const size_t mx=10) const
 Print the info message and return with the given StatusCode. More...
 
WARN_UNUSED StatusCode Print (const std::string &msg, const StatusCode st=StatusCode::SUCCESS, const MSG::Level lev=MSG::INFO) const
 Print the message and return with the given StatusCode. More...
 
void Assert (const bool ok, const std::string &message="", const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
 Assertion - throw exception if the given condition is not fulfilled. More...
 
void Assert (const bool ok, const char *message, const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
 Assertion - throw exception if the given condition is not fulfilled. More...
 
void Exception (const std::string &msg, const GaudiException &exc, const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
 Create and (re)-throw a given GaudiException. More...
 
void Exception (const std::string &msg, const std::exception &exc, const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
 Create and (re)-throw a given exception. More...
 
void Exception (const std::string &msg="no message", const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
 Create and throw an exception with the given message. More...
 
StatEntity & counter (const std::string &tag) const
 accessor to certain counter by name More...
 
StatEntity & counter (const std::string &tag)
 
bool typePrint () const
 Insert the actual C++ type of the algorithm/tool in the messages ? More...
 
bool propsPrint () const
 Print properties at initialization ? More...
 
bool statPrint () const
 Print statistical counters at finalization ? More...
 
bool errorsPrint () const
 Print error counters at finalization ? More...
 
long printStat (const MSG::Level level=MSG::ALWAYS) const
 perform the actual printout of statistical counters More...
 
long printErrors (const MSG::Level level=MSG::ALWAYS) const
 perform the actual printout of error counters More...
 
long printProps (const MSG::Level level=MSG::ALWAYS) const
 perform the actual printout of properties More...
 
template<class CallerClass >
void registerCondition (const std::string &condition, StatusCode(CallerClass::*mf)()=nullptr)
 register the current instance to the UpdateManagerSvc as a consumer for a condition. More...
 
template<class CallerClass , class CondType >
void registerCondition (const std::string &condition, CondType *&condPtrDest, StatusCode(CallerClass::*mf)()=NULL)
 register the current instance to the UpdateManagerSvc as a consumer for a condition. More...
 
template<class CallerClass >
void registerCondition (char *condition, StatusCode(CallerClass::*mf)()=NULL)
 just to avoid conflicts with the version using a pointer to a template class. More...
 
template<class CallerClass , class TargetClass >
void registerCondition (TargetClass *condition, StatusCode(CallerClass::*mf)()=NULL)
 register the current instance to the UpdateManagerSvc as a consumer for a condition. More...
 
StatusCode runUpdate ()
 asks the UpdateManagerSvc to perform an update of the instance (if needed) without waiting the next BeginEvent incident. More...
 
template<typename U = PBASE, typename = std::enable_if_t<std::is_base_of_v<Gaudi::Algorithm, PBASE>, U>>
 GaudiCommon (const std::string &name, ISvcLocator *pSvcLocator)
 Algorithm constructor - the SFINAE constraint below ensures that this is constructor is only defined if PBASE derives from Algorithm. More...
 
template<typename U = PBASE, typename = std::enable_if_t<std::is_base_of_v<AlgTool, PBASE>, U>>
 GaudiCommon (const std::string &type, const std::string &name, const IInterface *ancestor)
 Tool constructor - SFINAE-ed to insure this constructor is only defined if PBASE derives from AlgTool. More...
 
StatusCode initialize () override
 standard initialization method More...
 
StatusCode finalize () override
 standard finalization method More...
 
StatusCode release (const IInterface *interface) const
 Manual forced (and 'safe') release of the active tool or service. More...
 
const Servicesservices () const
 get the list of aquired services More...
 
const std::stringcontext () const
 Returns the "context" string. Used to identify different processing states. More...
 
- Public Member Functions inherited from FixTESPath< PBASE >
 FixTESPath (const std::string &name, ISvcLocator *pSvcLocator)
 Algorithm constructor - the SFINAE constraint below ensures that this is constructor is only defined if BASE derives from Algorithm. More...
 
 FixTESPath (const std::string &type, const std::string &name, const IInterface *ancestor)
 Tool constructor - SFINAE-ed to insure this constructor is only defined if BASE derives from AlgTool. More...
 
StatusCode initialize () override
 
const std::stringrootInTES () const
 Returns the "rootInTES" string. More...
 
std::string fullTESLocation (std::string_view location, bool useRootInTES) const
 Returns the full correct event location given the rootInTes settings. More...
 

Protected Types

using base_class = FixTESPath< PBASE >
 
typedef std::map< std::string, StatEntity > StatisticsOwn
 the actual type of general counters More...
 
typedef std::map< std::string, std::reference_wrapper< Gaudi::Accumulators::PrintableCounter > > Statistics
 
typedef std::map< std::string, unsigned int > Counter
 the actual type error/warning counter More...
 
typedef std::vector< IAlgTool * > AlgTools
 storage for active tools More...
 
typedef std::vector< SmartIF< IService > > Services
 storage for active services More...
 

Protected Member Functions

StatusCode releaseTool (const IAlgTool *tool) const
 manual forced (and 'safe') release of the tool More...
 
StatusCode releaseSvc (const IInterface *svc) const
 manual forced (and 'safe') release of the service More...
 

Protected Attributes

SmartIF< ICounterSummarySvcm_counterSummarySvc
 a pointer to the CounterSummarySvc More...
 

Static Protected Attributes

static const bool IgnoreRootInTES = false
 Simple definition to be used with the new useRootInTES argument get<TYPE> and put methods. More...
 
static const bool UseRootInTES = true
 Simple definition to be used with the new useRootInTES argument get<TYPE> and put methods. More...
 

Private Member Functions

StatisticsOwn countersOwn () const
 accessor to all owned counters More...
 
 GaudiCommon ()=delete
 
 GaudiCommon (const GaudiCommon &)=delete
 
GaudiCommonoperator= (const GaudiCommon &)=delete
 
void addToServiceList (SmartIF< IService > svc) const
 Add the given service to the list of acquired services. More...
 
void initGaudiCommonConstructor (const IInterface *parent=nullptr)
 Constructor initializations. More...
 

Private Attributes

AlgTools m_managedTools
 List of active tools. More...
 
Services m_services
 List of active services. More...
 
Counter m_errors
 Counter of errors. More...
 
Counter m_warnings
 counter of warnings More...
 
Counter m_infos
 counter of infos More...
 
Counter m_exceptions
 Counter of exceptions. More...
 
StatisticsOwn m_countersOwn
 General counters. More...
 
std::mutex m_countersOwnMutex
 The mutex for m_countersOwn. More...
 
IUpdateManagerSvcm_updMgrSvc = nullptr
 Pointer to the Update Manager Service instance. More...
 
Gaudi::Property< bool > m_errorsPrint
 
Gaudi::Property< bool > m_propsPrint
 
Gaudi::Property< bool > m_statPrint
 
Gaudi::Property< bool > m_printEmptyCounters
 
Gaudi::Property< bool > m_typePrint {this, "TypePrint", true, "add the actual C++ component type into the messages"}
 
Gaudi::Property< std::stringm_context {this, "Context", {}, "note: overridden by parent settings"}
 
Gaudi::Property< std::stringm_header
 
Gaudi::Property< std::stringm_format1
 
Gaudi::Property< std::stringm_format2
 
Gaudi::Property< bool > m_useEffFormat
 
Gaudi::Property< std::vector< std::string > > m_counterList
 
Gaudi::Property< std::vector< std::string > > m_statEntityList
 

Detailed Description

template<class PBASE>
class GaudiCommon< PBASE >

Implements the common functionality between GaudiTools and GaudiAlgorithms.

Author
Chris Jones Chris.nosp@m.toph.nosp@m.er.Ro.nosp@m.b.Jo.nosp@m.nes@c.nosp@m.ern..nosp@m.ch
Vanya BELYAEV Ivan..nosp@m.Bely.nosp@m.aev@i.nosp@m.tep..nosp@m.ru
Rob Lambert Rob.L.nosp@m.ambe.nosp@m.rt@ce.nosp@m.rn.c.nosp@m.h
Date
2009-08-04

Definition at line 91 of file GaudiCommon.h.

Member Typedef Documentation

◆ AlgTools

template<class PBASE>
typedef std::vector<IAlgTool*> GaudiCommon< PBASE >::AlgTools
protected

storage for active tools

Definition at line 126 of file GaudiCommon.h.

◆ base_class

template<class PBASE>
using GaudiCommon< PBASE >::base_class = FixTESPath<PBASE>
protected

Definition at line 93 of file GaudiCommon.h.

◆ Counter

template<class PBASE>
typedef std::map<std::string, unsigned int> GaudiCommon< PBASE >::Counter
protected

the actual type error/warning counter

Definition at line 124 of file GaudiCommon.h.

◆ Services

template<class PBASE>
typedef std::vector<SmartIF<IService> > GaudiCommon< PBASE >::Services
protected

storage for active services

Definition at line 128 of file GaudiCommon.h.

◆ Statistics

Definition at line 122 of file GaudiCommon.h.

◆ StatisticsOwn

template<class PBASE>
typedef std::map<std::string, StatEntity> GaudiCommon< PBASE >::StatisticsOwn
protected

the actual type of general counters

Definition at line 121 of file GaudiCommon.h.

Constructor & Destructor Documentation

◆ GaudiCommon() [1/4]

template<class PBASE>
template<typename U = PBASE, typename = std::enable_if_t<std::is_base_of_v<Gaudi::Algorithm, PBASE>, U>>
GaudiCommon< PBASE >::GaudiCommon ( const std::string name,
ISvcLocator pSvcLocator 
)
inline

Algorithm constructor - the SFINAE constraint below ensures that this is constructor is only defined if PBASE derives from Algorithm.

Definition at line 642 of file GaudiCommon.h.

642  : base_class( name, pSvcLocator ) {
644  }
FixTESPath< PBASE > base_class
Definition: GaudiCommon.h:93
void initGaudiCommonConstructor(const IInterface *parent=nullptr)
Constructor initializations.

◆ GaudiCommon() [2/4]

template<class PBASE>
template<typename U = PBASE, typename = std::enable_if_t<std::is_base_of_v<AlgTool, PBASE>, U>>
GaudiCommon< PBASE >::GaudiCommon ( const std::string type,
const std::string name,
const IInterface ancestor 
)
inline

Tool constructor - SFINAE-ed to insure this constructor is only defined if PBASE derives from AlgTool.

Definition at line 648 of file GaudiCommon.h.

649  : base_class( type, name, ancestor ) {
650  initGaudiCommonConstructor( this->parent() );
651  }
FixTESPath< PBASE > base_class
Definition: GaudiCommon.h:93
void initGaudiCommonConstructor(const IInterface *parent=nullptr)
Constructor initializations.

◆ GaudiCommon() [3/4]

template<class PBASE>
GaudiCommon< PBASE >::GaudiCommon ( )
privatedelete

◆ GaudiCommon() [4/4]

template<class PBASE>
GaudiCommon< PBASE >::GaudiCommon ( const GaudiCommon< PBASE > &  )
privatedelete

Member Function Documentation

◆ addToServiceList()

template<class PBASE >
void GaudiCommon< PBASE >::addToServiceList ( SmartIF< IService svc) const
private

Add the given service to the list of acquired services.

Definition at line 266 of file GaudiCommon.icpp.

266  {
267  if ( svc ) {
269  if ( i == std::end( m_services ) || !GaudiCommon_details::svc_eq( *i, svc ) ) {
270  m_services.insert( i, std::move( svc ) );
271  } else {
272  this->warning() << "Service " << svc->name() << " already present -- skipping" << endmsg;
273  }
274  }
275 }
constexpr const struct GaudiCommon_details::svc_eq_t svc_eq
Services m_services
List of active services.
Definition: GaudiCommon.h:720
T end(T... args)
T lower_bound(T... args)
constexpr const struct GaudiCommon_details::svc_lt_t svc_lt
SmartIF< SERVICE > svc(const std::string &name, const bool create=true) const
A useful method for the easy location of services.
T move(T... args)
T insert(T... args)
T begin(T... args)
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:192

◆ Assert() [1/2]

template<class PBASE >
void GaudiCommon< PBASE >::Assert ( const bool  ok,
const std::string message = "",
const StatusCode  sc = StatusCodeStatusCode::FAILURE, true ) 
) const
inline

Assertion - throw exception if the given condition is not fulfilled.

See also
GaudiException
Exceptions
Exceptionfor invalid condition
Parameters
okCondition which should be "true"
messageMessage to be associated with the exception

Definition at line 155 of file GaudiCommonImp.h.

155  {
156  if ( !ok ) Exception( msg, sc );
157 }
void Exception(const std::string &msg, const GaudiException &exc, const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
Create and (re)-throw a given GaudiException.

◆ Assert() [2/2]

template<class PBASE >
void GaudiCommon< PBASE >::Assert ( const bool  ok,
const char *  message,
const StatusCode  sc = StatusCodeStatusCode::FAILURE, true ) 
) const
inline

Assertion - throw exception if the given condition is not fulfilled.

See also
GaudiException
Exceptions
Exceptionfor invalid condition
Parameters
okCondition which should be "true"
messageMessage to be associated with the exception

Definition at line 162 of file GaudiCommonImp.h.

162  {
163  if ( !ok ) Exception( msg, sc );
164 }
void Exception(const std::string &msg, const GaudiException &exc, const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
Create and (re)-throw a given GaudiException.

◆ context()

template<class PBASE>
const std::string& GaudiCommon< PBASE >::context ( ) const
inline

Returns the "context" string. Used to identify different processing states.

Definition at line 707 of file GaudiCommon.h.

707 { return m_context; }
Gaudi::Property< std::string > m_context
Definition: GaudiCommon.h:769

◆ counter() [1/2]

template<class PBASE>
StatEntity& GaudiCommon< PBASE >::counter ( const std::string tag) const
inline

accessor to certain counter by name

if ( OK ) { ++counter("OK") ; }
// additive counter ('Flag')
counter("#Tracks") += tracks->size() ;
// multiplicative counter ('Weight')
counter("ProbTot") *= probability ;
See also
StatEntuty
Parameters
tagcounter name
Returns
the counter itself

Definition at line 506 of file GaudiCommon.h.

506  {
507  return const_cast<GaudiCommon<PBASE>*>( this )->counter( tag );
508  }
StatEntity & counter(const std::string &tag) const
accessor to certain counter by name
Definition: GaudiCommon.h:506
Implements the common functionality between GaudiTools and GaudiAlgorithms.
Definition: GaudiCommon.h:91

◆ counter() [2/2]

template<class PBASE>
StatEntity& GaudiCommon< PBASE >::counter ( const std::string tag)
inline

Definition at line 509 of file GaudiCommon.h.

509  {
511  // Return referenced StatEntity if it already exists, else create it
512  auto p = this->findCounter( tag );
513  if ( !p ) {
514  auto& counter = m_countersOwn[tag];
515  this->declareCounter( tag, counter );
516  return counter;
517  }
518  return m_countersOwn[tag];
519  }
StatisticsOwn m_countersOwn
General counters.
Definition: GaudiCommon.h:731
T lock(T... args)
std::mutex m_countersOwnMutex
The mutex for m_countersOwn.
Definition: GaudiCommon.h:733
StatEntity & counter(const std::string &tag) const
accessor to certain counter by name
Definition: GaudiCommon.h:506

◆ countersOwn()

template<class PBASE>
StatisticsOwn GaudiCommon< PBASE >::countersOwn ( ) const
inlineprivate

accessor to all owned counters

Definition at line 484 of file GaudiCommon.h.

484 { return m_countersOwn; }
StatisticsOwn m_countersOwn
General counters.
Definition: GaudiCommon.h:731

◆ Error()

template<class PBASE >
StatusCode GaudiCommon< PBASE >::Error ( const std::string msg,
const StatusCode  st = StatusCode::FAILURE,
const size_t  mx = 10 
) const

Print the error message and return with the given StatusCode.

Also performs statistical analysis of the error messages and suppression after the defined number of error instances.

if( a < 0 ) { return Error("a is negative!") ;}
if( b < 0 ) { return Error("b is illegal!" , StatusCode(25) );
if( c < 0 )
{ return Error("c is negative" , StatusCode(35) , 50 );
See also
MsgStream
IMessageSvc
StatusCode
Parameters
msgError message
stStatusCode to return
mxMaximum number of printouts for this message
Returns
StatusCode

Definition at line 286 of file GaudiCommon.icpp.

286  {
287  // increase local counter of errors
288  const size_t num = ++m_errors[msg];
289  // If suppressed, just return
290  if ( num > mx ) {
291  return st;
292  } else if ( UNLIKELY( num == mx ) ) // issue one-time suppression message
293  {
294  return Print( "The ERROR message is suppressed : '" + msg + "'", st, MSG::ERROR );
295  }
296  // return message
297  return Print( msg, st, MSG::ERROR );
298 }
#define UNLIKELY(x)
Definition: Kernel.h:96
Counter m_errors
Counter of errors.
Definition: GaudiCommon.h:723
WARN_UNUSED StatusCode Print(const std::string &msg, const StatusCode st=StatusCode::SUCCESS, const MSG::Level lev=MSG::INFO) const
Print the message and return with the given StatusCode.

◆ errorsPrint()

template<class PBASE>
bool GaudiCommon< PBASE >::errorsPrint ( ) const
inline

Print error counters at finalization ?

Definition at line 529 of file GaudiCommon.h.

529 { return m_errorsPrint; }
Gaudi::Property< bool > m_errorsPrint
Definition: GaudiCommon.h:739

◆ Exception() [1/3]

template<class PBASE >
void GaudiCommon< PBASE >::Exception ( const std::string msg,
const GaudiException exc,
const StatusCode  sc = StatusCodeStatusCode::FAILURE, true ) 
) const

Create and (re)-throw a given GaudiException.

See also
GaudiException
Exceptions
GaudiExceptionalways thrown!
Parameters
msgException message
exc(previous) exception of type GaudiException

Definition at line 374 of file GaudiCommon.icpp.

374  {
375  // increase local counter of exceptions
376  ++m_exceptions[msg];
377  Print( "Exception (re)throw: " + msg, sc, MSG::FATAL ).ignore();
378  throw GaudiException( this->name() + ":: " + msg, this->name(), sc, exc );
379 }
Define general base for Gaudi exception.
Counter m_exceptions
Counter of exceptions.
Definition: GaudiCommon.h:729
const StatusCode & ignore() const
Ignore/check StatusCode.
Definition: StatusCode.h:153
WARN_UNUSED StatusCode Print(const std::string &msg, const StatusCode st=StatusCode::SUCCESS, const MSG::Level lev=MSG::INFO) const
Print the message and return with the given StatusCode.

◆ Exception() [2/3]

template<class PBASE >
void GaudiCommon< PBASE >::Exception ( const std::string msg,
const std::exception exc,
const StatusCode  sc = StatusCodeStatusCode::FAILURE, true ) 
) const

Create and (re)-throw a given exception.

See also
GaudiException
Exceptions
std::exceptionalways thrown!
Parameters
msgException message
exc(previous) exception of type std::exception
scStatusCode

Definition at line 386 of file GaudiCommon.icpp.

386  {
387  // increase local counter of exceptions
388  ++m_exceptions[msg];
389  Print( "Exception (re)throw: " + msg, sc, MSG::FATAL ).ignore();
390  throw GaudiException( this->name() + ":: " + msg + "(" + exc.what() + ")", "", sc );
391 }
Define general base for Gaudi exception.
Counter m_exceptions
Counter of exceptions.
Definition: GaudiCommon.h:729
T what(T... args)
const StatusCode & ignore() const
Ignore/check StatusCode.
Definition: StatusCode.h:153
WARN_UNUSED StatusCode Print(const std::string &msg, const StatusCode st=StatusCode::SUCCESS, const MSG::Level lev=MSG::INFO) const
Print the message and return with the given StatusCode.

◆ Exception() [3/3]

template<class PBASE >
void GaudiCommon< PBASE >::Exception ( const std::string msg = "no message",
const StatusCode  sc = StatusCodeStatusCode::FAILURE, true ) 
) const

Create and throw an exception with the given message.

See also
GaudiException
Exceptions
GaudiExceptionalways thrown!
Parameters
msgException message
scStatusCode

Definition at line 398 of file GaudiCommon.icpp.

398  {
399  // increase local counter of exceptions
400  ++m_exceptions[msg];
401  Print( "Exception throw: " + msg, sc, MSG::FATAL ).ignore();
402  throw GaudiException( this->name() + ":: " + msg, "", sc );
403 }
Define general base for Gaudi exception.
Counter m_exceptions
Counter of exceptions.
Definition: GaudiCommon.h:729
const StatusCode & ignore() const
Ignore/check StatusCode.
Definition: StatusCode.h:153
WARN_UNUSED StatusCode Print(const std::string &msg, const StatusCode st=StatusCode::SUCCESS, const MSG::Level lev=MSG::INFO) const
Print the message and return with the given StatusCode.

◆ exist()

template<class PBASE >
template<class TYPE >
bool GaudiCommon< PBASE >::exist ( IDataProviderSvc svc,
const std::string location,
const bool  useRootInTES = true 
) const
inline

Check the existence of a data object or container in the Gaudi Transient Event Store.

bool a1 = exist<DataObject>( evtSvc() , "/Event/MyObject" ) ;
bool a2 = exist<MyHits> ( evtSvc() , "/Event/MyHits" ) ;
Attention
The method respects the setting of the job option RootInTES by prepending the value of this to the data location that is passed. The default setting for RootInTES is "" so has no effect. This behavior can be suppressed by passing the argument useRootInTES = false
Parameters
svcPointer to data provider service
locationAddress in Gaudi Transient Store
useRootInTESFlag to turn on(TRUE) off(FALSE) the use of the RootInTES location property
Returns
Boolean indicating status of the request
Return values
trueData object or container exists and implements a proper interface
trueFailed to locate the data object or container

Definition at line 52 of file GaudiCommonImp.h.

53  {
54  // check the environment
55  Assert( service, "exist():: IDataProvider* points to NULL!" );
56  // check the data object
58  return checker( service, this->fullTESLocation( location, useRootInTES ) );
59 }
void Assert(const bool ok, const std::string &message="", const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
Assertion - throw exception if the given condition is not fulfilled.
Helper structure for implementation of "exists"-functions for GaudiCommon<BASE>
Definition: GetData.h:314
std::string fullTESLocation(std::string_view location, bool useRootInTES) const
Returns the full correct event location given the rootInTes settings.
Definition: FixTESPath.h:55

◆ finalize()

template<class PBASE >
StatusCode GaudiCommon< PBASE >::finalize ( )
override

standard finalization method

Returns
status code

Definition at line 131 of file GaudiCommon.icpp.

131  {
133 
134  // print the general information about statistical counters
135  if ( this->msgLevel( MSG::DEBUG ) || ( statPrint() && this->nCounters() > 0 ) ) {
136  // print general statistical counters
138  }
139  // add all counters to the CounterSummarySvc
140  if ( m_counterSummarySvc && this->svcLoc()->existsService( "CounterSummarySvc" ) ) {
141  if ( this->msgLevel( MSG::DEBUG ) ) this->debug() << "adding counters to CounterSummarySvc" << endmsg;
142 
144  Gaudi::Utils::RegEx::matchList counterList{m_counterList.value()};
145 
146  for ( const auto& i : m_countersOwn ) {
147  if ( statList.Or( i.first ) )
148  m_counterSummarySvc->addCounter( this->name(), i.first, i.second, Gaudi::CounterSummary::SaveStatEntity );
149  else if ( counterList.Or( i.first ) )
150  m_counterSummarySvc->addCounter( this->name(), i.first, i.second );
151  }
152  }
153  // release all located tools and services
154  if ( this->msgLevel( MSG::DEBUG ) ) {
155  this->debug() << "Tools to release :";
156  for ( const auto& i : m_managedTools ) { this->debug() << " " << i->name(); }
157  this->debug() << endmsg;
158  }
159  while ( !m_managedTools.empty() ) {
161  }
162 
163  // release all located services
164  if ( this->msgLevel( MSG::DEBUG ) ) {
165  this->debug() << "Services to release :";
166  for ( const auto& i : m_services ) this->debug() << " " << i->name();
167  this->debug() << endmsg;
168  }
169  while ( !m_services.empty() ) {
171  }
172 
173  // release the CounterSummarySvc manually
175 
176  // format printout
177  if ( !m_errors.empty() || !m_warnings.empty() || !m_exceptions.empty() ) {
178  this->always() << "Exceptions/Errors/Warnings/Infos Statistics : " << m_exceptions.size() << "/" << m_errors.size()
179  << "/" << m_warnings.size() << "/" << m_infos.size() << endmsg;
180  if ( errorsPrint() ) { printErrors(); }
181  }
182 
183  // clear *ALL* counters explicitly
184  this->clearCounters();
185  m_countersOwn.clear(); // then delete any owned counters
187  m_infos.clear();
188  m_warnings.clear();
189  m_errors.clear();
190  m_counterList.clear();
191  m_statEntityList.clear();
192 
193  // finalize base class
194  return ( sc && base_class::finalize() ? StatusCode::SUCCESS : StatusCode::FAILURE );
195 }
Counter m_warnings
counter of warnings
Definition: GaudiCommon.h:725
T empty(T... args)
bool statPrint() const
Print statistical counters at finalization ?
Definition: GaudiCommon.h:527
Counter m_exceptions
Counter of exceptions.
Definition: GaudiCommon.h:729
bool errorsPrint() const
Print error counters at finalization ?
Definition: GaudiCommon.h:529
long printStat(const MSG::Level level=MSG::ALWAYS) const
perform the actual printout of statistical counters
T front(T... args)
Services m_services
List of active services.
Definition: GaudiCommon.h:720
StatisticsOwn m_countersOwn
General counters.
Definition: GaudiCommon.h:731
constexpr static const auto SUCCESS
Definition: StatusCode.h:85
long printErrors(const MSG::Level level=MSG::ALWAYS) const
perform the actual printout of error counters
Gaudi::Property< std::vector< std::string > > m_counterList
Definition: GaudiCommon.h:784
Counter m_errors
Counter of errors.
Definition: GaudiCommon.h:723
StatusCode releaseTool(const IAlgTool *tool) const
manual forced (and 'safe') release of the tool
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
virtual void addCounter(const std::string, const std::string name, const StatEntity &, const Gaudi::CounterSummary::SaveType saveType=Gaudi::CounterSummary::SaveSimpleCounter)=0
declare a counter, StatEntity, to be filled in the Counter summary
Counter m_infos
counter of infos
Definition: GaudiCommon.h:727
StatusCode releaseSvc(const IInterface *svc) const
manual forced (and 'safe') release of the service
SmartIF< ICounterSummarySvc > m_counterSummarySvc
a pointer to the CounterSummarySvc
Definition: GaudiCommon.h:133
T clear(T... args)
T size(T... args)
T back(T... args)
constexpr static const auto FAILURE
Definition: StatusCode.h:86
AlgTools m_managedTools
List of active tools.
Definition: GaudiCommon.h:718
void reset(TYPE *ptr=nullptr)
Set the internal pointer to the passed one disposing of the old one.
Definition: SmartIF.h:86
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:192
Gaudi::Property< std::vector< std::string > > m_statEntityList
Definition: GaudiCommon.h:786

◆ get()

template<class PBASE >
template<class TYPE >
Gaudi::Utils::GetData< TYPE >::return_type GaudiCommon< PBASE >::get ( IDataProviderSvc svc,
const std::string location,
const bool  useRootInTES = true 
) const
inline

Templated access to the data in Gaudi Transient Store.

Quick and safe access to the data in Gaudi transient store. The method located the data at given address and perform the debug printout about located data

// Will access MCHits from the given location
MCHits* hits = get<MCHits>( evtSvc () , "MC/Hits" );
Attention
The method respects the setting of the job option RootInTES by prepending the value of this to the data location that is passed. The default setting for RootInTES is "" so has no effect. This behavior can be suppressed by passing the argument useRootInTES = false
See also
IDataProviderSvc
SmartDataPtr
Exceptions
GaudiExceptionfor Invalid Data Provider Service
GaudiExceptionfor invalid/unavailable data
Parameters
svcPointer to data service (data provider)
locationdata location/address in Gaudi Transient Store
useRootInTESFlag to turn on(TRUE) off(FALSE) the use of the RootInTES location property
Returns
pointer to the data object

Definition at line 26 of file GaudiCommonImp.h.

26  {
27  // check the environment
28  Assert( service, "get():: IDataProvider* points to NULL!" );
29  // get the helper object:
31  return getter( *this, service, this->fullTESLocation( location, useRootInTES ) );
32 }
Helper structure for implementation of "get"-functions for GaudiCommon<BASE>
Definition: GaudiCommon.h:53
void Assert(const bool ok, const std::string &message="", const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
Assertion - throw exception if the given condition is not fulfilled.
std::string fullTESLocation(std::string_view location, bool useRootInTES) const
Returns the full correct event location given the rootInTes settings.
Definition: FixTESPath.h:55

◆ getIfExists()

template<class PBASE >
template<class TYPE >
Gaudi::Utils::GetData< TYPE >::return_type GaudiCommon< PBASE >::getIfExists ( IDataProviderSvc svc,
const std::string location,
const bool  useRootInTES = true 
) const
inline

Quicker version of the get function which bypasses the check on the retrieved data.

Definition at line 39 of file GaudiCommonImp.h.

40  {
41  // check the environment
42  Assert( service, "get():: IDataProvider* points to NULL!" );
43  // get the helper object:
45  return getter( *this, service, this->fullTESLocation( location, useRootInTES ), false );
46 }
Helper structure for implementation of "get"-functions for GaudiCommon<BASE>
Definition: GaudiCommon.h:53
void Assert(const bool ok, const std::string &message="", const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
Assertion - throw exception if the given condition is not fulfilled.
std::string fullTESLocation(std::string_view location, bool useRootInTES) const
Returns the full correct event location given the rootInTes settings.
Definition: FixTESPath.h:55

◆ getOrCreate()

template<class PBASE >
template<class TYPE , class TYPE2 >
Gaudi::Utils::GetData< TYPE >::return_type GaudiCommon< PBASE >::getOrCreate ( IDataProviderSvc svc,
const std::string location,
const bool  useRootInTES = true 
) const
inline

Get the existing data object from Gaudi Event Transient store.

Alternatively, create new object and register it in TES and return if object does not exist.

MyHits* hits = getOrCreate<MyHits,MyHits>( evtSvc() , "/Event/MyHits" ) ;
Attention
The method respects the setting of the job option RootInTES by prepending the value of this to the data location that is passed. The default setting for RootInTES is "" so has no effect. This behavior can be suppressed by passing the argument useRootInTES = false
Exceptions
GaudiExceptionfor Invalid Data Provider Service
GaudiExceptionfor invalid/unavailable data
Parameters
svcPointer to data provider service
locationLocation in Gaudi Transient Event Store
useRootInTESFlag to turn on(TRUE) off(FALSE) the use of the RootInTES location property
Returns
A valid pointer to the data object

Definition at line 68 of file GaudiCommonImp.h.

69  {
70  // check the environment
71  Assert( service, "getOrCreate():: svc points to NULL!" );
72  // get the helper object
74  return getter( *this, service, this->fullTESLocation( location, useRootInTES ), location );
75 }
void Assert(const bool ok, const std::string &message="", const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
Assertion - throw exception if the given condition is not fulfilled.
Helper structure for implementation of "getOrCreate"-functions for GaudiCommon<BASE>
Definition: GetData.h:388
std::string fullTESLocation(std::string_view location, bool useRootInTES) const
Returns the full correct event location given the rootInTes settings.
Definition: FixTESPath.h:55

◆ Info()

template<class PBASE >
StatusCode GaudiCommon< PBASE >::Info ( const std::string msg,
const StatusCode  st = StatusCode::SUCCESS,
const size_t  mx = 10 
) const

Print the info message and return with the given StatusCode.

Also performs statistical analysis of the info messages and suppression after the defined number of instances.

See also
MsgStream
IMessageSvc
StatusCode
GaudiCommon::Warning
Parameters
msgInfo message
stStatusCode to return
mxMaximum number of printouts for this message
Returns
The given StatusCode

Definition at line 324 of file GaudiCommon.icpp.

324  {
325  // increase local counter of warnings
326  const size_t num = ++m_infos[msg];
327  // If suppressed, just return
328  if ( num > mx ) {
329  return st;
330  } else if ( UNLIKELY( num == mx ) ) // issue one-time suppression message
331  {
332  return Print( "The INFO message is suppressed : '" + msg + "'", st, MSG::INFO );
333  }
334  // return message
335  return Print( msg, st, MSG::INFO );
336 }
#define UNLIKELY(x)
Definition: Kernel.h:96
Counter m_infos
counter of infos
Definition: GaudiCommon.h:727
WARN_UNUSED StatusCode Print(const std::string &msg, const StatusCode st=StatusCode::SUCCESS, const MSG::Level lev=MSG::INFO) const
Print the message and return with the given StatusCode.

◆ initGaudiCommonConstructor()

template<class PBASE >
void GaudiCommon< PBASE >::initGaudiCommonConstructor ( const IInterface parent = nullptr)
private

Constructor initializations.

Definition at line 65 of file GaudiCommon.icpp.

65  {
66  // setup context from parent if available
67  if ( parent ) {
68  if ( const GaudiAlgorithm* gAlg = dynamic_cast<const GaudiAlgorithm*>( parent ) ) {
69  m_context = gAlg->context();
70  } else if ( const GaudiTool* gTool = dynamic_cast<const GaudiTool*>( parent ) ) {
71  m_context = gTool->context();
72  }
73  }
74 
75  // Get the job option service
76  auto jos = PBASE::template service<IJobOptionsSvc>( "JobOptionsSvc" );
77  if ( !jos ) Exception( "Cannot get JobOptionsSvc" );
78 
79  // Get the "Context" option if in the file...
80  const auto myList = jos->getProperties( this->name() );
81  if ( myList ) {
82  // Iterate over the list to set the options
83  for ( const auto& iter : *myList ) {
84  const Gaudi::Property<std::string>* sp = dynamic_cast<const Gaudi::Property<std::string>*>( iter );
85  if ( sp && iter->name().compare( "Context" ) == 0 ) { m_context = sp->value(); }
86  }
87  }
88 }
Implementation of property with value of concrete type.
Definition: Property.h:352
void Exception(const std::string &msg, const GaudiException &exc, const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
Create and (re)-throw a given GaudiException.
The useful base class for data processing algorithms.
Gaudi::Property< std::string > m_context
Definition: GaudiCommon.h:769
The useful base class for tools.
Definition: GaudiTool.h:101

◆ initialize()

template<class PBASE >
StatusCode GaudiCommon< PBASE >::initialize ( )
override

standard initialization method

Returns
status code

Definition at line 95 of file GaudiCommon.icpp.

95  {
96 
97  // initialize base class
99  if ( sc.isFailure() ) { return Error( "Failed to initialise base class PBASE", sc ); }
100 
101  // some debug printout
102  if ( this->msgLevel( MSG::DEBUG ) ) {
103  this->debug() << "Initialize base class GaudiCommon<" << System::typeinfoName( typeid( PBASE ) ) << ">" << endmsg;
104  if ( !context().empty() ) this->debug() << "Created with context = '" << context() << "'" << endmsg;
105  }
106 
107  // Set up the CounterSummarySvc May need to be changed
108  m_counterSummarySvc = this->svcLoc()->service( "CounterSummarySvc", false );
109  if ( this->msgLevel( MSG::DEBUG ) ) {
110  if ( !m_counterSummarySvc )
111  this->debug() << "could not locate CounterSummarySvc, no counter summary will be made" << endmsg;
112  else
113  this->debug() << "found CounterSummarySvc OK" << endmsg;
114  }
115 
116  // properties will be printed if asked for or in "MSG::DEBUG" mode
117  if ( propsPrint() ) {
119  } else if ( this->msgLevel( MSG::DEBUG ) ) {
121  }
122 
123  return sc;
124 }
GAUDI_API const std::string typeinfoName(const std::type_info &)
Get platform independent information about the class type.
Definition: System.cpp:298
WARN_UNUSED StatusCode Error(const std::string &msg, const StatusCode st=StatusCode::FAILURE, const size_t mx=10) const
Print the error message and return with the given StatusCode.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
long printProps(const MSG::Level level=MSG::ALWAYS) const
perform the actual printout of properties
SmartIF< ICounterSummarySvc > m_counterSummarySvc
a pointer to the CounterSummarySvc
Definition: GaudiCommon.h:133
const std::string & context() const
Returns the "context" string. Used to identify different processing states.
Definition: GaudiCommon.h:707
bool propsPrint() const
Print properties at initialization ?
Definition: GaudiCommon.h:525
StatusCode initialize() override
Definition: FixTESPath.h:39
bool isFailure() const
Definition: StatusCode.h:130
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:192

◆ operator=()

template<class PBASE>
GaudiCommon& GaudiCommon< PBASE >::operator= ( const GaudiCommon< PBASE > &  )
privatedelete

◆ Print()

template<class PBASE >
StatusCode GaudiCommon< PBASE >::Print ( const std::string msg,
const StatusCode  st = StatusCode::SUCCESS,
const MSG::Level  lev = MSG::INFO 
) const

Print the message and return with the given StatusCode.

See also
MsgStream
IMessageSvc
StatusCode
Parameters
msgMessage to print
stStatusCode to return
levPrintout level for the given message
Returns
The given StatusCode

Definition at line 343 of file GaudiCommon.icpp.

343  {
344  // perform printout ?
345  if ( !this->msgLevel( lvl ) ) { return st; } // RETURN
346 
347  // use the predefined stream
348  MsgStream& str = this->msgStream( lvl );
349  if ( typePrint() ) { str << System::typeinfoName( typeid( *this ) ) << ":: "; }
350 
351  // print the message
352  str << msg;
353 
354  // test status code
355  if ( st.isSuccess() ) {
356  } else if ( StatusCode::FAILURE != st ) {
357  str << " StatusCode=" << st.getCode();
358  } else {
359  str << " StatusCode=FAILURE";
360  }
361 
362  // perform print operation
363  str << endmsg;
364 
365  // return
366  return st;
367 }
code_t getCode() const
Retrieve value ("checks" the StatusCode)
Definition: StatusCode.h:137
Definition of the MsgStream class used to transmit messages.
Definition: MsgStream.h:24
GAUDI_API const std::string typeinfoName(const std::type_info &)
Get platform independent information about the class type.
Definition: System.cpp:298
bool isSuccess() const
Definition: StatusCode.h:267
constexpr static const auto FAILURE
Definition: StatusCode.h:86
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:192
bool typePrint() const
Insert the actual C++ type of the algorithm/tool in the messages ?
Definition: GaudiCommon.h:523

◆ printErrors()

template<class PBASE >
long GaudiCommon< PBASE >::printErrors ( const MSG::Level  level = MSG::ALWAYS) const

perform the actual printout of error counters

Parameters
levelThe message level to print at
Returns
number of error counters

Definition at line 442 of file GaudiCommon.icpp.

442  {
443  // format for printout
444  boost::format ftm( " #%|-10s| = %|.8s| %|23t| Message = '%s'" );
445 
446  auto print = [&]( const Counter& c, const std::string& label ) {
447  for ( const auto& i : c ) { this->msgStream( level ) << ( ftm % label % i.second % i.first ) << endmsg; }
448  };
449 
450  print( m_exceptions, "EXCEPTIONS" );
451  print( m_errors, "ERRORS" );
452  print( m_warnings, "WARNINGS" );
453  print( m_infos, "INFOS" );
454 
455  // return total number of errors+warnings+exceptions
456  return m_exceptions.size() + m_errors.size() + m_warnings.size() + m_infos.size();
457 }
Counter m_warnings
counter of warnings
Definition: GaudiCommon.h:725
Counter m_exceptions
Counter of exceptions.
Definition: GaudiCommon.h:729
GAUDI_API std::string format(const char *,...)
MsgStream format utility "a la sprintf(...)".
Definition: MsgStream.cpp:109
std::map< std::string, unsigned int > Counter
the actual type error/warning counter
Definition: GaudiCommon.h:124
STL class.
Counter m_errors
Counter of errors.
Definition: GaudiCommon.h:723
Counter m_infos
counter of infos
Definition: GaudiCommon.h:727
T size(T... args)
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:192

◆ printProps()

template<class PBASE >
long GaudiCommon< PBASE >::printProps ( const MSG::Level  level = MSG::ALWAYS) const

perform the actual printout of properties

perform the printout of properties

Parameters
levelThe message level to print at
Returns
number of properties
number of error counters

Definition at line 466 of file GaudiCommon.icpp.

466  {
467 
468  // print ALL properties
469  MsgStream& msg = this->msgStream( level );
470  const auto& properties = this->getProperties();
471  msg << "List of ALL properties of " << System::typeinfoName( typeid( *this ) ) << "/" << this->name()
472  << " #properties = " << properties.size() << endmsg;
473  for ( const auto& property : reverse( properties ) ) { msg << "Property ['Name': Value] = " << *property << endmsg; }
474  return properties.size();
475 }
Definition of the MsgStream class used to transmit messages.
Definition: MsgStream.h:24
GAUDI_API const std::string typeinfoName(const std::type_info &)
Get platform independent information about the class type.
Definition: System.cpp:298
::details::reverse_wrapper< T > reverse(T &&iterable)
Definition: reverse.h:49
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:192

◆ printStat()

template<class PBASE >
long GaudiCommon< PBASE >::printStat ( const MSG::Level  level = MSG::ALWAYS) const

perform the actual printout of statistical counters

Parameters
levelThe message level to print at
Returns
number of active statistical counters

Definition at line 410 of file GaudiCommon.icpp.

410  {
411  // check how many counters think they should be printed or how many
412  // we anyway want to print
413  auto countToBePrinted = [&]() {
414  unsigned n = 0;
415  this->forEachCounter( [&n]( const std::string&, const auto& counter ) { n += counter.toBePrinted(); } );
416  return n;
417  };
418  auto nbPrintedCounters =
419  ( ( !m_printEmptyCounters && !this->msgLevel( MSG::DEBUG ) ) ? countToBePrinted() : this->nCounters() );
420  // in case nothing should be printed, let's stop here
421  if ( nbPrintedCounters == 0 ) return 0;
422  MsgStream& msg = this->msgStream( level );
423  msg << "Number of counters : " << nbPrintedCounters << "\n" << m_header.value();
424  this->forEachCounter( [&]( const std::string& label, const auto& counter ) {
425  if ( m_printEmptyCounters || this->msgLevel( MSG::DEBUG ) || counter.toBePrinted() ) {
426  std::ostringstream ost;
427  counter.print( ost, label );
428  msg << "\n" << ost.str();
429  }
430  } );
431  //
432  msg << endmsg;
433  //
434  return nbPrintedCounters;
435 }
Gaudi::Property< bool > m_printEmptyCounters
Definition: GaudiCommon.h:765
Definition of the MsgStream class used to transmit messages.
Definition: MsgStream.h:24
STL class.
T str(T... args)
StatEntity & counter(const std::string &tag) const
accessor to certain counter by name
Definition: GaudiCommon.h:506
Gaudi::Property< std::string > m_header
Definition: GaudiCommon.h:770
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:192

◆ propsPrint()

template<class PBASE>
bool GaudiCommon< PBASE >::propsPrint ( ) const
inline

Print properties at initialization ?

Definition at line 525 of file GaudiCommon.h.

525 { return m_propsPrint; }
Gaudi::Property< bool > m_propsPrint
Definition: GaudiCommon.h:748

◆ put() [1/2]

template<class PBASE >
DataObject * GaudiCommon< PBASE >::put ( IDataProviderSvc svc,
std::unique_ptr< DataObject object,
const std::string location,
const bool  useRootInTES = true 
) const

Register a data object or container into Gaudi Event Transient Store.

See also
IDataProviderSvc
Attention
The method respects the setting of the job option RootInTES by prepending the value of this to the data location that is passed. The default setting for RootInTES is "" so has no effect. This behavior can be suppressed by passing the argument useRootInTES = false
Parameters
svcPointer to data provider service
objectData object or container to be registered
locationLocation in Gaudi Event Transient Store ("/Event" could be omitted )
useRootInTESFlag to turn on(TRUE) off(FALSE) the use of the RootInTES location property
Exceptions
GaudiExceptionfor invalid event data service
GaudiExceptionfor invalid object
GaudiExceptionfor error result from event data service
Returns
StatusCode
Return values
StatusCode::SUCCESSData was successfully placed in the TES.
StatusCode::FAILUREFailed to store data in the TES.

Definition at line 486 of file GaudiCommon.icpp.

487  {
488  // check arguments
489  Assert( svc, "put():: Invalid 'service'!" );
490  Assert( static_cast<bool>( object ), "put():: Invalid 'Object'!" );
491  Assert( !location.empty(), "put():: Invalid 'address' = '' " );
492  // final data location
493  const std::string& fullLocation = this->fullTESLocation( location, useRootInTES );
494  // register the object!
495  const StatusCode status = '/' == fullLocation[0] ? svc->registerObject( fullLocation, object.get() )
496  : svc->registerObject( "/Event/" + fullLocation, object.get() );
497  // check the result!
498  DataObject& obj = *object;
499  if ( status.isFailure() ) {
500  Exception( "put():: could not register '" + System::typeinfoName( typeid( obj ) ) + "' at address '" +
501  fullLocation + "'",
502  status );
503  }
504  if ( this->msgLevel( MSG::DEBUG ) ) {
505  Print( "The object of type '" + System::typeinfoName( typeid( obj ) ) + "' is registered in TS at address '" +
506  fullLocation + "'",
507  status, MSG::DEBUG )
508  .ignore();
509  }
510  // if we get here, ownership has been transferred to the IDataProviderSvc
511  return object.release();
512 }
GAUDI_API const std::string typeinfoName(const std::type_info &)
Get platform independent information about the class type.
Definition: System.cpp:298
void Exception(const std::string &msg, const GaudiException &exc, const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
Create and (re)-throw a given GaudiException.
STL class.
void Assert(const bool ok, const std::string &message="", const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
Assertion - throw exception if the given condition is not fulfilled.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
Gaudi::Utils::GetData< TYPE >::return_type get(IDataProviderSvc *svc, const std::string &location, const bool useRootInTES=true) const
Templated access to the data in Gaudi Transient Store.
SmartIF< SERVICE > svc(const std::string &name, const bool create=true) const
A useful method for the easy location of services.
const StatusCode & ignore() const
Ignore/check StatusCode.
Definition: StatusCode.h:153
std::string fullTESLocation(std::string_view location, bool useRootInTES) const
Returns the full correct event location given the rootInTes settings.
Definition: FixTESPath.h:55
WARN_UNUSED StatusCode Print(const std::string &msg, const StatusCode st=StatusCode::SUCCESS, const MSG::Level lev=MSG::INFO) const
Print the message and return with the given StatusCode.
bool isFailure() const
Definition: StatusCode.h:130
A DataObject is the base class of any identifiable object on any data store.
Definition: DataObject.h:30

◆ put() [2/2]

template<class PBASE>
DataObject* GaudiCommon< PBASE >::put ( IDataProviderSvc svc,
DataObject object,
const std::string location,
const bool  useRootInTES = true 
) const
inline

Definition at line 265 of file GaudiCommon.h.

266  {
267  return put( svc, std::unique_ptr<DataObject>( object ), location, useRootInTES );
268  }
DataObject * put(IDataProviderSvc *svc, std::unique_ptr< DataObject > object, const std::string &location, const bool useRootInTES=true) const
Register a data object or container into Gaudi Event Transient Store.
SmartIF< SERVICE > svc(const std::string &name, const bool create=true) const
A useful method for the easy location of services.
STL class.

◆ registerCondition() [1/4]

template<class PBASE>
template<class CallerClass >
void GaudiCommon< PBASE >::registerCondition ( const std::string condition,
StatusCode(CallerClass::*)()  mf = nullptr 
)
inline

register the current instance to the UpdateManagerSvc as a consumer for a condition.

Parameters
conditionthe path inside the Transient Detector Store to the condition object.
mfoptional pointer to the member function to call when the condition object is updated. If the pointer is omitted the user must explicitly provide the class name to the method.
StatusCode MyAlg::initialize(){
// ...
registerCondition("/dd/Conditions/Readout/MyDet/MyCond",&MyAlg::i_CallBack);
registerCondition<MyAlg>("/dd/Conditions/Readout/MyDet/MyOtherCond");
// ...
}

Definition at line 563 of file GaudiCommon.h.

563  {
564  updMgrSvc()->registerCondition( dynamic_cast<CallerClass*>( this ), condition, mf );
565  }
IUpdateManagerSvc * updMgrSvc() const
Short-cut to locate the Update Manager Service.
void registerCondition(CallerClass *instance, const std::string &condition="", typename ObjectMemberFunction< CallerClass >::MemberFunctionType mf=nullptr)
Register an object (algorithm instance) to the service.

◆ registerCondition() [2/4]

template<class PBASE>
template<class CallerClass , class CondType >
void GaudiCommon< PBASE >::registerCondition ( const std::string condition,
CondType *&  condPtrDest,
StatusCode(CallerClass::*)()  mf = NULL 
)
inline

register the current instance to the UpdateManagerSvc as a consumer for a condition.

This version of the method allow the user to specify where to put a copy of the pointer to the condition object.

Parameters
conditionthe path inside the Transient Detector Store to the condition object.
condPtrDestpointer to fill with the location of the condition object. Note: the pointer can be safely used only in the execute method or in the member function triggered by the update.
mfoptional pointer to the member function to call when the condition object is updated. If the pointer is omitted the user must explicitly provide the class name to the method.
class MyAlg: public GaudiAlgorithm {
// ...
public:
virtual StatusCode i_CallBack();
private:
Condition *m_MyCond;
SpecialCondition *m_MyOtherCond;
// ...
};
StatusCode MyAlg::initialize(){
// ...
registerCondition("/dd/Conditions/Readout/MyDet/MyCond",m_MyCond,&MyAlg::i_CallBack);
registerCondition<MyAlg>("/dd/Conditions/Readout/MyDet/MyOtherCond",m_MyOtherCond);
// ...
}

Definition at line 597 of file GaudiCommon.h.

598  {
599  updMgrSvc()->registerCondition( dynamic_cast<CallerClass*>( this ), condition, mf, condPtrDest );
600  }
IUpdateManagerSvc * updMgrSvc() const
Short-cut to locate the Update Manager Service.
void registerCondition(CallerClass *instance, const std::string &condition="", typename ObjectMemberFunction< CallerClass >::MemberFunctionType mf=nullptr)
Register an object (algorithm instance) to the service.

◆ registerCondition() [3/4]

template<class PBASE>
template<class CallerClass >
void GaudiCommon< PBASE >::registerCondition ( char *  condition,
StatusCode(CallerClass::*)()  mf = NULL 
)
inline

just to avoid conflicts with the version using a pointer to a template class.

Definition at line 603 of file GaudiCommon.h.

603  {
604  updMgrSvc()->registerCondition( dynamic_cast<CallerClass*>( this ), std::string( condition ), mf );
605  }
IUpdateManagerSvc * updMgrSvc() const
Short-cut to locate the Update Manager Service.
STL class.
void registerCondition(CallerClass *instance, const std::string &condition="", typename ObjectMemberFunction< CallerClass >::MemberFunctionType mf=nullptr)
Register an object (algorithm instance) to the service.

◆ registerCondition() [4/4]

template<class PBASE>
template<class CallerClass , class TargetClass >
void GaudiCommon< PBASE >::registerCondition ( TargetClass *  condition,
StatusCode(CallerClass::*)()  mf = NULL 
)
inline

register the current instance to the UpdateManagerSvc as a consumer for a condition.

Parameters
conditionthe path inside the Transient Detector Store to the condition object.
mfoptional pointer to the member function to call when the condition object is updated. If the pointer is omitted the user must explicitly provide the class name to the method.
StatusCode MyAlg::initialize(){
// ...
registerCondition("/dd/Conditions/Readout/MyDet/MyCond",&MyAlg::i_CallBack);
registerCondition<MyAlg>("/dd/Conditions/Readout/MyDet/MyOtherCond");
// ...
}

Definition at line 622 of file GaudiCommon.h.

622  {
623  updMgrSvc()->registerCondition( dynamic_cast<CallerClass*>( this ), condition, mf );
624  }
IUpdateManagerSvc * updMgrSvc() const
Short-cut to locate the Update Manager Service.
void registerCondition(CallerClass *instance, const std::string &condition="", typename ObjectMemberFunction< CallerClass >::MemberFunctionType mf=nullptr)
Register an object (algorithm instance) to the service.

◆ release()

template<class PBASE >
StatusCode GaudiCommon< PBASE >::release ( const IInterface interface) const

Manual forced (and 'safe') release of the active tool or service.

IMyTool* mytool = tool<IMyTool>( .... ) ;
mytool->spendCPUtime() ;
release ( mytool ) ;
IMySvc* msvc = svc<IMySvc>( .... ) ;
msvc->spendCPUtime() ;
release ( msvc ) ;
Parameters
interfaceInterface pointer to the interface to be released
Returns
StatusCode
Return values
StatusCode::SUCCESSTool or service was successfully released
StatusCode::FAILUREError releasing too or service

Definition at line 206 of file GaudiCommon.icpp.

206  {
207  if ( !interface ) { return Error( "release(IInterface):: IInterface* points to NULL!" ); }
208  // dispatch between tools and services
209  const IAlgTool* algTool = dynamic_cast<const IAlgTool*>( interface );
210  // perform the actual release
211  return algTool ? releaseTool( algTool ) : releaseSvc( interface );
212 }
WARN_UNUSED StatusCode Error(const std::string &msg, const StatusCode st=StatusCode::FAILURE, const size_t mx=10) const
Print the error message and return with the given StatusCode.
StatusCode releaseTool(const IAlgTool *tool) const
manual forced (and 'safe') release of the tool
StatusCode releaseSvc(const IInterface *svc) const
manual forced (and 'safe') release of the service
The interface implemented by the AlgTool base class.
Definition: IAlgTool.h:23

◆ releaseSvc()

template<class PBASE >
StatusCode GaudiCommon< PBASE >::releaseSvc ( const IInterface svc) const
protected

manual forced (and 'safe') release of the service

Definition at line 247 of file GaudiCommon.icpp.

247  {
248  if ( !Svc ) return Error( "releaseSvc(IInterface):: IInterface* points to NULL!" );
249  SmartIF<IService> svc{const_cast<IInterface*>( Svc )};
250  if ( !svc ) return Warning( "releaseSvc(IInterface):: IInterface* is not a service" );
252  if ( it == m_services.end() || !GaudiCommon_details::svc_eq( *it, svc ) ) {
253  return Warning( "releaseSvc(IInterface):: IInterface* is not active" );
254  }
255  if ( this->msgLevel( MSG::DEBUG ) ) { this->debug() << "Releasing service '" << ( *it )->name() << "'" << endmsg; }
256  m_services.erase( it );
257  return StatusCode::SUCCESS;
258 }
constexpr const struct GaudiCommon_details::svc_eq_t svc_eq
Services m_services
List of active services.
Definition: GaudiCommon.h:720
WARN_UNUSED StatusCode Error(const std::string &msg, const StatusCode st=StatusCode::FAILURE, const size_t mx=10) const
Print the error message and return with the given StatusCode.
constexpr static const auto SUCCESS
Definition: StatusCode.h:85
T end(T... args)
T lower_bound(T... args)
constexpr const struct GaudiCommon_details::svc_lt_t svc_lt
SmartIF< SERVICE > svc(const std::string &name, const bool create=true) const
A useful method for the easy location of services.
T erase(T... args)
T begin(T... args)
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:192
WARN_UNUSED StatusCode Warning(const std::string &msg, const StatusCode st=StatusCode::FAILURE, const size_t mx=10) const
Print the warning message and return with the given StatusCode.

◆ releaseTool()

template<class PBASE >
StatusCode GaudiCommon< PBASE >::releaseTool ( const IAlgTool tool) const
protected

manual forced (and 'safe') release of the tool

Definition at line 219 of file GaudiCommon.icpp.

219  {
220  if ( !algTool ) { return Error( "releaseTool(IAlgTool):: IAlgTool* points to NULL!" ); }
221  if ( !this->toolSvc() ) { return Error( "releaseTool(IAlgTool):: IToolSvc* points to NULL!" ); }
222  // find a tool in the list of active tools
223  auto it = std::find( m_managedTools.begin(), m_managedTools.end(), algTool );
224  if ( m_managedTools.end() == it ) { return Warning( "releaseTool(IAlgTool):: IAlgTool* is not active" ); }
225  // get the tool
226  IAlgTool* t = *it;
227  // cache name
228  const std::string name = t->name();
229  if ( this->msgLevel( MSG::DEBUG ) ) { this->debug() << "Releasing tool '" << name << "'" << endmsg; }
230  // remove the tool from the lists
231  base_class::deregisterTool( t );
232  m_managedTools.erase( it );
233  // release tool
234  if ( this->msgLevel( MSG::DEBUG ) ) {
235  this->debug() << "The tool '" << t->name() << "' of type '" << System::typeinfoName( typeid( *t ) )
236  << "' is released" << endmsg;
237  }
238  const StatusCode sc = this->toolSvc()->releaseTool( t );
239  return sc.isSuccess() ? sc : Warning( "releaseTool(IAlgTool):: error from IToolSvc releasing " + name, sc );
240 }
GAUDI_API const std::string typeinfoName(const std::type_info &)
Get platform independent information about the class type.
Definition: System.cpp:298
WARN_UNUSED StatusCode Error(const std::string &msg, const StatusCode st=StatusCode::FAILURE, const size_t mx=10) const
Print the error message and return with the given StatusCode.
T end(T... args)
virtual const std::string & name() const =0
Retrieve the name of the instance.
STL class.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
T erase(T... args)
bool isSuccess() const
Definition: StatusCode.h:267
T find(T... args)
T begin(T... args)
The interface implemented by the AlgTool base class.
Definition: IAlgTool.h:23
AlgTools m_managedTools
List of active tools.
Definition: GaudiCommon.h:718
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:192
WARN_UNUSED StatusCode Warning(const std::string &msg, const StatusCode st=StatusCode::FAILURE, const size_t mx=10) const
Print the warning message and return with the given StatusCode.

◆ runUpdate()

template<class PBASE>
StatusCode GaudiCommon< PBASE >::runUpdate ( )
inline

asks the UpdateManagerSvc to perform an update of the instance (if needed) without waiting the next BeginEvent incident.

It is useful if the instance can be instantiated after a BeginEvent incident, and used before the next one (for example with tools).

StatusCode MyTool::initialize(){
// ...
return runUpdate();
}

Definition at line 636 of file GaudiCommon.h.

636 { return updMgrSvc()->update( this ); }
IUpdateManagerSvc * updMgrSvc() const
Short-cut to locate the Update Manager Service.
StatusCode update(CallerClass *instance)
Update the given instance.

◆ services()

template<class PBASE>
const Services& GaudiCommon< PBASE >::services ( ) const
inline

get the list of aquired services

Definition at line 702 of file GaudiCommon.h.

702 { return m_services; } // get all services
Services m_services
List of active services.
Definition: GaudiCommon.h:720

◆ statPrint()

template<class PBASE>
bool GaudiCommon< PBASE >::statPrint ( ) const
inline

Print statistical counters at finalization ?

Definition at line 527 of file GaudiCommon.h.

527 { return m_statPrint; }
Gaudi::Property< bool > m_statPrint
Definition: GaudiCommon.h:757

◆ svc()

template<class PBASE >
template<class SERVICE >
SmartIF< SERVICE > GaudiCommon< PBASE >::svc ( const std::string name,
const bool  create = true 
) const
inline

A useful method for the easy location of services.

IMyService* mySvc = svc<IMyService>( "MyServiceType" );
Attention
The services located with this method will be released automatically
See also
IService
ISevcLocator
Service
Exceptions
GaudiExceptionfor error in Algorithms::service
GaudiExceptionfor invalid service
Parameters
nameservice type name
createFlag for creation of non-existing services
Returns
A pointer to the service

Definition at line 121 of file GaudiCommonImp.h.

121  {
122  Assert( this->svcLoc(), "ISvcLocator* points to NULL!" );
124  // check if we already have this service
126  if ( it != std::end( m_services ) && GaudiCommon_details::svc_eq( *it, name ) ) {
127  // Try to get the requested interface
128  s = *it;
129  // check the results
130  if ( !s ) { Exception( "svc():: Could not retrieve Svc '" + name + "'", StatusCode::FAILURE ); }
131  } else {
132  auto baseSvc = this->svcLoc()->service( name, create );
133  // Try to get the requested interface
134  s = baseSvc;
135  // check the results
136  if ( !baseSvc || !s ) { Exception( "svc():: Could not retrieve Svc '" + name + "'", StatusCode::FAILURE ); }
137  // add the tool into list of known tools, to be properly released
138  addToServiceList( baseSvc );
139  }
140  // return *VALID* located service
141  return s;
142 }
Small smart pointer class with automatic reference counting for IInterface.
Definition: IConverter.h:15
constexpr const struct GaudiCommon_details::svc_eq_t svc_eq
Services m_services
List of active services.
Definition: GaudiCommon.h:720
void addToServiceList(SmartIF< IService > svc) const
Add the given service to the list of acquired services.
void Exception(const std::string &msg, const GaudiException &exc, const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
Create and (re)-throw a given GaudiException.
T end(T... args)
T lower_bound(T... args)
void Assert(const bool ok, const std::string &message="", const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
Assertion - throw exception if the given condition is not fulfilled.
constexpr const struct GaudiCommon_details::svc_lt_t svc_lt
T begin(T... args)
string s
Definition: gaudirun.py:318
constexpr static const auto FAILURE
Definition: StatusCode.h:86

◆ tool() [1/2]

template<class PBASE >
template<class TOOL >
TOOL * GaudiCommon< PBASE >::tool ( const std::string type,
const std::string name,
const IInterface parent = 0,
bool  create = true 
) const
inline

Useful method for the easy location of tools.

IMyTool* myTool =
tool<IMyTool>( "MyToolType", "MyToolName", this );
Attention
The tools located with this method will be released automatically
See also
IToolSvc
IAlgTool
Exceptions
GaudiExceptionfor invalid Tool Service
GaudiExceptionfor error from Tool Service
GaudiExceptionfor invalid tool
Parameters
typeTool type
nameTool name
parentTool parent
createFlag for creation of nonexisting tools
Returns
A pointer to the tool

Definition at line 81 of file GaudiCommonImp.h.

82  {
83  // for empty names delegate to another method
84  if ( name.empty() ) return tool<TOOL>( type, parent, create );
85  Assert( this->toolSvc(), "tool():: IToolSvc* points to NULL!" );
86  // get the tool from Tool Service
87  TOOL* Tool = nullptr;
88  const StatusCode sc = this->toolSvc()->retrieveTool( type, name, Tool, parent, create );
89  if ( sc.isFailure() ) { Exception( "tool():: Could not retrieve Tool '" + type + "'/'" + name + "'", sc ); }
90  if ( !Tool ) { Exception( "tool():: Could not retrieve Tool '" + type + "'/'" + name + "'" ); }
91  // insert tool into list of tools
92  PBASE::registerTool( Tool );
93  m_managedTools.push_back( Tool );
94  // return *VALID* located tool
95  return Tool;
96 }
void Exception(const std::string &msg, const GaudiException &exc, const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
Create and (re)-throw a given GaudiException.
T push_back(T... args)
void Assert(const bool ok, const std::string &message="", const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
Assertion - throw exception if the given condition is not fulfilled.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
AlgTools m_managedTools
List of active tools.
Definition: GaudiCommon.h:718
bool isFailure() const
Definition: StatusCode.h:130

◆ tool() [2/2]

template<class PBASE >
template<class TOOL >
TOOL * GaudiCommon< PBASE >::tool ( const std::string type,
const IInterface parent = 0,
bool  create = true 
) const
inline

A useful method for the easy location of tools.

IMyTool* myTool = tool<IMyTool>( "PublicToolType" );
Attention
The tools located with this method will be released automatically
See also
IToolSvc
IAlgTool
Exceptions
GaudiExceptionfor invalid Tool Service
GaudiExceptionfor error from Tool Service
GaudiExceptionfor invalid tool
Parameters
typeTool type, could be of "Type/Name" format
parentTool parent
createFlag for creation of non-existing tools
Returns
A pointer to the tool

Definition at line 102 of file GaudiCommonImp.h.

102  {
103  // check the environment
104  Assert( PBASE::toolSvc(), "IToolSvc* points to NULL!" );
105  // retrieve the tool from Tool Service
106  TOOL* Tool = nullptr;
107  const StatusCode sc = this->toolSvc()->retrieveTool( type, Tool, parent, create );
108  if ( sc.isFailure() ) { Exception( "tool():: Could not retrieve Tool '" + type + "'", sc ); }
109  if ( !Tool ) { Exception( "tool():: Could not retrieve Tool '" + type + "'" ); }
110  // add the tool into the list of known tools to be properly released
111  PBASE::registerTool( Tool );
112  m_managedTools.push_back( Tool );
113  // return *VALID* located tool
114  return Tool;
115 }
void Exception(const std::string &msg, const GaudiException &exc, const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
Create and (re)-throw a given GaudiException.
T push_back(T... args)
void Assert(const bool ok, const std::string &message="", const StatusCode sc=StatusCode(StatusCode::FAILURE, true)) const
Assertion - throw exception if the given condition is not fulfilled.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
AlgTools m_managedTools
List of active tools.
Definition: GaudiCommon.h:718
bool isFailure() const
Definition: StatusCode.h:130

◆ typePrint()

template<class PBASE>
bool GaudiCommon< PBASE >::typePrint ( ) const
inline

Insert the actual C++ type of the algorithm/tool in the messages ?

Definition at line 523 of file GaudiCommon.h.

523 { return m_typePrint; }
Gaudi::Property< bool > m_typePrint
Definition: GaudiCommon.h:767

◆ updMgrSvc()

template<class PBASE >
IUpdateManagerSvc * GaudiCommon< PBASE >::updMgrSvc ( ) const
inline

Short-cut to locate the Update Manager Service.

Definition at line 147 of file GaudiCommonImp.h.

147  {
148  if ( !m_updMgrSvc ) { m_updMgrSvc = svc<IUpdateManagerSvc>( "UpdateManagerSvc", true ); }
149  return m_updMgrSvc;
150 }
IUpdateManagerSvc * m_updMgrSvc
Pointer to the Update Manager Service instance.
Definition: GaudiCommon.h:736

◆ Warning()

template<class PBASE >
StatusCode GaudiCommon< PBASE >::Warning ( const std::string msg,
const StatusCode  st = StatusCode::FAILURE,
const size_t  mx = 10 
) const

Print the warning message and return with the given StatusCode.

Also performs statistical analysis of the warning messages and suppression after the defined number of error instances.

if( a < 0 ) { return Warning("a is negative!") ;}
if( b < 0 ) { return Warning("b is illegal!" , StatusCode(25) );
if( c < 0 )
{ return Warning("c is negative" , StatusCode(35) , 50 );
See also
MsgStream
IMessageSvc
StatusCode
Parameters
msgWarning message
stStatusCode to return
mxMaximum number of printouts for this message
Returns
The given StatusCode

Definition at line 305 of file GaudiCommon.icpp.

305  {
306  // increase local counter of warnings
307  const size_t num = ++m_warnings[msg];
308  // If suppressed, just return
309  if ( num > mx ) {
310  return st;
311  } else if ( UNLIKELY( num == mx ) ) // issue one-time suppression message
312  {
313  return Print( "The WARNING message is suppressed : '" + msg + "'", st, MSG::WARNING );
314  }
315  // return message
316  return Print( msg, st, MSG::WARNING );
317 }
Counter m_warnings
counter of warnings
Definition: GaudiCommon.h:725
#define UNLIKELY(x)
Definition: Kernel.h:96
WARN_UNUSED StatusCode Print(const std::string &msg, const StatusCode st=StatusCode::SUCCESS, const MSG::Level lev=MSG::INFO) const
Print the message and return with the given StatusCode.

Member Data Documentation

◆ IgnoreRootInTES

template<class PBASE>
const bool GaudiCommon< PBASE >::IgnoreRootInTES = false
staticprotected

Simple definition to be used with the new useRootInTES argument get<TYPE> and put methods.

If used with cause the RootInTES option to be IGNORED.

Useful to aid with code readability. e.g.

// Get data, ignoring the setting of rootInTES()
MyData * data = get<MyData>( "/Event/MyData", IgnoreRootInTES );

Definition at line 104 of file GaudiCommon.h.

◆ m_context

template<class PBASE>
Gaudi::Property<std::string> GaudiCommon< PBASE >::m_context {this, "Context", {}, "note: overridden by parent settings"}
private

Definition at line 769 of file GaudiCommon.h.

◆ m_counterList

template<class PBASE>
Gaudi::Property<std::vector<std::string> > GaudiCommon< PBASE >::m_counterList
private
Initial value:
{
this, "CounterList", {".*"}, "RegEx list, of simple integer counters for CounterSummary"}

Definition at line 784 of file GaudiCommon.h.

◆ m_countersOwn

template<class PBASE>
StatisticsOwn GaudiCommon< PBASE >::m_countersOwn
private

General counters.

Definition at line 731 of file GaudiCommon.h.

◆ m_countersOwnMutex

template<class PBASE>
std::mutex GaudiCommon< PBASE >::m_countersOwnMutex
private

The mutex for m_countersOwn.

Definition at line 733 of file GaudiCommon.h.

◆ m_counterSummarySvc

template<class PBASE>
SmartIF<ICounterSummarySvc> GaudiCommon< PBASE >::m_counterSummarySvc
protected

a pointer to the CounterSummarySvc

Definition at line 133 of file GaudiCommon.h.

◆ m_errors

template<class PBASE>
Counter GaudiCommon< PBASE >::m_errors
mutableprivate

Counter of errors.

Definition at line 723 of file GaudiCommon.h.

◆ m_errorsPrint

template<class PBASE>
Gaudi::Property<bool> GaudiCommon< PBASE >::m_errorsPrint
private
Initial value:
{this, "ErrorsPrint", true,
[this]( auto& ) {
if ( this->FSMState() >= Gaudi::StateMachine::INITIALIZED &&
this->errorsPrint() ) {
this->printErrors();
}
},
"print the statistics of errors/warnings/exceptions"}

Definition at line 739 of file GaudiCommon.h.

◆ m_exceptions

template<class PBASE>
Counter GaudiCommon< PBASE >::m_exceptions
mutableprivate

Counter of exceptions.

Definition at line 729 of file GaudiCommon.h.

◆ m_format1

template<class PBASE>
Gaudi::Property<std::string> GaudiCommon< PBASE >::m_format1
private
Initial value:
{
this, "RegularRowFormat", " | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |",
"the format for regular row in the output Stat-table"}

Definition at line 774 of file GaudiCommon.h.

◆ m_format2

template<class PBASE>
Gaudi::Property<std::string> GaudiCommon< PBASE >::m_format2
private
Initial value:
{
this, "EfficiencyRowFormat",
" |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |",
"The format for \"efficiency\" row in the output Stat-table"}

Definition at line 777 of file GaudiCommon.h.

◆ m_header

template<class PBASE>
Gaudi::Property<std::string> GaudiCommon< PBASE >::m_header
private
Initial value:
{this, "StatTableHeader",
" | Counter | # | "
" sum | mean/eff^* | rms/err^* | min | max |",
"the header row for the output Stat-table"}

Definition at line 770 of file GaudiCommon.h.

◆ m_infos

template<class PBASE>
Counter GaudiCommon< PBASE >::m_infos
mutableprivate

counter of infos

Definition at line 727 of file GaudiCommon.h.

◆ m_managedTools

template<class PBASE>
AlgTools GaudiCommon< PBASE >::m_managedTools
mutableprivate

List of active tools.

Definition at line 718 of file GaudiCommon.h.

◆ m_printEmptyCounters

template<class PBASE>
Gaudi::Property<bool> GaudiCommon< PBASE >::m_printEmptyCounters
private
Initial value:
{this, "PrintEmptyCounters", false,
"force printing of empty counters, otherwise only printed in DEBUG mode"}

Definition at line 765 of file GaudiCommon.h.

◆ m_propsPrint

template<class PBASE>
Gaudi::Property<bool> GaudiCommon< PBASE >::m_propsPrint
private
Initial value:
{this, "PropertiesPrint", false,
[this]( auto& ) {
if ( this->FSMState() >= Gaudi::StateMachine::INITIALIZED &&
this->propsPrint() ) {
}
},
"print the properties of the component"}

Definition at line 748 of file GaudiCommon.h.

◆ m_services

template<class PBASE>
Services GaudiCommon< PBASE >::m_services
mutableprivate

List of active services.

Definition at line 720 of file GaudiCommon.h.

◆ m_statEntityList

template<class PBASE>
Gaudi::Property<std::vector<std::string> > GaudiCommon< PBASE >::m_statEntityList
private
Initial value:
{
this, "StatEntityList", {}, "RegEx list, of StatEntity counters for CounterSummary"}

Definition at line 786 of file GaudiCommon.h.

◆ m_statPrint

template<class PBASE>
Gaudi::Property<bool> GaudiCommon< PBASE >::m_statPrint
private
Initial value:
{this, "StatPrint", true,
[this]( auto& ) {
if ( this->FSMState() >= Gaudi::StateMachine::INITIALIZED && this->statPrint() ) {
}
},
"print the table of counters"}

Definition at line 757 of file GaudiCommon.h.

◆ m_typePrint

template<class PBASE>
Gaudi::Property<bool> GaudiCommon< PBASE >::m_typePrint {this, "TypePrint", true, "add the actual C++ component type into the messages"}
private

Definition at line 767 of file GaudiCommon.h.

◆ m_updMgrSvc

template<class PBASE>
IUpdateManagerSvc* GaudiCommon< PBASE >::m_updMgrSvc = nullptr
mutableprivate

Pointer to the Update Manager Service instance.

Definition at line 736 of file GaudiCommon.h.

◆ m_useEffFormat

template<class PBASE>
Gaudi::Property<bool> GaudiCommon< PBASE >::m_useEffFormat
private
Initial value:
{this, "UseEfficiencyRowFormat", true,
"use the special format for printout of efficiency counters"}

Definition at line 781 of file GaudiCommon.h.

◆ m_warnings

template<class PBASE>
Counter GaudiCommon< PBASE >::m_warnings
mutableprivate

counter of warnings

Definition at line 725 of file GaudiCommon.h.

◆ UseRootInTES

template<class PBASE>
const bool GaudiCommon< PBASE >::UseRootInTES = true
staticprotected

Simple definition to be used with the new useRootInTES argument get<TYPE> and put methods.

If used with cause the RootInTES option to be USED

Useful to aid with code readability. e.g.

// Get data, using the setting of rootInTES()
MyData * data = get<MyData>( "/Event/MyData", UseRootInTES );
// note the default setting is true, so this is equivalent to
MyData * data = get<MyData>( "/Event/MyData" );

Definition at line 116 of file GaudiCommon.h.


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