/[PAMELA software]/yoda/event/PscuHeader.h
ViewVC logotype

Contents of /yoda/event/PscuHeader.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2.1 - (show annotations) (download)
Fri Dec 3 22:04:04 2004 UTC (20 years ago) by kusanagi
Branch: MAIN
Changes since 2.0: +22 -10 lines
File MIME type: text/plain
Minor changes in several packets structure

1 /** @file
2 * $Source: /home/cvsmanager/yoda/event/PscuHeader.h,v $
3 * $Id: PscuHeader.h,v 2.0 2004/09/21 20:49:57 kusanagi Exp $
4 * $Author: kusanagi $
5 *
6 * Header file for the PscuHeader class.
7 */
8 #ifndef PSCU_HEADER_H
9 #define PSCU_HEADER_H
10
11 #include "Exception.h"
12 #include "SubPacket.h"
13
14 namespace pamela {
15 /**
16 * Class containing the PSCU header and trailer information.
17 */
18 class PscuHeader: public pamela::SubPacket {
19 private:
20
21 public:
22 unsigned int Header; /**< Packet type header (must be 0xFAFEDE) */
23 UINT8 PacketId1; /**< Packet type first byte */
24 UINT8 PacketId2; /**< Packet type second byte */
25 UINT32 Counter; /**< PSCU event counter */
26 UINT32 OrbitalTime; /**< Raw Orbital time */
27 UINT32 PacketLenght;
28 UINT8 CRC; /**< PSCU Header Checksum */ //!
29
30 /* This parameter represent the offset of the header relative to the begin
31 * of the file it has been extracted. It's purpose is to
32 * check whenever the CPU (for error) store the same packet more than one time.
33 * It's not clear if it will be mantained or not in the definitive release.
34 */
35 UINT32 FileOffset;
36
37 PscuHeader();
38 virtual ~PscuHeader();
39 const pamela::PacketType* GetPacketType(void) const throw(UnidentifiedPacketException);
40 /** Get the Header. */
41 int GetHeader(void) const { return Header; }
42 /** Get packet id 1. */
43 unsigned char GetPacketId1(void) const { return PacketId1; }
44 /** Get packet id 2. */
45 unsigned char GetPacketId2(void) const { return PacketId2; }
46 /** Get the PSCU event counter. */
47 int GetCounter(void) const { return Counter; }
48 /** Get the orbital time. */
49 int GetOrbitalTime(void) const { return OrbitalTime; }
50 /** Get the header CRC. */
51 unsigned char GetCRC(void) const { return CRC; }
52 /** Get the packet length for this packet. */
53 int GetPacketLenght(void) const { return PacketLenght; }
54 /** Get the offset of the packet relative to the begin of the raw file. */
55 int GetFileOffset(void) const { return FileOffset; }
56
57 /** Set the orbital time. Intended to use by the raw reader. */
58 void SetHeader(int var) { Header = var; }
59 /** Set the packet id. Intended to use by the raw reader. */
60 void SetPacketId(short var1, short var2) { PacketId1 = var1; PacketId2 = var2; }
61 /** Set the counter. Intended to use by the raw reader. */
62 void SetCounter(int var) { Counter = var; }
63 /** Set the orbital time. Intended to use by the raw reader. */
64 void SetOrbitalTime(int var) { OrbitalTime = var; }
65 /** Set the packet length. Intended to use by the raw reader. */
66 void SetPacketLenght(int var) { PacketLenght = var; }
67 /** Set the packet length. Intended to use by the raw reader. */
68 void SetCRC(short var) { CRC = var; }
69 /** Get the offset of the packet relative to the begin of the raw file. */
70 int SetFileOffset(int var) { FileOffset = var; }
71
72 const char* Print(){
73 oss.str("");
74 oss << "\n Packet Counter : " << hex << Counter
75 << "\n Id1 - Id2 : " << hex << (UINT16)PacketId1 << " - " << hex << (UINT16)PacketId2
76 << "\n Orbital Time : " << hex << OrbitalTime
77 << "\n Lenght : " << hex << PacketLenght
78 << "\n CRC : " << hex << (UINT16)CRC
79 << "\n Header Start Position : " << hex << FileOffset;
80 return oss.str().c_str();
81 }
82
83 ClassDef(PscuHeader, 1)
84
85
86
87 };
88 }
89
90 #endif /* PSCU_HEADER_H */

  ViewVC Help
Powered by ViewVC 1.1.23