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

Annotation of /yoda/event/SubPacket.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2.0 - (hide annotations) (download)
Tue Sep 21 20:49:57 2004 UTC (20 years, 2 months ago) by kusanagi
Branch: MAIN
Changes since 1.2: +1 -1 lines
Major release

1 kusanagi 1.1 /** @file
2 kusanagi 1.2 * $Author: kusanagi $
3 kusanagi 2.0 * $Date: 2004/09/21 20:23:37 $
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