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

Contents of /yoda/techmodel/CalibTrailerReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 5.0 - (show annotations) (download)
Mon Aug 29 09:46:13 2005 UTC (19 years, 3 months ago) by kusanagi
Branch: MAIN
CVS Tags: YODA5_0/00, YODA5_0/01, YODA5_0/02
Changes since 4.4: +0 -0 lines
Starting form this version:
1) includes are defined with relative (not absolute) path respect to the YODA aplication
2) RegistryEvent class is foreseen to contain post-unpack data.

1
2 // Implementation of the CalibTrailerReader class.
3
4
5 #define UINT unsigned int
6 #define BYTE unsigned char
7 #include <string>
8 #include <log4cxx/logger.h>
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/CalibTrailerEvent.h"
19
20 using namespace pamela;
21 using namespace pamela::techmodel;
22
23 static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibTrk1Reader"));
24
25 /**
26 * Constructor.
27 */
28 CalibTrailerReader::CalibTrailerReader(void):
29 TechmodelAlgorithm(PacketType::CalibTrailer, "TechmodelCalibTrailerReader") {
30 logger->debug(_T("Constructor"));
31 calibTrailer = new CalibTrailerEvent();
32 }
33
34 /**
35 * Get a string with the version info of the algorithm.
36 */
37 std::string CalibTrailerReader::GetVersionInfo(void) const {
38 return
39 "$Trailer: /home/cvsmanager/yoda/techmodel/CalibTrailerReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n";
40 }
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 CalibTrailerReader::Init(PamelaRun *run) {
47 logger->debug(_T("Initialize"));
48 SetInputStream(run);
49 run->WriteSubPacket(this, &calibTrailer, calibTrailer->Class());
50 }
51
52 /**
53 * Unpack the CalibTrailer event from an input file.
54 */
55 void CalibTrailerReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){
56
57
58 }
59

  ViewVC Help
Powered by ViewVC 1.1.23