EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AccumulatedMaterialSlab.hpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file AccumulatedMaterialSlab.hpp
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2018-2020 CERN for the benefit of the Acts project
4 //
5 // This Source Code Form is subject to the terms of the Mozilla Public
6 // License, v. 2.0. If a copy of the MPL was not distributed with this
7 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 
9 #pragma once
10 
12 
13 namespace Acts {
14 
30  public:
31  // this class does not have a custom default constructor and thus should not
32  // provide any custom default cstors, dstor, or assignment. see ISOCPP C.20.
33 
47  void accumulate(MaterialSlab slabAlongTrack, float pathCorrection = 1);
48 
61  void trackAverage(bool useEmptyTrack = false);
62 
71  std::pair<MaterialSlab, unsigned int> totalAverage() const;
72 
73  private:
78  // Number of tracks contributing to the total average.
79  unsigned int m_totalCount = 0u;
80 };
81 
82 } // namespace Acts