File indexing completed on 2025-10-31 08:21:02
0001 #include "RootSetupWrapper.h"
0002 #include "Setup.h"
0003 
0004 ClassImp(RootSetupWrapper);
0005 
0006 
0007 RootSetupWrapper::RootSetupWrapper(Setup* s){
0008   isInit      =s->isInit;
0009   assemblyID  =s->assemblyID;
0010   ROunit      =s->ROunit;
0011   ROchannel   =s->ROchannel;
0012   Board       =s->Board;
0013   CellIDfromRO=s->CellIDfromRO;
0014   ModPos      =s->ModPos;
0015   
0016   nMaxLayer   = s->nMaxLayer;
0017   nMaxRow     = s->nMaxRow;
0018   nMaxColumn  = s->nMaxColumn;
0019   nMaxModule  = s->nMaxModule;
0020   nMaxROUnit  = s->nMaxROUnit;
0021   maxCellID   = s->maxCellID;
0022 
0023 }
0024