Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TowerInfov3.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file TowerInfov3.cc
1 #include "TowerInfo.h"
2 #include "TowerInfov3.h"
3 
4 
6 {
8  for (int i = 0; i < nsample; ++i)
9  {
10  _waveform[i] = 0;
11  }
12 }
13 
14 void TowerInfov3::Clear(Option_t *)
15 {
17  for (int i = 0; i < nsample; ++i)
18  {
19  _waveform[i] = 0;
20  }
21 }
22 
24 {
25  if (index >= 0 && index < nsample)
26  {
27  return _waveform[index];
28  }
29  return 0;
30 }
31 
33 {
34  if (index >= 0 && index < nsample)
35  {
37  }
38  return;
39 }
40 
42 {
44  for (int i = 0; i < nsample; ++i)
45  {
47  }
48  return;
49 }