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
!59851
Add CA configuration for DESDM_MCP & DRAW_ZMUMU
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add CA configuration for DESDM_MCP & DRAW_ZMUMU
jojungge/athena:ATLASRECTS-7423
into
master
Overview
21
Commits
3
Pipelines
0
Changes
10
Merged
Johannes Junggeburth
requested to merge
jojungge/athena:ATLASRECTS-7423
into
master
2 years ago
Overview
9
Commits
3
Pipelines
0
Changes
10
Expand
Add CA configuration for the DESDM_MCP & DRAW_ZMUMU file formats (Tagging:
@pscholer
,
@rosati
,
@cgrefe
,
@gfacini
)
Transform the MuonAnalysisThinningTool to an reentrant algorithm
AsgSelectionToolWrapper declares the data dependencies
Add various CA snippets to DerivationFrameworkTools
Tagging:
@jcatmore
,
@tadej
Closes
ATLASRECTS-7423
Edited
2 years ago
by
Johannes Junggeburth
0
0
Merge request reports
Compare
master
version 8
a67abaa1
2 years ago
version 7
df540f7c
2 years ago
version 6
47c55cc4
2 years ago
version 5
e4eb22cf
2 years ago
version 4
34db4eb1
2 years ago
version 3
26264a2f
2 years ago
version 2
6245b71a
2 years ago
version 1
de1ebf39
2 years ago
master (base)
and
latest version
latest version
1b951d79
3 commits,
2 years ago
version 8
a67abaa1
2 commits,
2 years ago
version 7
df540f7c
1 commit,
2 years ago
version 6
47c55cc4
9 commits,
2 years ago
version 5
e4eb22cf
9 commits,
2 years ago
version 4
34db4eb1
6 commits,
2 years ago
version 3
26264a2f
4 commits,
2 years ago
version 2
6245b71a
3 commits,
2 years ago
version 1
de1ebf39
2 commits,
2 years ago
10 files
+
594
−
80
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
PhysicsAnalysis/DerivationFramework/DerivationFrameworkMuons/DerivationFrameworkMuons/AnalysisMuonThinning
Tool
.h
→
PhysicsAnalysis/DerivationFramework/DerivationFrameworkMuons/DerivationFrameworkMuons/AnalysisMuonThinning
Alg
.h
+
16
−
16
Options
/*
Copyright (C) 2002-202
2
CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-202
3
CERN for the benefit of the ATLAS collaboration
*/
#ifndef DERIVATIONFRAMEWORK_ANALYSISMUONTHINNING
TOOL
__H
#define DERIVATIONFRAMEWORK_ANALYSISMUONTHINNING
TOOL
__H
#ifndef DERIVATIONFRAMEWORK_ANALYSISMUONTHINNING
ALG
__H
#define DERIVATIONFRAMEWORK_ANALYSISMUONTHINNING
ALG
__H
#include
<AthenaBaseComps/Ath
AlgTool
.h>
#include
<AthenaBaseComps/Ath
ReentrantAlgorithm
.h>
#include
<DerivationFrameworkInterfaces/IThinningTool.h>
#include
<MuonAnalysisInterfaces/IMuonSelectionTool.h>
#include
<StoreGate/ReadDecorHandleKeyArray.h>
@@ -13,15 +13,15 @@
namespace
DerivationFramework
{
class
AnalysisMuonThinning
Tool
:
public
Ath
AlgTool
,
virtual
public
IThinningTool
{
class
AnalysisMuonThinning
Alg
:
public
Ath
ReentrantAlgorithm
{
public:
AnalysisMuonThinning
Tool
(
const
std
::
string
&
t
,
const
std
::
string
&
n
,
const
IInterface
*
p
);
AnalysisMuonThinning
Alg
(
const
std
::
string
&
n
,
ISvcLocator
*
p
);
~
AnalysisMuonThinning
Tool
()
=
default
;
~
AnalysisMuonThinning
Alg
()
=
default
;
virtual
StatusCode
initialize
()
override
;
virtual
StatusCode
doThinning
(
)
const
override
;
virtual
StatusCode
execute
(
const
EventContext
&
ctx
)
const
override
;
private:
ToolHandle
<
CP
::
IMuonSelectionTool
>
m_muonSelTool
{
this
,
"SelectionTool"
,
""
,
"Configured instance of the MuonSelectionTool"
};
@@ -37,21 +37,21 @@ namespace DerivationFramework {
/// Thinning of unneeded muon tracks
Gaudi
::
Property
<
std
::
string
>
m_streamName
{
this
,
"StreamName"
,
""
,
"Name of the stream being thinned"
};
SG
::
ThinningHandleKey
<
xAOD
::
MuonContainer
>
m_muonKey
{
this
,
"
m
uonThinning"
,
"Muons"
,
"Name of the muon container behind"
};
SG
::
ThinningHandleKey
<
xAOD
::
TrackParticleContainer
>
m_IdTrkKey
{
this
,
"IdTrkThinnig"
,
"In
nerDetector
TrackParticles"
,
SG
::
ThinningHandleKey
<
xAOD
::
MuonContainer
>
m_muonKey
{
this
,
"
M
uonThinning"
,
"Muons"
,
"Name of the muon container behind"
};
SG
::
ThinningHandleKey
<
xAOD
::
TrackParticleContainer
>
m_IdTrkKey
{
this
,
"IdTrkThinnig"
,
"In
Det
TrackParticles"
,
"Thin the unneeded ID track particles associated with muons"
};
SG
::
ThinningHandleKey
<
xAOD
::
TrackParticleContainer
>
m_FwdIdTrkKey
{
this
,
"IdTrkThinning"
,
"In
nerDetector
TrackParticles"
,
this
,
"IdTrk
Fwd
Thinning"
,
"In
DetForward
TrackParticles"
,
"Thin the unneeded forward ID tracks (Needed for Sillicon associated Forward)"
};
SG
::
ThinningHandleKey
<
xAOD
::
TrackParticleContainer
>
m_MSTrkKey
{
this
,
"MSTrkThinning"
,
"M
S
TrackParticles"
,
SG
::
ThinningHandleKey
<
xAOD
::
TrackParticleContainer
>
m_MSTrkKey
{
this
,
"MSTrkThinning"
,
"M
uonSpectrometer
TrackParticles"
,
"Key to get rid of the unneeded MS tracks"
};
SG
::
ThinningHandleKey
<
xAOD
::
TrackParticleContainer
>
m_METrkKey
{
this
,
"METrkThinning"
,
"
M
ETrackParticles"
,
SG
::
ThinningHandleKey
<
xAOD
::
TrackParticleContainer
>
m_METrkKey
{
this
,
"METrkThinning"
,
"E
xtrapolatedMuon
TrackParticles"
,
"Key to get rid of the unneeded ME tracks"
};
SG
::
ThinningHandleKey
<
xAOD
::
TrackParticleContainer
>
m_MSOETrkKey
{
this
,
"MSOETrkThinning"
,
"MSO
E
TrackParticles"
,
SG
::
ThinningHandleKey
<
xAOD
::
TrackParticleContainer
>
m_MSOETrkKey
{
this
,
"MSOETrkThinning"
,
"MSO
nlyExtrapolatedMuon
TrackParticles"
,
"Key to get rid of the unneeded MSOE tracks"
};
SG
::
ThinningHandleKey
<
xAOD
::
TrackParticleContainer
>
m_CmbTrkKey
{
this
,
"CmbTrkThinning"
,
"CombinedTrackParticles"
,
SG
::
ThinningHandleKey
<
xAOD
::
TrackParticleContainer
>
m_CmbTrkKey
{
this
,
"CmbTrkThinning"
,
"Combined
Muon
TrackParticles"
,
"Key to get rid of the unneeded MSOE tracks"
};
SG
::
ThinningHandleKey
<
xAOD
::
MuonSegmentContainer
>
m_SegmentKey
{
this
,
"SegmentThinning"
,
"Segments"
,
SG
::
ThinningHandleKey
<
xAOD
::
MuonSegmentContainer
>
m_SegmentKey
{
this
,
"SegmentThinning"
,
"
Muon
Segments"
,
"Key to get rid of the unneeded segments"
};
};
Loading