AculRaw.h 859 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
////////////////////////////////////////////////////////////////
////														////
////	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 16


class AculRaw : public TObject
{
public:

	Int_t	mwpcReg[4];							//information about MWPCx plane in the register format
	Int_t	C3[BLOCKSNUMBER][ADDRESSNUMBER];	//information from crate C3
	Int_t	trigger;

	AculRaw();
	virtual ~AculRaw();
	ClassDef(AculRaw, 1);

	//functions
	Int_t	Reset();		//reseting of the read values

};