Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TowerInfov2.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file TowerInfov2.cc
1 #include "TowerInfo.h"
2 #include "TowerInfov2.h"
3 
5 {
7  _chi2 = 0;
8  _pedestal = 0;
9  _status = 0;
10 }
11 
12 void TowerInfov2::Clear(Option_t* )
13 {
15  _chi2 = 0;
16  _pedestal = 0;
17  _status = 0;
18 }
19 
21 {
24  set_energy(tower->get_energy());
25  set_chi2(tower->get_chi2());
26  set_pedestal(tower->get_pedestal());
27  set_status(tower->get_status());
28  return;
29 }