/[PAMELA software]/yoda/event/SubPacket.cpp
ViewVC logotype

Annotation of /yoda/event/SubPacket.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.0: +1 -1 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 /** @file
2 kusanagi 1.2 * $Author: kusanagi $
3 kusanagi 3.0 * $Date: 2004/09/21 20:49:57 $
4 kusanagi 1.1 * $Version: 1.1 $
5     *
6     * Header file for the SubPacket class.
7     */
8    
9 kusanagi 1.2 #include <log4cxx/logger.h>
10 kusanagi 1.1
11     #include "SubPacket.h"
12    
13 kusanagi 1.2 static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.EventCounter"));
14 kusanagi 1.1
15     using namespace pamela;
16    
17     /**
18     * Constructor for the SubPacket.
19     * @param name Name of the SubPacket.
20     * @param type Packet type.
21     * @param detector SubDetector, if the SubPacket is detector specific.
22     */
23     SubPacket::SubPacket(std::string name, const PacketType* type,
24     const SubDetector* detector):
25     SubPacketName(name), Type(type), Detector(detector) {
26     }
27    
28     /**
29     * Default constructor. Note that this should never be used; it is here
30     * just for some thumb requirements of ROOT.
31     */
32     SubPacket::SubPacket(void): SubPacketName("ERROR"), Type(0), Detector(0) {
33     }
34    
35     ClassImp(SubPacket)

  ViewVC Help
Powered by ViewVC 1.1.23