Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
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
!43273
LArElecCalib: Remove ILArADC2MeVTool.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
LArElecCalib: Remove ILArADC2MeVTool.
ssnyder/athena:adc2mev.LArElecCalib-20210506
into
master
Overview
2
Commits
1
Pipelines
1
Changes
4
Merged
Scott Snyder
requested to merge
ssnyder/athena:adc2mev.LArElecCalib-20210506
into
master
3 years ago
Overview
2
Commits
1
Pipelines
1
Changes
4
Expand
Remove obsolete/unused ILArADC2MeVTool.
0
0
Merge request reports
Viewing commit
915cd55b
Show latest version
4 files
+
0
−
48
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
915cd55b
LArElecCalib: Remove ILArADC2MeVTool.
· 915cd55b
scott snyder
authored
3 years ago
Remove obsolete/unused ILArADC2MeVTool.
LArCalorimeter/LArElecCalib/LArElecCalib/ILArADC2MeVTool.h deleted
100755 → 0
+
0
−
45
Options
/*
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/
#ifndef LARELECCALIB_ILARADC2MEVTOOL_H
#define LARELECCALIB_ILARADC2MEVTOOL_H
#include
"GaudiKernel/IAlgTool.h"
#include
"LArIdentifier/LArOnlineID.h"
#include
"AthenaKernel/IOVSvcDefs.h"
#include
"CxxUtils/checker_macros.h"
#include
<vector>
// Declaration of the interface ID (interface id, major version, minor version)
static
const
InterfaceID
IID_ILArADC2MeVTool
(
"ILArADC2MeVTool"
,
1
,
0
);
class
ATLAS_NOT_THREAD_SAFE
ILArADC2MeVTool
:
virtual
public
IAlgTool
{
/**
* AlgoTool to compute ADC2MEV factor from the 3 subfactors ADC2DAC, DAC2UA, UA2MEV
*
* @author S. Laplace
* @version 0-0-1, 16/01/2004
*
* History:
* - 08/02/2004, S. Laplace: new online ID
*
*/
public:
virtual
~
ILArADC2MeVTool
()
{};
virtual
const
std
::
vector
<
float
>&
ADC2MEV
ATLAS_NOT_THREAD_SAFE
(
const
HWIdentifier
&
id
,
int
gain
)
const
=
0
;
virtual
const
std
::
vector
<
float
>&
ADC2MEV
ATLAS_NOT_THREAD_SAFE
(
const
Identifier
&
id
,
int
gain
)
const
=
0
;
enum
{
ERRORCODE
=
-
999
};
virtual
StatusCode
LoadCalibration
(
IOVSVC_CALLBACK_ARGS
)
=
0
;
static
const
InterfaceID
&
interfaceID
()
{
return
IID_ILArADC2MeVTool
;
}
};
#endif
Loading