/[PAMELA software]/yoda/techmodel/S4AlarmReader.cpp
ViewVC logotype

Contents of /yoda/techmodel/S4AlarmReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6.1 - (show annotations) (download)
Fri Sep 29 10:19:26 2006 UTC (18 years, 2 months ago) by mocchiut
Branch: MAIN
CVS Tags: YODA6_3/19, YODA6_3/18, YODA6_3/13, YODA6_3/12, YODA6_3/11, YODA6_3/17, YODA6_3/16, YODA6_3/15, YODA6_3/14, YODA6_3/20, HEAD
Changes since 6.0: +3 -2 lines
Last event bug fixed, compilation warnings/errors fixed

1 /** @file
2 * $Author: kusanagi $
3 * $Date: 2006/02/07 17:11:10 $
4 * $Revision: 6.0 $
5 *
6 * Implementation of the S4AlarmReader class.
7 */
8
9 #include "ReaderAlgorithms.h"
10
11 using namespace pamela::techmodel;
12
13 static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.S4AlarmReader"));
14
15 /**
16 * Constructor.
17 */
18 S4AlarmReader::S4AlarmReader(void):
19 TechmodelAlgorithm(PacketType::S4Alarm, "S4AlarmReader") {
20 logger->debug(_T("Constructor"));
21 s4Alarm = new S4AlarmEvent();
22 }
23
24 /**
25 * Get a string with the version info of the algorithm.
26 */
27 std::string S4AlarmReader::GetVersionInfo(void) const {
28 return
29 "$Trailer: /home/cvsmanager/yoda/techmodel/s4AlarmReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n";
30 }
31
32 /**
33 * Initialize the algorithm with a special run. This will initialize the
34 * event reader routines for all packet types.
35 */
36 void S4AlarmReader::Init(PamelaRun *run) {
37 SetInputStream(run);
38 run->WriteSubPacket(this, &s4Alarm, s4Alarm->Class());
39 logger->debug(_T("Initialize"));
40 }
41
42 /**
43 * Unpack the S4Alarm event from an input file.
44 * The CPU does not add any CRC control at the packet end.
45 * @param EventNumber
46 * @param dataLength
47 */
48 void S4AlarmReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){
49 char subData[dataLength];
50 memset(subData, 0, dataLength*sizeof(char));
51 InputFile->read(subData, sizeof(subData));
52 s4Alarm->s4AlarmData = new TArrayC(dataLength, subData);
53 }
54

  ViewVC Help
Powered by ViewVC 1.1.23