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

Contents of /yoda/techmodel/RunHeaderReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.2 - (show annotations) (download)
Sat Jul 17 20:03:38 2004 UTC (20 years, 4 months ago) by kusanagi
Branch: MAIN
Changes since 1.1: +16 -16 lines
*** empty log message ***

1 /** @file
2 * $Source: /home/cvsmanager/yoda/techmodel/RunHeaderReader.cpp,v $
3 * $Id: RunHeaderReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 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 <log4cpp/Category.hh>
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/RunHeaderEvent.h"
24
25 using namespace pamela;
26 using namespace pamela::techmodel;
27
28 static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.RunHeaderReader");
29
30 /**
31 * Constructor.
32 */
33 RunHeaderReader::RunHeaderReader(void):
34 TechmodelAlgorithm(PacketType::Log, "TechmodelRunHeaderReader") {
35 cat << log4cpp::Priority::DEBUG
36 << "Constructor "
37 << "\n " << log4cpp::CategoryStream::ENDLINE;
38 RunHeader = new RunHeaderEvent();
39 }
40
41 /**
42 * Get a string with the version info of the algorithm.
43 */
44 std::string RunHeaderReader::GetVersionInfo(void) const {
45 return
46 "$Header: /home/cvsmanager/yoda/techmodel/RunTrailerReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n";
47 }
48
49 /**
50 * Initialize the algorithm with a special run. This will initialize the
51 * event reader routines for all packet types.
52 */
53 void RunHeaderReader::Init(PamelaRun *run) {
54 SetInputStream(run);
55 run->WriteSubPacket(this, &RunHeader, RunHeader->Class());
56 }
57
58 /**
59 * Unpack the RunHeader event from an input file.
60 */
61 void RunHeaderReader::RunEvent(int EventNumber, long int length) {
62
63 }

  ViewVC Help
Powered by ViewVC 1.1.23