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

Contents of /yoda/techmodel/TrgAlarmReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


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

  ViewVC Help
Powered by ViewVC 1.1.23