1 |
/** @file |
/** @file |
2 |
* $Author: messineo $ |
* $Author: mocchiut $ |
3 |
* $Date: 2008-01-11 17:14:21 $ |
* $Date: 2008/09/23 07:19:54 $ |
4 |
* $Version: 1.1 $ |
* $Version: 1.1 $ |
5 |
* |
* |
6 |
* Header file for the SubPacket class. |
* Header file for the SubPacket class. |
22 |
*/ |
*/ |
23 |
SubPacket::SubPacket(std::string name, const PacketType* type, |
SubPacket::SubPacket(std::string name, const PacketType* type, |
24 |
const SubDetector* detector): |
const SubDetector* detector): |
25 |
SubPacketName(name), Type(type), Detector(detector) { |
Type(type), Detector(detector), SubPacketName(name) { |
26 |
} |
} |
27 |
|
|
28 |
/** |
/** |
29 |
* Default constructor. Note that this should never be used; it is here |
* Default constructor. Note that this should never be used; it is here |
30 |
* just for some thumb requirements of ROOT. |
* just for some thumb requirements of ROOT. |
31 |
*/ |
*/ |
32 |
SubPacket::SubPacket(void): SubPacketName("ERROR"), Type(0), Detector(0) { |
SubPacket::SubPacket(void): Type(0), Detector(0), SubPacketName("ERROR") { |
33 |
} |
} |
34 |
|
|
35 |
ClassImp(SubPacket) |
ClassImp(SubPacket) |