Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Tulay Cuhadar Donszelmann
athena
Commits
0e23ec6e
Commit
0e23ec6e
authored
8 years ago
by
Nora Emilia Pettersson
Committed by
Graeme Stewart
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
modify ITk 1.6 TrackCutSvc (TrkValInterfaces-01-00-06-01)
parent
fec3fd9b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Tracking/TrkValidation/TrkValInterfaces/TrkValInterfaces/ITrackCutSvc.h
+61
-0
61 additions, 0 deletions
...lidation/TrkValInterfaces/TrkValInterfaces/ITrackCutSvc.h
with
61 additions
and
0 deletions
Tracking/TrkValidation/TrkValInterfaces/TrkValInterfaces/ITrackCutSvc.h
0 → 100644
+
61
−
0
View file @
0e23ec6e
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
//////////////////////////////////////////////////////////////////
// ITrackCutSvcr.h
///////////////////////////////////////////////////////////////////
// (c) ATLAS Detector software
///////////////////////////////////////////////////////////////////
#ifndef TRK_ITRACKCUTSVC_H
#define TRK_ITRACKCUTSVC_H
#include
"GaudiKernel/IInterface.h"
namespace
Trk
{
struct
TrackCuts
{
double
maxD0
;
double
maxZ0
;
double
maxZ0sinTheta
;
double
maxEta
;
int
minSiHits
;
int
minPixelHits
;
int
minSCTHits
;
TrackCuts
()
:
maxD0
(
2.
),
maxZ0
(
250.
),
maxZ0sinTheta
(
1.5
),
maxEta
(
4.
),
minSiHits
(
9
),
minPixelHits
(
0
),
minSCTHits
(
0
)
{}
};
static
const
InterfaceID
IID_ITrackCutSvc
(
"ITrackCutSvcs"
,
1
,
0
);
/** @class ITrackTCutSvc
@brief services that allows to centrally modify track cuts
for ITk 1.6 reconstructions
*/
class
ITrackCutSvc
:
virtual
public
IInterface
{
public:
/**Interface ID, declared here, and defined below*/
static
const
InterfaceID
&
interfaceID
();
virtual
TrackCuts
trackCuts
()
const
=
0
;
};
inline
const
InterfaceID
&
Trk
::
ITrackCutSvc
::
interfaceID
()
{
return
Trk
::
IID_ITrackCutSvc
;
}
}
// end namespace
#endif
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