StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StMuFcsInfo.cxx
1 /***************************************************************************
2  *
3  * $Id: StMuFcsInfo.cxx,v 1.0 2021/11/17 16:07:31 jdb Exp $
4  *
5  * Author: Daniel Brandenburg, 2021
6  ***************************************************************************
7  *
8  * Description: StMuFcsInfo is event level data for Fcs.
9  * Stores hit indices for each detector
10  *
11  ***************************************************************************/
12 
13 #include "StMuFcsInfo.h"
14 
15 ClassImp(StMuFcsInfo)
16 
18  mFcsReconstructionFlag = 0;
19  for ( unsigned int i = 0; i < kFcsNDet + 2; i++ )
20  mHitIndex[i] = 0;
21  for ( unsigned int i = 0; i < kFcsNDet + 1; i++ ){
22  mClusterIndex[i] = 0;
23  mPointIndex[i] = 0;
24  }
25 }
26 
27 StMuFcsInfo::~StMuFcsInfo(){
28 
29 }