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

Contents of /yoda/techmodel/TrgInitReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (show annotations) (download)
Thu Aug 19 15:24:46 2004 UTC (20 years, 3 months ago) by kusanagi
Branch: MAIN
*** empty log message ***

1
2 // Implementation of the TrgInitReader class.
3
4
5 #define UINT unsigned int
6 #define BYTE unsigned char
7 #include <string>
8 #include <log4cpp/Category.hh>
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/TrgInitEvent.h"
19
20 using namespace pamela;
21 using namespace pamela::techmodel;
22
23 static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.TrgInitReader");
24
25 /**
26 * Constructor.
27 */
28 TrgInitReader::TrgInitReader(void):
29 TechmodelAlgorithm(PacketType::TrgInit, "TechmodelTrgInitReader") {
30 cat << log4cpp::Priority::DEBUG
31 << "Constructor "
32 << "\n " << log4cpp::CategoryStream::ENDLINE;
33 trgInit = new TrgInitEvent();
34 }
35
36 /**
37 * Get a string with the version info of the algorithm.
38 */
39 std::string TrgInitReader::GetVersionInfo(void) const {
40 return
41 "$Trailer: /home/cvsmanager/yoda/techmodel/TrgInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n";
42 }
43
44 /**
45 * Initialize the algorithm with a special run. This will initialize the
46 * event reader routines for all packet types.
47 */
48 void TrgInitReader::Init(PamelaRun *run) {
49 SetInputStream(run);
50 run->WriteSubPacket(this, &trgInit, trgInit->Class());
51 }
52
53 /**
54 * Unpack the TrgInit event from an input file.
55 */
56 void TrgInitReader::RunEvent(int EventNumber, long int length) {
57
58
59 }
60

  ViewVC Help
Powered by ViewVC 1.1.23