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

Contents of /yoda/techmodel/RunTrailerReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2.0 - (show annotations) (download)
Tue Sep 21 20:50:54 2004 UTC (20 years, 2 months ago) by kusanagi
Branch: MAIN
Changes since 1.3: +2 -2 lines
Major release

1 /** @file
2 * $Source: /home/cvsmanager/yoda/techmodel/RunTrailerReader.cpp,v $
3 * $Id: RunTrailerReader.cpp,v 1.3 2004/09/21 20:24:33 kusanagi Exp $
4 * $Author: kusanagi $
5 *
6 * Implementation of the RunHeader class.
7 */
8
9
10 #define UINT unsigned int
11 #define BYTE unsigned char
12 #include <string>
13 #include <log4cxx/logger.h>
14 extern "C" {
15 #include <sys/time.h>
16 #include "CRC.h"
17 }
18
19 #include <fstream>
20 #include "stdio.h"
21 #include "ReaderAlgorithms.h"
22
23 #include "event/RunTrailerEvent.h"
24
25 using namespace pamela;
26 using namespace pamela::techmodel;
27
28 static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.RunTrailerReader"));
29
30 /**
31 * Constructor.
32 */
33 RunTrailerReader::RunTrailerReader(void):
34 TechmodelAlgorithm(PacketType::Log, "TechmodelRunTrailerReader") {
35 logger->debug(_T("Constructor"));
36 RunTrailer = new RunTrailerEvent();
37 }
38
39 /**
40 * Get a string with the version info of the algorithm.
41 */
42 std::string RunTrailerReader::GetVersionInfo(void) const {
43 return
44 "$Header: /home/cvsmanager/yoda/techmodel/RunTrailerReader.cpp,v 1.3 2004/09/21 20:24:33 kusanagi Exp $\n";
45 }
46
47 /**
48 * Initialize the algorithm with a special run. This will initialize the
49 * event reader routines for all packet types.
50 */
51 void RunTrailerReader::Init(PamelaRun *run) {
52 SetInputStream(run);
53 run->WriteSubPacket(this, &RunTrailer, RunTrailer->Class());
54 logger->debug(_T("Initialize"));
55 }
56
57 /**
58 * Unpack the RunTrailer event from an input file.
59 */
60 void RunTrailerReader::RunEvent(int EventNumber, long int length) {
61
62 }
63

  ViewVC Help
Powered by ViewVC 1.1.23