EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MySimpleTree.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file MySimpleTree.cc
1 #include "MySimpleTree.h"
2 #include <cmath>
3 
5 
6 using namespace std;
7 
9 {
10  Reset(); // Init all data members
11  return ;
12 }
13 
14 void MySimpleTree::Reset() // reset data members (called by phool node reset)
15 {
16  myint = -9999;
17  myfloat = NAN; // that's the way to get NaN's
18  return ;
19 }
20