Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Gaudi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gaudi
Gaudi
Commits
8c8a9522
Commit
8c8a9522
authored
8 years ago
by
Marco Clemencic
Browse files
Options
Downloads
Patches
Plain Diff
removed unused private data members
parent
410944a2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!230
cleaning up last minute glitches
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GaudiAlg/GaudiAlg/GaudiSequencer.h
+0
-1
0 additions, 1 deletion
GaudiAlg/GaudiAlg/GaudiSequencer.h
GaudiCoreSvc/src/AlgExecStateSvc/AlgExecStateSvc.h
+7
-9
7 additions, 9 deletions
GaudiCoreSvc/src/AlgExecStateSvc/AlgExecStateSvc.h
with
7 additions
and
10 deletions
GaudiAlg/GaudiAlg/GaudiSequencer.h
+
0
−
1
View file @
8c8a9522
...
...
@@ -77,7 +77,6 @@ private:
Gaudi
::
Property
<
bool
>
m_returnOK
{
this
,
"ReturnOK"
,
false
,
"forces the sequencer to return a good status"
};
Gaudi
::
Property
<
bool
>
m_shortCircuit
{
this
,
"ShortCircuit"
,
true
,
"stop processing as soon as possible"
};
bool
m_isInitialized
;
///< Indicate that we are ready
std
::
vector
<
AlgorithmEntry
>
m_entries
;
///< List of algorithms to process.
ISequencerTimerTool
*
m_timerTool
=
nullptr
;
///< Pointer to the timer tool
int
m_timer
;
///< Timer number for the sequencer
...
...
This diff is collapsed.
Click to expand it.
GaudiCoreSvc/src/AlgExecStateSvc/AlgExecStateSvc.h
+
7
−
9
View file @
8c8a9522
...
...
@@ -29,21 +29,21 @@ public:
typedef
IAlgExecStateSvc
::
AlgStateMap_t
AlgStateMap_t
;
const
AlgExecState
&
algExecState
(
const
Gaudi
::
StringKey
&
algName
,
const
AlgExecState
&
algExecState
(
const
Gaudi
::
StringKey
&
algName
,
const
EventContext
&
ctx
)
const
override
;
const
AlgExecState
&
algExecState
(
IAlgorithm
*
iAlg
,
const
AlgExecState
&
algExecState
(
IAlgorithm
*
iAlg
,
const
EventContext
&
ctx
)
const
override
;
AlgExecState
&
algExecState
(
IAlgorithm
*
iAlg
,
AlgExecState
&
algExecState
(
IAlgorithm
*
iAlg
,
const
EventContext
&
ctx
)
override
;
const
AlgStateMap_t
&
algExecStates
(
const
EventContext
&
ctx
)
const
override
;
const
AlgExecState
&
algExecState
(
const
Gaudi
::
StringKey
&
algName
)
const
override
;
const
AlgExecState
&
algExecState
(
IAlgorithm
*
iAlg
)
const
override
;
AlgExecState
&
algExecState
(
IAlgorithm
*
iAlg
)
override
;
const
AlgStateMap_t
&
algExecStates
()
const
override
;
void
reset
(
const
EventContext
&
ctx
)
override
;
void
reset
()
override
;
...
...
@@ -70,17 +70,15 @@ private:
// typedef std::map<Gaudi::StringKey, AlgExecState> AlgStateMap_t;
typedef
std
::
vector
<
AlgStateMap_t
>
AlgStates_t
;
AlgStates_t
m_algStates
;
std
::
vector
<
EventStatus
::
Status
>
m_eventStatus
;
std
::
vector
<
Gaudi
::
StringKey
>
m_preInitAlgs
;
bool
m_isMT
;
void
init
();
void
checkInit
()
const
;
std
::
once_flag
m_initFlag
;
bool
m_isInit
;
std
::
mutex
m_mut
;
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment