Analysis Software
Documentation for sPHENIX simulation 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 
3 #include <cmath>
4 
6 {
7  Reset(); // Init all data members
8  return ;
9 }
10 
11 void MySimpleTree::Reset() // reset data members (called by phool node reset)
12 {
13  myint = -9999;
14  myfloat = NAN; // that's the way to get NaN's
15  return ;
16 }
17