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

Contents of /yoda/techmodel/CalibHeaderReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4.4 - (show annotations) (download)
Sat May 28 10:44:11 2005 UTC (19 years, 6 months ago) by kusanagi
Branch: MAIN
Changes since 4.0: +1 -1 lines
Main features of this release are:
- updated classes documentations;
- major changes on the calibration fortran routine for the calorimeter
- update on the TMTC thermistors
- removed old classes as CalibTrkBoth and CalibTrd

1
2 // Implementation of the CalibHeaderReader 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/CalibHeaderEvent.h"
19
20 using namespace pamela;
21 using namespace pamela::techmodel;
22
23 static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibHeaderReader"));
24
25 /**
26 * Constructor.
27 */
28 CalibHeaderReader::CalibHeaderReader(void):
29 TechmodelAlgorithm(PacketType::CalibHeader, "TechmodelCalibHeaderReader") {
30 logger->debug(_T("Constructor"));
31 calibHeader = new CalibHeaderEvent();
32 }
33
34 /**
35 * Get a string with the version info of the algorithm.
36 */
37 std::string CalibHeaderReader::GetVersionInfo(void) const {
38 return
39 "$Header: /home/cvsmanager/yoda/techmodel/CalibHeaderReader.cpp,v 4.0 2005/03/06 04:33:02 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 CalibHeaderReader::Init(PamelaRun *run) {
47 logger->debug(_T("Initialize"));
48 SetInputStream(run);
49 run->WriteSubPacket(this, &calibHeader, calibHeader->Class());
50 }
51
52 /**
53 * Unpack the CalibHeader event from an input file.
54 */
55 void CalibHeaderReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){
56
57
58 }
59

  ViewVC Help
Powered by ViewVC 1.1.23