Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:15:45

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   
0015   nMaxLayer   = s->nMaxLayer;
0016   nMaxRow     = s->nMaxRow;
0017   nMaxColumn  = s->nMaxColumn;
0018   nMaxModule  = s->nMaxModule;
0019   nMaxROUnit  = s->nMaxROUnit;
0020   maxCellID   = s->maxCellID;
0021 
0022 }
0023