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

Annotation of /yoda/techmodel/InitHeaderReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations) (download)
Thu Aug 19 15:24:46 2004 UTC (20 years, 3 months ago) by kusanagi
Branch: MAIN
*** empty log message ***

1 kusanagi 1.1
2     // Implementation of the InitHeaderReader class.
3    
4    
5     #define UINT unsigned int
6     #define BYTE unsigned char
7     #include <string>
8     #include <log4cpp/Category.hh>
9     extern "C" {
10     #include <sys/time.h>
11     #include "CRC.h"
12     }
13    
14     #include <fstream>
15     #include "stdio.h"
16     #include "ReaderAlgorithms.h"
17    
18     #include "event/InitHeaderEvent.h"
19    
20     using namespace pamela;
21     using namespace pamela::techmodel;
22    
23     static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.InitHeaderReader");
24    
25     /**
26     * Constructor.
27     */
28     InitHeaderReader::InitHeaderReader(void):
29     TechmodelAlgorithm(PacketType::InitHeader, "TechmodelInitHeaderReader") {
30     cat << log4cpp::Priority::DEBUG
31     << "Constructor "
32     << "\n " << log4cpp::CategoryStream::ENDLINE;
33     initHeader = new InitHeaderEvent();
34     }
35    
36     /**
37     * Get a string with the version info of the algorithm.
38     */
39     std::string InitHeaderReader::GetVersionInfo(void) const {
40     return
41     "$Header: /home/cvsmanager/yoda/techmodel/InitHeaderReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n";
42     }
43    
44     /**
45     * Initialize the algorithm with a special run. This will initialize the
46     * event reader routines for all packet types.
47     */
48     void InitHeaderReader::Init(PamelaRun *run) {
49     SetInputStream(run);
50     run->WriteSubPacket(this, &initHeader, initHeader->Class());
51     }
52    
53     /**
54     * Unpack the InitHeader event from an input file.
55     */
56     void InitHeaderReader::RunEvent(int EventNumber, long int length) {
57    
58    
59     }
60    

  ViewVC Help
Powered by ViewVC 1.1.23