EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
BinningType.hpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file BinningType.hpp
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2016-2018 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 
10 // BinningType.h, Acts project
12 
13 #pragma once
14 #include <string>
15 #include <vector>
16 
17 namespace Acts {
18 
34 
37 
39 enum BinningValue : int {
40  binX = 0,
41  binY = 1,
42  binZ = 2,
43  binR = 3,
44  binPhi = 4,
45  binRPhi = 5,
46  binH = 6,
47  binEta = 7,
48  binMag = 8,
50 };
51 
53 static const std::vector<std::string> binningValueNames = {
54  "binX", "binY", "binZ", "binR", "binPhi",
55  "binRPhi", "binH", "binEta", "binMag"};
56 } // namespace Acts