/[PAMELA software]/chewbacca/PamOffLineSW/techmodel/S4InitReader.cpp
ViewVC logotype

Contents of /chewbacca/PamOffLineSW/techmodel/S4InitReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1.1.1 - (show annotations) (download) (vendor branch)
Tue Sep 23 07:20:25 2008 UTC (16 years, 2 months ago) by mocchiut
Branch: v0r00
CVS Tags: v1r02, v1r00, v1r01, start
Changes since 1.1: +0 -0 lines
Error occurred while calculating annotation data.
Imported sources, 23/09/2008

1
2 // Implementation of the S4InitReader class.
3
4 #include "ReaderAlgorithms.h"
5 using namespace pamela::techmodel;
6
7
8 /**
9 * Constructor.
10 */
11 S4InitReader::S4InitReader(void):
12 TechmodelAlgorithm(PacketType::S4Init, "S4InitReader") {
13 s4Init = new S4InitEvent;
14 }
15
16 /**
17 * Get a string with the version info of the algorithm.
18 */
19 std::string S4InitReader::GetVersionInfo(void) const {
20 return
21 "$Trailer: /home/cvsmanager/yoda/techmodel/S4InitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n";
22 }
23
24 /**
25 * Initialize the algorithm with a special run. This will initialize the
26 * event reader routines for all packet types.
27 */
28 void S4InitReader::Init(PamelaRun *run) {
29 run->WriteSubPacket(this, &s4Init, s4Init->Class());
30 }
31
32 /**
33 * Unpack the S4Init event
34 */
35 void S4InitReader::PKT_RunEvent(char* subData, long int dataLength) throw (WrongCRCException){
36 s4Init->s4InitData = new TArrayC(dataLength, subData);
37 }

  ViewVC Help
Powered by ViewVC 1.1.23