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

Annotation of /yoda/techmodel/TofInitReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3.0 - (hide annotations) (download)
Fri Mar 4 15:54:11 2005 UTC (19 years, 9 months ago) by kusanagi
Branch: MAIN
Changes since 2.1: +0 -0 lines
Error proof version.
Implemented all detectors packets plus all the main telemetries packets.
Missing all the Init and Alarm packets.
Disabled CRC control on VarDump, ArrDump, TabDump for CPU debugging needs
(the data formats seems correct even if CRC get wrong)

1 kusanagi 1.1
2     // Implementation of the TofInitReader 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/TofInitEvent.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.TofInitReader"));
24 kusanagi 1.1
25     /**
26     * Constructor.
27     */
28     TofInitReader::TofInitReader(void):
29     TechmodelAlgorithm(PacketType::TofInit, "TechmodelTofInitReader") {
30 kusanagi 1.2 logger->debug(_T("Constructor"));
31 kusanagi 1.1 tofInit = new TofInitEvent();
32     }
33    
34     /**
35     * Get a string with the version info of the algorithm.
36     */
37     std::string TofInitReader::GetVersionInfo(void) const {
38     return
39     "$Trailer: /home/cvsmanager/yoda/techmodel/TofInitReader.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 TofInitReader::Init(PamelaRun *run) {
47     SetInputStream(run);
48     run->WriteSubPacket(this, &tofInit, tofInit->Class());
49     }
50    
51     /**
52     * Unpack the TofInit event from an input file.
53     */
54 kusanagi 2.1 void TofInitReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){
55 kusanagi 1.1
56    
57     }
58    

  ViewVC Help
Powered by ViewVC 1.1.23