Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Requirements
Code
Merge requests
0
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
Katja Hannele Mankinen
athena
Commits
e2d50f9a
Commit
e2d50f9a
authored
6 years ago
by
Will Kalderon
Browse files
Options
Downloads
Patches
Plain Diff
rearrange order of seed finding for round and square jets
Former-commit-id: 7c58c260b44a45b2defd0268e15633ad88e362b5
parent
ef4969e4
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
Trigger/TrigT1/TrigT1CaloFexSim/src/JGTowerReader.cxx
+7
-16
7 additions, 16 deletions
Trigger/TrigT1/TrigT1CaloFexSim/src/JGTowerReader.cxx
with
7 additions
and
16 deletions
Trigger/TrigT1/TrigT1CaloFexSim/src/JGTowerReader.cxx
+
7
−
16
View file @
e2d50f9a
...
...
@@ -200,31 +200,22 @@ StatusCode JGTowerReader::JFexAlg(const xAOD::JGTowerContainer* jTs){
}
}
// find all seeds
ATH_MSG_DEBUG
(
"JFexAlg: SeedFinding"
);
// the diameter of seed, and its range to be local maximum
// Careful to ensure the range set to be no tower double counted
if
(
m_makeSquareJets
)
{
ATH_MSG_DEBUG
(
"jSeeds: m_jSeed_size = "
<<
m_jSeed_size
<<
", m_jMax_r = "
<<
m_jMax_r
);
// find all seeds
// the diameter of seed, and its range to be local maximum
// Careful to ensure the range set to be no tower double counted
ATH_MSG_DEBUG
(
"JFexAlg: SeedFinding with jSeeds; m_jSeed_size = "
<<
m_jSeed_size
<<
", m_jMax_r = "
<<
m_jMax_r
);
CHECK
(
JetAlg
::
SeedFinding
(
jTs
,
jSeeds
,
m_jSeed_size
,
m_jMax_r
,
jJet_thr
));
}
if
(
m_makeRoundJets
)
{
ATH_MSG_DEBUG
(
"jJetSeeds: m_jJetSeed_size = "
<<
m_jJetSeed_size
<<
", m_jJet_max_r = "
<<
m_jJet_max_r
);
CHECK
(
JetAlg
::
SeedFinding
(
jTs
,
jJetSeeds
,
m_jJetSeed_size
,
m_jJet_max_r
,
jJet_jet_thr
));
}
// build initial JFexjet
if
(
m_makeSquareJets
)
{
ATH_MSG_DEBUG
(
"JFexAlg: BuildJet"
);
CHECK
(
JetAlg
::
BuildJet
(
jTs
,
jSeeds
,
jL1Jets
,
m_jJet_r
,
jJet_thr
));
}
// build round JFexJe
if
(
m_makeRoundJets
)
{
ATH_MSG_DEBUG
(
"JFexAlg: SeedFinding with jJetSeeds; m_jJetSeed_size = "
<<
m_jJetSeed_size
<<
", m_jJet_max_r = "
<<
m_jJet_max_r
);
CHECK
(
JetAlg
::
SeedFinding
(
jTs
,
jJetSeeds
,
m_jJetSeed_size
,
m_jJet_max_r
,
jJet_jet_thr
));
ATH_MSG_DEBUG
(
"JFexAlg: BuildRoundJet"
);
CHECK
(
JetAlg
::
BuildRoundJet
(
jTs
,
jJetSeeds
,
jJet_L1Jets
,
m_jJet_jet_r
,
jJet_jet_thr
));
}
ATH_MSG_DEBUG
(
"JFexAlg: BuildMET"
);
CHECK
(
METAlg
::
BuildMET
(
jTs
,
jMET
,
jT_noise
));
...
...
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