Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
BbcVertexv2.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file BbcVertexv2.cc
1 #include "BbcVertexv2.h"
2 
3 #include <cmath>
4 
5 using namespace std;
6 
8  : _id(0xFFFFFFFF)
9  , _t(NAN)
10  , _t_err(NAN)
11  , _z(NAN)
12  , _z_err(NAN)
13 {
14  for (int i = 0; i < 2; i++)
15  {
16  _bbc_ns_npmt[i] = 0;
17  _bbc_ns_q[i] = NAN;
18  _bbc_ns_t[i] = NAN;
19  }
20 }
21 
22 BbcVertexv2::~BbcVertexv2() = default;
23 
24 void BbcVertexv2::identify(ostream& os) const
25 {
26  os << "---BbcVertexv2--------------------------------" << endl;
27  os << "vertexid: " << get_id() << endl;
28  os << " t = " << get_t() << " +/- " << get_t_err() << endl;
29  os << " z = " << get_z() << " +/- " << get_z_err() << endl;
30  os << "-----------------------------------------------" << endl;
31 
32  return;
33 }
34 
36 {
37  if (_id == 0xFFFFFFFF)
38  {
39  return 0;
40  }
41  if (isnan(_t))
42  {
43  return 0;
44  }
45  if (isnan(_t_err))
46  {
47  return 0;
48  }
49  if (isnan(_z))
50  {
51  return 0;
52  }
53  if (isnan(_z_err))
54  {
55  return 0;
56  }
57 
58  return 1;
59 }