Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cbmroot
Manage
Activity
Members
Labels
Plan
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Computing
cbmroot
Commits
b0447e26
Commit
b0447e26
authored
3 years ago
by
Sergei Zharko
Browse files
Options
Downloads
Patches
Plain Diff
L1Algo init: updates
parent
5eae4340
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!738
L1 Algo: initialization interface, parameters and refactoring updates
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
reco/L1/L1Algo/L1Algo.cxx
+2
-0
2 additions, 0 deletions
reco/L1/L1Algo/L1Algo.cxx
reco/L1/L1Algo/L1InitManager.h
+4
-0
4 additions, 0 deletions
reco/L1/L1Algo/L1InitManager.h
reco/L1/L1Algo/L1Parameters.h
+5
-4
5 additions, 4 deletions
reco/L1/L1Algo/L1Parameters.h
with
11 additions
and
4 deletions
reco/L1/L1Algo/L1Algo.cxx
+
2
−
0
View file @
b0447e26
...
...
@@ -245,6 +245,8 @@ void L1Algo::Init(const L1Vector<fscal>& geo, const bool UseHitErrors, const Tra
// Fill L1Station array
fInitManager
.
TransferL1StationArray
(
fStationsNew
);
// Fill L1CAIteration array
fInitManager
.
Tra
LOG
(
debug
)
<<
"**********************************************************************"
;
LOG
(
debug
)
<<
"* New L1Algo initialization cross check (tmp log, to be removed!) *"
;
...
...
This diff is collapsed.
Click to expand it.
reco/L1/L1Algo/L1InitManager.h
+
4
−
0
View file @
b0447e26
...
...
@@ -201,6 +201,10 @@ private:
L1Vector
<
L1CAIteration
>
fCAIterationsContainer
{};
///> Container for CA track finder iterations
int
fCAIterationsNumberCrosscheck
{
-
1
};
///> Number of iterations to be passed (must be used for cross-checks)
/* Pointer to L1Parameters object */
/// Pointer to L1Parameters object, which will be copied to L1Algo after checks
L1Parameters
*
fParametersPtr
{
nullptr
};
};
#endif
This diff is collapsed.
Click to expand it.
reco/L1/L1Algo/L1Parameters.h
+
5
−
4
View file @
b0447e26
...
...
@@ -75,8 +75,6 @@ public:
void
SetMaxDoubletsPerSinglet
(
unsigned
int
value
)
{
fMaxDoubletsPerSinglet
=
value
;
}
/// Sets upper-bound cut on max number of triplets per one doublet
void
SetMaxTripletPerDoublets
(
unsigned
int
value
)
{
fMaxTripletPerDoublets
=
value
;
}
/// Sets the vector of track finder iterations
void
SetCAIterations
(
const
L1Vector
<
L1CAIteration
>&
input
)
{
fCAIterationsContainer
=
input
;
}
//
// GETTERS
...
...
@@ -85,8 +83,11 @@ public:
unsigned
int
GetMaxDoubletsPerSinglet
()
const
{
return
fMaxDoubletsPerSinglet
;
}
/// Gets upper-bound cut on max number of triplets per one doublet
unsigned
int
GetMaxTripletPerDoublets
()
const
{
return
fMaxTripletPerDoublets
;
}
/// Gets track finder iteration vector
const
L1Vector
<
L1CAIteration
>&
GetCAIterations
()
const
{
return
fCAIterationsContainer
;
}
/// Provides access to L1CAIteration vector (modifiable)
L1Vector
<
L1CAIteration
>&
CAIterationsContainer
()
{
return
fCAIterationsContainer
;
}
/// Provides access to L1CAIteration vector (const)
const
L1Vector
<
L1CAIteration
>&
CAIterationsContainer
()
const
{
return
fCAIterationsContainer
;
}
private
:
...
...
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