Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
STrackMatcherComparatorHistContent.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file STrackMatcherComparatorHistContent.h
1 // ----------------------------------------------------------------------------
2 // 'STrackMatcherComparatorHistContent.h'
3 // Derek Anderson
4 // 02.01.2024
5 //
6 // Struct to hold histogram info for 'STrackMatcherComparator' module.
7 // ----------------------------------------------------------------------------
8 
9 #ifndef STRACKMATCHERCOMPARATORHISTCONTENT_H
10 #define STRACKMATCHERCOMPARATORHISTCONTENT_H
11 
12 // c++ utilities
13 #include <limits>
14 
15 // make common namespaces implicit
16 using namespace std;
17 
18 
19 
20 // STrackMatcherComparatorHistContent definition ----------------------------------
21 
23 
24  double nTot = numeric_limits<double>::min();
25  double nIntt = numeric_limits<double>::min();
26  double nMvtx = numeric_limits<double>::min();
27  double nTpc = numeric_limits<double>::min();
28  double rTot = numeric_limits<double>::min();
29  double rIntt = numeric_limits<double>::min();
30  double rMvtx = numeric_limits<double>::min();
31  double rTpc = numeric_limits<double>::min();
35  double ptFrac = numeric_limits<double>::min();
36  double quality = numeric_limits<double>::min();
37  double ptErr = numeric_limits<double>::min();
38  double etaErr = numeric_limits<double>::min();
39  double phiErr = numeric_limits<double>::min();
40  double ptRes = numeric_limits<double>::min();
41  double etaRes = numeric_limits<double>::min();
42  double phiRes = numeric_limits<double>::min();
43 
44 };
45 
46 #endif
47 
48 // end ------------------------------------------------------------------------
49