ATLAS Offline Software
Loading...
Searching...
No Matches
ProtoTrack.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef ACTSTRACK_ACTSPROTOTRACK__H
6#define ACTSTRACK_ACTSPROTOTRACK__H
7
10
13namespace ActsTrk{
14 struct ProtoTrack{
16 std::vector<const xAOD::UncalibratedMeasurement*> measurements = {};
18 std::unique_ptr<Acts::BoundTrackParameters> parameters = nullptr;
19 };
20};
21
22
23
24#endif //ACTSTRACK_ACTSPROTOTRACK__H
The AlignStoreProviderAlg loads the rigid alignment corrections and pipes them through the readout ge...
std::unique_ptr< Acts::BoundTrackParameters > parameters
estimate of initial track parameters for this pattern
Definition ProtoTrack.h:18
std::vector< const xAOD::UncalibratedMeasurement * > measurements
set of measurements assigned to the same pattern
Definition ProtoTrack.h:16