--- yoda/techmodel/NdInitReader.cpp 2004/09/24 11:57:49 2.1 +++ yoda/techmodel/NdInitReader.cpp 2005/08/29 09:46:13 5.0 @@ -50,8 +50,13 @@ /** * Unpack the AcInit event from an input file. */ -void NdInitReader::RunEvent(int EventNumber, long int length) { - - +void NdInitReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ +/* + rec = new NeutronRecord(); //aggiungo un nuovo NeutronRecord all'evento + rec->upperTrig = (((BYTE)data[lenght-offset])>>4); + rec->bottomTrig = (((BYTE)data[lenght-offset])&0x0F); + rec->upperBack = (((BYTE)data[lenght-offset+1])>>4); + rec->bottomBack = (((BYTE)data[lenght-offset+1])&0x0F); + */ }