Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:18:03

0001 #include "TrainingHits.h"
0002 
0003 TrainingHits::TrainingHits()
0004 {
0005   v_adc.fill(0);
0006   radius = 0.;
0007   phi = 0.;
0008   z = 0.;
0009   phistep = 0.;
0010   zstep = 0.;
0011   layer = 0;
0012   ntouch = 0;
0013   nedge = 0;
0014   cluskey = 0;
0015 }
0016 
0017 void TrainingHits::Reset()
0018 {
0019   v_adc.fill(0);
0020   radius = 0.;
0021   phi = 0.;
0022   z = 0.;
0023   phistep = 0.;
0024   zstep = 0.;
0025   layer = 0;
0026   ntouch = 0;
0027   nedge = 0;
0028   cluskey = 0;
0029 }