Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RoiDescriptor.cpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file RoiDescriptor.cpp
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2021 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 // TODO: update to C++17 style
11 
12 #include <cmath>
13 #include <sstream>
14 
15 namespace Acts {
16 
17 Acts::RoiDescriptor::RoiDescriptor(double eta, double etaMinus, double etaPlus,
18  double phi, double phiMinus, double phiPlus,
19  double zed, double zedMinus, double zedPlus)
20  : m_phi(phi),
21  m_eta(eta),
22  m_zed(zed),
23  m_phiMinus(phiMinus),
24  m_phiPlus(phiPlus),
25  m_etaMinus(etaMinus),
26  m_etaPlus(etaPlus),
27  m_zedMinus(zedMinus),
28  m_zedPlus(zedPlus) {}
29 
31 
32 } // namespace Acts