All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
GaudiTool.cpp
Go to the documentation of this file.
1 // ============================================================================
2 // Include files
3 // ============================================================================
4 // GaudiKernel
5 // ============================================================================
10 #include "GaudiKernel/INTupleSvc.h"
12 #include "GaudiKernel/Bootstrap.h"
13 // ============================================================================
14 // GaudiAlg
15 // ============================================================================
16 #include "GaudiAlg/GaudiTool.h"
18 // ============================================================================
26 // ============================================================================
27 // templated methods
28 // ============================================================================
29 #include "GaudiCommon.icpp"
30 // ============================================================================
31 template class GaudiCommon<AlgTool>;
32 // ============================================================================
39 // ============================================================================
40 namespace GaudiToolServices
41 {
43  const std::string s_EventDataSvc = "EventDataSvc" ;
45  const std::string s_DetectorDataSvc = "DetectorDataSvc" ;
47  const std::string s_ChronoStatSvc = "ChronoStatSvc" ;
49  const std::string s_IncidentSvc = "IncidentSvc" ;
51  const std::string s_HistoSvc = "HistogramDataSvc" ;
52 }
53 // ============================================================================
54 namespace GaudiToolLocal
55 {
56  // ==========================================================================
60  class Counter final
61  {
62  public:
63  // ========================================================================
64  // constructor
65  Counter ( std::string msg = " Misbalance ")
66  : m_message ( std::move(msg) )
67  {};
68  // destructor
69  ~Counter() { report(); }
70  // ========================================================================
71  public:
72  // ========================================================================
74  long increment ( const std::string& object ) { return ++m_map[object] ; }
76  long decrement ( const std::string& object ) { return --m_map[object] ; }
78  long counts ( const std::string& object ) { return m_map[object] ; }
80  void report() const
81  {
83  if ( !GaudiTool::summaryEnabled() ) { return ; } // RETURN
84  //
85  for ( const auto& entry : m_map )
86  {
87  if( entry.second ) {
88  std::cout << "GaudiTool WARNING " << m_message
89  << "'" << entry.first << "' Counts = " << entry.second
90  << std::endl ;
91  }
92  }
93  }
94  // ========================================================================
95  private:
96  // ========================================================================
98  Map m_map ;
100  // ========================================================================
101  };
102  // ==========================================================================
108  static Counter s_InstanceCounter ( " Create/Destroy (mis)balance " ) ;
109  // ==========================================================================
115  static Counter s_FinalizeCounter ( " Initialize/Finalize (mis)balance " ) ;
116  // ==========================================================================
117 }
118 // ============================================================================
120 // ============================================================================
121 bool GaudiTool::s_enableSummary = true ; // summary is enabled
122 // ============================================================================
123 // enable/disable summary
124 // ============================================================================
125 bool GaudiTool::enableSummary ( bool value ) // enable/disable summary
126 {
127  s_enableSummary = value ;
128  return summaryEnabled () ;
129 }
130 // ============================================================================
131 // is summary enabled?
132 // ============================================================================
133 bool GaudiTool::summaryEnabled () // is summary enabled?
134 { return s_enableSummary ; }
135 // ============================================================================
136 // Standard constructor
137 // ============================================================================
138 GaudiTool::GaudiTool ( const std::string& this_type ,
139  const std::string& this_name ,
140  const IInterface* parent )
141  : GaudiCommon<AlgTool> ( this_type , this_name , parent )
142  , m_local ( this_type + "/" + this_name )
143 {
144  // make instance counts
145  GaudiToolLocal::s_InstanceCounter.increment ( m_local ) ;
146 }
147 // ============================================================================
148 // destructor
149 // ============================================================================
151 {
152  GaudiToolLocal::s_InstanceCounter.decrement ( m_local ) ;
153 }
154 // ============================================================================
155 // standard initialization method
156 // ============================================================================
158 {
159  // initialize the base class
161  if ( sc.isFailure() ) { return sc; }
162 
163  // increment the counter
164  GaudiToolLocal::s_FinalizeCounter.increment( m_local ) ;
165 
166  // are we a public tool ?
167  m_isPublic = isPublic();
168 
169  // return
170  return sc;
171 }
172 // ============================================================================
173 // standard finalization method
174 // ============================================================================
176 {
177  if ( msgLevel(MSG::DEBUG) )
178  debug() << " ==> Finalize the base class GaudiTool " << endmsg;
179 
180  // clear "explicit services"
181  m_detSvc.reset();
182  m_chronoSvc.reset();
183  m_incSvc.reset();
184  m_histoSvc.reset();
185 
186  // finalize the base class
188  if ( sc.isFailure() ) { return sc; }
189 
190  // Decrement the counter
191  GaudiToolLocal::s_FinalizeCounter.decrement( m_local ) ;
192 
193  // return
194  return sc;
195 }
196 // ============================================================================
197 // Determines if this tool is public or not (i.e. owned by the ToolSvc).
198 // ============================================================================
200 {
201  const IAlgTool * tool = this;
202  // Recurse down the ownership tree, to see with we ever end up at the ToolSvc
203  bool ownedByToolSvc = false;
204  unsigned int sanityCheck(0);
205  while ( tool && ++sanityCheck < 99999 )
206  {
207  ownedByToolSvc = ( nullptr != dynamic_cast<const IToolSvc*>(tool->parent()) );
208  if ( ownedByToolSvc ) { break; }
209  // if parent is also a tool, try again
210  tool = dynamic_cast<const IAlgTool*>(tool->parent());
211  }
212  return ownedByToolSvc;
213 }
214 // ============================================================================
215 // accessor to detector service
216 // ============================================================================
218 {
220  return m_detSvc ;
221 }
222 // ============================================================================
223 // The standard N-Tuple
224 // ============================================================================
226 {
227  if ( UNLIKELY(!m_ntupleSvc) ) m_ntupleSvc = service( "NTupleSvc" , true ) ;
228  return m_ntupleSvc ;
229 }
230 // ============================================================================
231 // The standard event collection service
232 // ============================================================================
234 {
235  if (UNLIKELY(!m_evtColSvc)) m_evtColSvc = service( "EvtTupleSvc" , true ) ;
236  return m_evtColSvc ;
237 }
238 // ============================================================================
239 // accessor to Incident Service
240 // ============================================================================
242 {
244  return m_incSvc ;
245 }
246 // ============================================================================
247 // accessor to Chrono & Stat Service
248 // ============================================================================
250 {
252  return m_chronoSvc ;
253 }
254 // ============================================================================
255 // accessor to histogram Service
256 // ============================================================================
258 {
260  return m_histoSvc;
261 }
262 // ============================================================================
263 // accessor to Algorithm Context Service
264 // ============================================================================
266 {
268  return m_contextSvc;
269 }
270 // ============================================================================
271 // The END
272 // ============================================================================
IChronoStatSvc * chronoSvc() const
accessor to Chrono & Stat Service
Definition: GaudiTool.cpp:249
IIncidentSvc * incSvc() const
accessor to Incident Service
Definition: GaudiTool.cpp:241
The interface implemented by the IToolSvc base class.
Definition: IToolSvc.h:19
IAlgContextSvc * contextSvc() const
acessor to the Algorithm Context Service
Definition: GaudiTool.cpp:265
Header file for class GaudiAlgorithm.
bool m_isPublic
Flag to say if the tool is a public or private tool.
Definition: GaudiTool.h:786
SmartIF< INTupleSvc > m_ntupleSvc
pointer to the N-Tuple service
Definition: GaudiTool.h:766
long counts(const std::string &object)
current count
Definition: GaudiTool.cpp:78
void report() const
make a report
Definition: GaudiTool.cpp:80
IHistogramSvc * histoSvc() const
acessor to the histogram service
Definition: GaudiTool.cpp:257
Counter(std::string msg=" Misbalance ")
Definition: GaudiTool.cpp:65
Header file for class GaudiAlgorithm.
T endl(T...args)
#define UNLIKELY(x)
Definition: Kernel.h:126
const std::string s_ChronoStatSvc
the default name for Chrono & Stat Service
Definition: GaudiTool.cpp:47
SmartIF< IAlgContextSvc > m_contextSvc
Algorithm Context Service.
Definition: GaudiTool.h:778
STL namespace.
static bool enableSummary(bool)
enable/disable summary
Definition: GaudiTool.cpp:125
StatusCode finalize() override
standard finalization method
SmartIF< IIncidentSvc > m_incSvc
pointer to Incident Service
Definition: GaudiTool.h:774
Data provider interface definition.
INTupleSvc * ntupleSvc() const
Access the standard N-Tuple.
Definition: GaudiTool.cpp:225
bool isFailure() const
Test for a status code of FAILURE.
Definition: StatusCode.h:84
const std::string s_IncidentSvc
the default name for Incident Service
Definition: GaudiTool.cpp:49
Collection of default services names to be used for class GaudiTool.
STL class.
The IChronoStatSvc is the interface implemented by the ChronoStatService.
INTupleSvc * evtColSvc() const
Access the standard event collection service.
Definition: GaudiTool.cpp:233
const std::string s_HistoSvc
the default name for Histogram Service
Definition: GaudiTool.cpp:51
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
Definition of the basic interface.
Definition: IInterface.h:234
StatusCode service(const std::string &name, T *&svc, bool createIf=true) const
Access a service by name, creating it if it doesn&#39;t already exist.
Definition: AlgTool.h:131
GaudiTool()=delete
no default/copy constructor, no assignment
~GaudiTool() override
destructor, virtual and protected
Definition: GaudiTool.cpp:150
Definition of the IHistogramSvc interface class.
Definition: IHistogramSvc.h:47
bool isPublic() const
Determines if this tool is public or not (i.e. owned by the ToolSvc).
Definition: GaudiTool.cpp:199
long increment(const std::string &object)
make the increment
Definition: GaudiTool.cpp:74
const std::string s_DetectorDataSvc
the default name for Detector Data Service
Definition: GaudiTool.cpp:45
StatusCode initialize() override
standard initialization method
std::map< std::string, long > Map
Definition: GaudiTool.cpp:97
static bool s_enableSummary
enable printout of summary?
Definition: GaudiTool.h:796
MsgStream & debug() const
shortcut for the method msgStream(MSG::DEBUG)
SmartIF< IChronoStatSvc > m_chronoSvc
pointer to Chrono & Stat Service
Definition: GaudiTool.h:772
SmartIF< IHistogramSvc > m_histoSvc
pointer for histogram service
Definition: GaudiTool.h:776
simple local counter
Definition: GaudiTool.cpp:60
Base class from which all the concrete tool classes should be derived.
Definition: AlgTool.h:48
The interface implemented by the AlgTool base class.
Definition: IAlgTool.h:23
Gaudi::Property< std::string > m_contextSvcName
Definition: GaudiTool.h:780
const IInterface * parent() const override
Retrieve parent of the sub-algtool.
Definition: AlgTool.cpp:77
StatusCode finalize() override
standard finalization method
Definition: GaudiTool.cpp:175
SmartIF< IDataProviderSvc > m_detSvc
pointer to Detector Data Service
Definition: GaudiTool.h:770
const std::string s_EventDataSvc
the default name for Event Data Service
Definition: GaudiTool.cpp:43
An abstract interface for Algorithm Context Service.
void reset(TYPE *ptr=nullptr)
Set the internal pointer to the passed one disposing of the old one.
Definition: SmartIF.h:88
const std::string m_local
full tool name "type/name"
Definition: GaudiTool.h:791
SmartIF< INTupleSvc > m_evtColSvc
pointer to the event tag collection service
Definition: GaudiTool.h:768
MSG::Level msgLevel() const
get the output level from the embedded MsgStream
long decrement(const std::string &object)
make the decrement
Definition: GaudiTool.cpp:76
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.
virtual const IInterface * parent() const =0
The parent of the concrete AlgTool.
static bool summaryEnabled()
is summary enabled?
Definition: GaudiTool.cpp:133
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:244
The interface implemented by the IncidentSvc service.
Definition: IIncidentSvc.h:23
StatusCode initialize() override
standard initialization method
Definition: GaudiTool.cpp:157
IDataProviderSvc * detSvc() const
accessor to detector service
Definition: GaudiTool.cpp:217