Skip to content
Snippets Groups Projects
Commit ccffbdaa authored by Susumu Oda's avatar Susumu Oda Committed by Walter Lampl
Browse files

Use CachedUniquePtr in Trk::AlignTrack

parent 8302339f
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@ atlas_subdir( TrkAlignEvent )
atlas_depends_on_subdirs( PUBLIC
Control/AthenaBaseComps
Control/AthContainers
Control/CxxUtils
DetectorDescription/Identifier
Event/xAOD/xAODTracking
GaudiKernel
......@@ -32,6 +33,6 @@ atlas_add_library( TrkAlignEvent
src/*.cxx
PUBLIC_HEADERS TrkAlignEvent
INCLUDE_DIRS ${Boost_INCLUDE_DIRS}
LINK_LIBRARIES ${Boost_LIBRARIES} AthenaBaseComps AthContainers Identifier xAODTracking GaudiKernel TrkEventPrimitives TrkTrack VxVertex
LINK_LIBRARIES ${Boost_LIBRARIES} AthenaBaseComps AthContainers CxxUtils Identifier xAODTracking GaudiKernel TrkEventPrimitives TrkTrack VxVertex
PRIVATE_LINK_LIBRARIES TrkDetElementBase TrkSurfaces TrkCompetingRIOsOnTrack TrkMaterialOnTrack TrkMeasurementBase TrkParameters TrkRIO_OnTrack )
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/
#ifndef TRKALIGNEVENT_ALIGNTRACK_H
......@@ -8,7 +8,7 @@
#include "GaudiKernel/MsgStream.h"
#include "AthContainers/DataVector.h"
#include "CxxUtils/CachedUniquePtr.h"
#include "TrkAlignEvent/AlignTSOS.h"
#include "TrkTrack/Track.h"
......@@ -255,7 +255,7 @@ namespace Trk {
double * m_trackAlignParamQuality; //!> describes the quality of contribution to track to alignment parameter (used by shifting derivatives)
mutable Trk::Track * m_trackWithoutScattering; //!> the original track with ScatteringAngle pointers set to 0 (called for refit so scattering will be recalculated)
CxxUtils::CachedUniquePtr<Trk::Track> m_trackWithoutScattering; //!> the original track with ScatteringAngle pointers set to 0 (called for refit so scattering will be recalculated)
}; // end class
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/
#include "TrkTrack/Track.h"
......@@ -33,7 +33,7 @@ namespace Trk {
, m_chi2(0.)
, m_chi2dof(0.)
, m_trackAlignParamQuality(new double[6])
, m_trackWithoutScattering(0)
, m_trackWithoutScattering()
{
for (int i=0;i<6;i++) m_trackAlignParamQuality[i]=0.;
m_vtx=0;
......@@ -64,7 +64,7 @@ namespace Trk {
, m_chi2(0.)
, m_chi2dof(0.)
, m_trackAlignParamQuality(new double[6])
, m_trackWithoutScattering(0)
, m_trackWithoutScattering()
{
for (int i=0;i<6;i++) m_trackAlignParamQuality[i]=0.;
setAlignTSOSCollection(alignTSOSCollection);
......@@ -105,9 +105,12 @@ namespace Trk {
, m_chi2(atrack.m_chi2)
, m_chi2dof(atrack.m_chi2dof)
, m_trackAlignParamQuality(new double[6])
, m_trackWithoutScattering(atrack.m_trackWithoutScattering ?
new Trk::Track(*(atrack.m_trackWithoutScattering)) : 0)
, m_trackWithoutScattering()
{
if (atrack.m_trackWithoutScattering) {
m_trackWithoutScattering.set(std::make_unique<Trk::Track>(*(atrack.m_trackWithoutScattering)));
}
for (int i=0;i<6;i++)
m_trackAlignParamQuality[i] = atrack.m_trackAlignParamQuality[i];
......@@ -234,8 +237,6 @@ namespace Trk {
delete m_derivativeMatrix; m_derivativeMatrix=0;
delete [] m_trackAlignParamQuality;
delete m_trackWithoutScattering;
}
//________________________________________________________________________
......@@ -426,7 +427,7 @@ namespace Trk {
//________________________________________________________________________
const Trk::Track* AlignTrack::trackWithoutScattering() const
{
if (!m_trackWithoutScattering) {
if (not m_trackWithoutScattering) {
const DataVector<const Trk::TrackStateOnSurface>* states = this->trackStateOnSurfaces();
if (!states) return 0;
......@@ -470,11 +471,11 @@ namespace Trk {
newTrackStateOnSurfaces->push_back(newTsos);
}
m_trackWithoutScattering = new Trk::Track( this->info(), newTrackStateOnSurfaces,
this->fitQuality() ?
this->fitQuality()->clone():0 );
m_trackWithoutScattering.set(std::make_unique<Trk::Track>( this->info(), newTrackStateOnSurfaces,
this->fitQuality() ?
this->fitQuality()->clone() : nullptr ));
}
return m_trackWithoutScattering;
return m_trackWithoutScattering.get();
}
} // end namespace
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment