The Gaudi Framework
master (1304469f)
Loading...
Searching...
No Matches
TimelineSvc.h
Go to the documentation of this file.
1
/***********************************************************************************\
2
* (c) Copyright 1998-2025 CERN for the benefit of the LHCb and ATLAS collaborations *
3
* *
4
* This software is distributed under the terms of the Apache version 2 licence, *
5
* copied verbatim in the file "LICENSE". *
6
* *
7
* In applying this licence, CERN does not waive the privileges and immunities *
8
* granted to it by virtue of its status as an Intergovernmental Organization *
9
* or submit itself to any jurisdiction. *
10
\***********************************************************************************/
11
12
#pragma once
13
14
#include <
GaudiKernel/ITimelineSvc.h
>
15
#include <
GaudiKernel/Service.h
>
16
17
#include <string>
18
19
#include <tbb/concurrent_vector.h>
20
21
class
TimelineSvc
:
public
extends
<Service, ITimelineSvc> {
22
public
:
23
using
extends::extends;
24
25
StatusCode
initialize
()
override
;
26
StatusCode
reinitialize
()
override
;
27
StatusCode
finalize
()
override
;
28
29
TimelineRecorder
getRecorder
( std::string alg,
const
EventContext
& ctx )
override
;
30
bool
getTimelineEvent
(
TimelineEvent
& )
const override
;
31
32
bool
isEnabled
()
const override
{
return
m_isEnabled
; }
33
34
private
:
35
void
outputTimeline
();
36
37
Gaudi::Property<std::string>
m_timelineFile
{
this
,
"TimelineFile"
,
"timeline.csv"
,
""
};
38
Gaudi::Property<bool>
m_isEnabled
{
this
,
"RecordTimeline"
,
false
,
"Enable recording of the timeline events"
};
39
Gaudi::Property<bool>
m_dumpTimeline
{
this
,
"DumpTimeline"
,
false
,
"Enable dumping of the timeline events"
};
40
Gaudi::Property<bool>
m_partial
{
this
,
"Partial"
,
false
,
""
};
41
42
tbb::concurrent_vector<TimelineEvent>
m_events
;
43
};
ITimelineSvc.h
Service.h
EventContext
This class represents an entry point to all the event specific data.
Definition
EventContext.h:35
Gaudi::Property
Implementation of property with value of concrete type.
Definition
PropertyFwd.h:27
StatusCode
This class is used for returning status codes from appropriate routines.
Definition
StatusCode.h:64
TimelineSvc
Definition
TimelineSvc.h:21
TimelineSvc::m_isEnabled
Gaudi::Property< bool > m_isEnabled
Definition
TimelineSvc.h:38
TimelineSvc::m_partial
Gaudi::Property< bool > m_partial
Definition
TimelineSvc.h:40
TimelineSvc::outputTimeline
void outputTimeline()
Definition
TimelineSvc.cpp:87
TimelineSvc::getTimelineEvent
bool getTimelineEvent(TimelineEvent &) const override
Definition
TimelineSvc.cpp:77
TimelineSvc::initialize
StatusCode initialize() override
Definition
TimelineSvc.cpp:18
TimelineSvc::reinitialize
StatusCode reinitialize() override
Definition
TimelineSvc.cpp:38
TimelineSvc::finalize
StatusCode finalize() override
Definition
TimelineSvc.cpp:48
TimelineSvc::m_timelineFile
Gaudi::Property< std::string > m_timelineFile
Definition
TimelineSvc.h:37
TimelineSvc::isEnabled
bool isEnabled() const override
Definition
TimelineSvc.h:32
TimelineSvc::getRecorder
TimelineRecorder getRecorder(std::string alg, const EventContext &ctx) override
Definition
TimelineSvc.cpp:61
TimelineSvc::m_dumpTimeline
Gaudi::Property< bool > m_dumpTimeline
Definition
TimelineSvc.h:39
TimelineSvc::m_events
tbb::concurrent_vector< TimelineEvent > m_events
Definition
TimelineSvc.h:42
extends
Base class used to extend a class implementing other interfaces.
Definition
extends.h:19
TimelineEvent
Definition
TimelineEvent.h:17
GaudiHive
src
TimelineSvc.h
Generated on Fri Nov 14 2025 16:03:38 for The Gaudi Framework by
1.13.1