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

Annotation of /yoda/techmodel/RunHeaderReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


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

  ViewVC Help
Powered by ViewVC 1.1.23