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
!29774
NSW calibration tool
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
NSW calibration tool
mcarnesa/athena:NSWmaria
into
21.3
Overview
68
Commits
9
Pipelines
8
Changes
10
Merged
Maria Carnesale
requested to merge
mcarnesa/athena:NSWmaria
into
21.3
5 years ago
Overview
12
Commits
9
Pipelines
8
Changes
10
Expand
Implementing the first version of the calibration tool for the NSW detector
0
0
Merge request reports
Compare
21.3
version 9
d5ae03fd
5 years ago
version 8
d5ae03fd
5 years ago
version 7
6367474d
5 years ago
version 6
41b413da
5 years ago
version 5
5b8938ed
5 years ago
version 4
662b5b0c
5 years ago
version 3
662b5b0c
5 years ago
version 2
e31dab5c
5 years ago
version 1
9f289140
5 years ago
21.3 (base)
and
latest version
latest version
1383fc30
9 commits,
5 years ago
version 9
d5ae03fd
8 commits,
5 years ago
version 8
d5ae03fd
8 commits,
5 years ago
version 7
6367474d
7 commits,
5 years ago
version 6
41b413da
6 commits,
5 years ago
version 5
5b8938ed
5 commits,
5 years ago
version 4
662b5b0c
3 commits,
5 years ago
version 3
662b5b0c
3 commits,
5 years ago
version 2
e31dab5c
2 commits,
5 years ago
version 1
9f289140
1 commit,
5 years ago
10 files
+
222
−
32
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
MuonSpectrometer/MuonCalib/NSWCalib/NSWCalibTools/NSWCalibTools/INSWCalibTool.h
0 → 100644
+
33
−
0
Options
/*
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/
#ifndef INSWCalibTool_h
#define INSWCalibTool_h
#include
"GaudiKernel/IAlgTool.h"
#include
"GeoPrimitives/GeoPrimitives.h"
#include
<cmath>
#include
<vector>
namespace
Muon
{
static
const
InterfaceID
IID_INSWCalibTool
(
"Muon::INSWCalibTool"
,
1
,
0
);
class
MM_RawData
;
class
INSWCalibTool
:
virtual
public
IAlgTool
{
public:
// static methods
static
const
InterfaceID
&
interfaceID
()
{
return
IID_INSWCalibTool
;}
public
:
// interface methods
virtual
StatusCode
calibrate
(
const
Muon
::
MM_RawData
*
mmRawData
,
const
Amg
::
Vector3D
&
globalPos
,
double
&
dist_drift
,
double
&
distRes_drift
,
double
&
calib_charge
)
=
0
;
};
}
#endif
Loading