//////////////////////////////////////////////////////////////////// //////// Class with structure of the TTree for immediate //////// translation of the ACCULINNA raw data format to //////// ROOT format. This class correspond to the DAQ //////// structure. //////// ////////////////////////////////////////////////////////////////////#pragma once//#include "DllExport.h"#include <TObject.h>#define BLOCKSNUMBER 24#define ADDRESSNUMBER 16classAculRaw:publicTObject{public:Int_tmwpcReg[4];//information about MWPCx plane in the register formatInt_tC3[BLOCKSNUMBER][ADDRESSNUMBER];//information from crate C3Int_ttrigger;AculRaw();virtual~AculRaw();ClassDef(AculRaw,1);//functionsInt_tReset();//reseting of the read values};