/[PAMELA software]/yoda/techmodel/EventReader.h
ViewVC logotype

Contents of /yoda/techmodel/EventReader.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2.0 - (show annotations) (download)
Tue Sep 21 20:50:54 2004 UTC (20 years, 2 months ago) by kusanagi
Branch: MAIN
Changes since 1.3: +2 -2 lines
File MIME type: text/plain
Major release

1 /** @file
2 * $Author: kusanagi $
3 * $Date: 2004/09/21 20:24:33 $
4 * $Revision: 1.3 $
5 *
6 * Header file for the algorithms used to read the techmodel data file.
7 */
8
9 #include "TechmodelPamelaRun.h"
10 #include "TechmodelAlgorithm.h"
11
12 namespace pamela {
13 namespace techmodel {
14 /**
15 * Main event reader algorithm. It handles all other specific
16 * reader algorithms.
17 */
18 class EventReader: public TechmodelAlgorithm {
19 private:
20 /**
21 * A map with an algorithm to read the techmodel file with the packet
22 * type as key.
23 */
24 typedef std::map<const PacketType *, TechmodelAlgorithm *> AlgorithmMap;
25 /**
26 * The map that links every packet type to an algorithm that reads it.
27 */
28 AlgorithmMap TechmodelAlgorithmMap; //!
29 /**
30 * The event header.
31 */
32 EventHeader* Header; //!
33 /**
34 * The Run that is processed.
35 */
36 TechmodelPamelaRun *Run; //!
37 int UnpackPscuHeader(void) throw (std::exception);
38 void UnpackPscuTrailer(void) throw (std::exception);
39
40 /**
41 maxPackets define the maximum number of packets
42 the user wants to get from the raw file.
43 By default is initialized to -1 (no limit)
44 */
45 static unsigned int maxPackets;
46
47 /**
48 prevPckCounter and prevPckOBT are used to check the
49 integrity of the raw file stream
50 */
51 static unsigned int prevPckCounter;
52 static unsigned int prevPckOBT;
53 public:
54 //EventReader(void);
55 EventReader(int);
56 virtual void Init(PamelaRun *);
57 virtual void RunEvent(int);
58 virtual std::string GetVersionInfo(void) const;
59 virtual int FindStart(void) throw (std::exception);
60 ClassDef(EventReader, 1)
61 };
62 }
63 }

  ViewVC Help
Powered by ViewVC 1.1.23