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

Annotation of /yoda/techmodel/EventTrkReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2.2 - (hide annotations) (download)
Fri Dec 17 12:46:20 2004 UTC (19 years, 11 months ago) by kusanagi
Branch: MAIN
Changes since 2.1: +3 -1 lines
*** empty log message ***

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

  ViewVC Help
Powered by ViewVC 1.1.23