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

Annotation of /yoda/techmodel/AcInitReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2.2 - (hide annotations) (download)
Thu Dec 16 17:32:57 2004 UTC (19 years, 11 months ago) by kusanagi
Branch: MAIN
CVS Tags: HEAD
Changes since 2.1: +0 -0 lines
FILE REMOVED
*** empty log message ***

1 kusanagi 1.1
2     // Implementation of the AcInitReader 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 kusanagi 1.2 #include "CRC.h"
11 kusanagi 1.1 }
12    
13     #include <fstream>
14     #include "stdio.h"
15     #include "ReaderAlgorithms.h"
16    
17    
18     using namespace pamela;
19     using namespace pamela::techmodel;
20    
21 kusanagi 1.2 static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.AcInitReader"));
22 kusanagi 1.1
23     /**
24     * Constructor.
25     */
26     AcInitReader::AcInitReader(void):
27     TechmodelAlgorithm(PacketType::AcInit, "TechmodelAcInitReader") {
28 kusanagi 1.2 logger->debug(_T("Constructor"));
29 kusanagi 1.1 acInit = new AcInitEvent();
30     }
31    
32     /**
33     * Get a string with the version info of the algorithm.
34     */
35     std::string AcInitReader::GetVersionInfo(void) const {
36     return
37     "$Trailer: /home/cvsmanager/yoda/techmodel/AcInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n";
38     }
39    
40     /**
41     * Initialize the algorithm with a special run. This will initialize the
42     * event reader routines for all packet types.
43     */
44     void AcInitReader::Init(PamelaRun *run) {
45 kusanagi 1.2 logger->debug(_T("Initialize"));
46 kusanagi 1.1 SetInputStream(run);
47     run->WriteSubPacket(this, &acInit, acInit->Class());
48     }
49    
50     /**
51     * Unpack the AcInit event from an input file.
52     */
53 kusanagi 2.1 void AcInitReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){
54 kusanagi 1.1
55    
56     }
57    

  ViewVC Help
Powered by ViewVC 1.1.23