Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
166
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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
atlas
athena
Merge requests
!43131
LArElecCalib: Remove ILArOFCTool.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
LArElecCalib: Remove ILArOFCTool.
ssnyder/athena:ofctool.LArElecCalib-20210430
into
master
Overview
2
Commits
1
Pipelines
1
Changes
4
Merged
Scott Snyder
requested to merge
ssnyder/athena:ofctool.LArElecCalib-20210430
into
master
3 years ago
Overview
2
Commits
1
Pipelines
1
Changes
4
Expand
Remove obsolete/unused interface ILArOFCTool.
👍
0
👎
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
8449e25f
1 commit,
3 years ago
4 files
+
0
−
58
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
LArCalorimeter/LArElecCalib/LArElecCalib/ILArOFCTool.h deleted
100755 → 0
+
0
−
55
Options
/*
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/
#ifndef LARELECCALIB_ILAROFCTOOL_H
#define LARELECCALIB_ILAROFCTOOL_H
#include
"GaudiKernel/IAlgTool.h"
#include
"AthenaKernel/IOVSvcDefs.h"
#include
"LArElecCalib/LArVectorProxy.h"
#include
"CxxUtils/checker_macros.h"
class
Identifier
;
class
HWIdentifier
;
#include
<vector>
static
const
InterfaceID
IID_ILArOFCTool
(
"ILArOFCTool"
,
1
,
0
);
class
ATLAS_NOT_THREAD_SAFE
ILArOFCTool
:
virtual
public
IAlgTool
{
/**
* AlgoTool to compute OFC on fly
*
*/
public:
typedef
LArVectorProxy
OFCRef_t
;
virtual
~
ILArOFCTool
()
{};
virtual
OFCRef_t
OFC_a
ATLAS_NOT_THREAD_SAFE
(
const
HWIdentifier
&
id
,
int
gain
,
float
Nminbias
=-
1
)
const
=
0
;
virtual
OFCRef_t
OFC_b
ATLAS_NOT_THREAD_SAFE
(
const
HWIdentifier
&
id
,
int
gain
,
float
Nminbias
=-
1
)
const
=
0
;
virtual
OFCRef_t
OFC_a
ATLAS_NOT_THREAD_SAFE
(
const
Identifier
&
id
,
int
gain
,
float
Nminbias
=-
1
)
const
=
0
;
virtual
OFCRef_t
OFC_b
ATLAS_NOT_THREAD_SAFE
(
const
Identifier
&
id
,
int
gain
,
float
Nminbias
=-
1
)
const
=
0
;
virtual
StatusCode
LoadCalibration
(
IOVSVC_CALLBACK_ARGS
)
=
0
;
static
const
InterfaceID
&
interfaceID
()
{
return
IID_ILArOFCTool
;
}
};
#endif
Loading