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
!76685
MuonR4- Delete minimer minimizer for the segment fit
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
MuonR4- Delete minimer minimizer for the segment fit
jojungge/athena:TschuuusMinuitMinimizer
into
main
Overview
6
Commits
2
Pipelines
0
Changes
5
All threads resolved!
Hide all comments
Merged
Johannes Junggeburth
requested to merge
jojungge/athena:TschuuusMinuitMinimizer
into
main
3 months ago
Overview
6
Commits
2
Pipelines
0
Changes
5
All threads resolved!
Hide all comments
Expand
Tagging:
@syan
,
@goblirsc
0
0
Merge request reports
Compare
main
version 1
3e1eac7b
3 months ago
main (base)
and
latest version
latest version
d18e7055
2 commits,
3 months ago
version 1
3e1eac7b
1 commit,
3 months ago
5 files
+
7
−
291
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
MuonSpectrometer/MuonPhaseII/MuonPatternRecognition/MuonPatternHelpers/MuonPatternHelpers/CalibSegmentChi2Minimizer.h deleted
100644 → 0
+
0
−
80
Options
/*
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
*/
#ifndef MUONR4__MUONPATTERNHELPERS_CALIBSEGMENTCHI2MINIMZER_H
#define MUONR4__MUONPATTERNHELPERS_CALIBSEGMENTCHI2MINIMZER_H
#include
"GeoPrimitives/GeoPrimitives.h"
///
#include
"Acts/Seeding/HoughTransformUtils.hpp"
#include
"xAODMeasurementBase/UncalibratedMeasurement.h"
#include
"xAODMuonPrepData/MdtDriftCircleContainer.h"
#include
"xAODMuonPrepData/RpcStripContainer.h"
#include
"MuonPatternEvent/MuonHoughDefs.h"
#include
"AthenaBaseComps/AthMessaging.h"
#include
"MuonSpacePoint/CalibratedSpacePoint.h"
#include
<Math/Minimizer.h>
namespace
MuonR4
{
class
ISpacePointCalibrator
;
class
CalibSegmentChi2Minimizer
:
public
ROOT
::
Math
::
IMultiGenFunction
,
AthMessaging
{
public:
using
HitType
=
std
::
unique_ptr
<
CalibratedSpacePoint
>
;
using
HitVec
=
std
::
vector
<
HitType
>
;
/** Constructor taking the input hits to fit */
CalibSegmentChi2Minimizer
(
const
std
::
string
&
name
,
const
EventContext
&
ctx
,
const
Amg
::
Transform3D
&
locToGlobTrf
,
HitVec
&&
hits
,
const
ISpacePointCalibrator
*
calibrator
,
bool
doT0Fit
);
/** @brief Evaluate the chi2 for the given set of parameters */
double
DoEval
(
const
double
*
pars
)
const
override
final
;
/** @brief Clone of the object */
CalibSegmentChi2Minimizer
*
Clone
()
const
override
final
;
/** @brief Degrees of freedom */
unsigned
int
NDim
()
const
override
final
;
/** @brief Are phi measurements in the collection */
bool
hasPhiMeas
()
const
;
/** @brief Does the fit include the time */
bool
doTimeFit
()
const
;
/** @brief Returns the degrees of freedom from the measurements & beamspot constraint */
int
nDoF
()
const
;
/** @brief Returns the used measurements */
const
HitVec
&
measurements
()
const
;
/** @brief Returns the contribution of each measurement to the chi2 */
std
::
vector
<
double
>
chi2Terms
(
const
double
*
pars
)
const
;
/** @brief Releases all measurements */
HitVec
release
(
const
double
*
pars
);
/** @brief Returns the local to global transformation */
const
Amg
::
Transform3D
&
localToGlobTrans
()
const
;
private:
std
::
string
m_name
{};
const
EventContext
&
m_ctx
;
Amg
::
Transform3D
m_locToGlob
{
Amg
::
Transform3D
::
Identity
()};
mutable
HitVec
m_hits
ATLAS_THREAD_SAFE
{};
const
ISpacePointCalibrator
*
m_calibrator
{};
bool
m_doT0Fit
{
false
};
double
segmentChi2TermStrip
(
const
CalibratedSpacePoint
&
hit
,
const
Amg
::
Vector3D
&
chamberIsect
,
const
Amg
::
Vector3D
&
segmentDir
)
const
;
double
segmentChi2TermMdt
(
const
CalibratedSpacePoint
&
hit
,
const
Amg
::
Vector3D
&
chamberIsect
,
const
Amg
::
Vector3D
&
segmentDir
)
const
;
bool
m_hasPhi
{
false
};
unsigned
int
m_nMeas
{
0
};
};
}
#endif // MUONR4__MuonSegmentFitHelperFunctions__H
Loading