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

Annotation of /yoda/techmodel/InitHeaderReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4.0 - (hide annotations) (download)
Sun Mar 6 04:33:02 2005 UTC (19 years, 8 months ago) by kusanagi
Branch: MAIN
CVS Tags: yodaPreTermistors2_1/00, YODA4_1/00, YODA4_0/04, YODA4_0/03, YODA4_0/02, YODA4_0/01, YODA4_3/02, YODA4_3/00, YODA4_3/01, YODA4_2/01, YODA4_2/00, YODA4_2/03, yodaPreTermistores2_0/00
Branch point for: PreThermistores2
Changes since 3.0: +1 -1 lines
Stable version 4.0 - 6 March 2005 - Maurizio Nagni

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 kusanagi 1.2 #include <log4cxx/logger.h>
9 kusanagi 1.1 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 kusanagi 1.2 static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.InitHeaderReader"));
24 kusanagi 1.1
25     /**
26     * Constructor.
27     */
28     InitHeaderReader::InitHeaderReader(void):
29     TechmodelAlgorithm(PacketType::InitHeader, "TechmodelInitHeaderReader") {
30 kusanagi 1.2 logger->debug(_T("Constructor"));
31 kusanagi 1.1 initHeader = new InitHeaderEvent();
32     }
33    
34     /**
35     * Get a string with the version info of the algorithm.
36     */
37     std::string InitHeaderReader::GetVersionInfo(void) const {
38     return
39 kusanagi 4.0 "$Header: /home/cvsmanager/yoda/techmodel/InitHeaderReader.cpp,v 3.0 2005/03/04 15:54:11 kusanagi Exp $\n";
40 kusanagi 1.1 }
41    
42     /**
43     * Initialize the algorithm with a special run. This will initialize the
44     * event reader routines for all packet types.
45     */
46     void InitHeaderReader::Init(PamelaRun *run) {
47 kusanagi 1.2 logger->debug(_T("Initialize"));
48 kusanagi 1.1 SetInputStream(run);
49     run->WriteSubPacket(this, &initHeader, initHeader->Class());
50     }
51    
52     /**
53     * Unpack the InitHeader event from an input file.
54     */
55 kusanagi 2.1 void InitHeaderReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){
56 kusanagi 1.1
57    
58 kusanagi 1.2
59 kusanagi 1.1 }
60    

  ViewVC Help
Powered by ViewVC 1.1.23