--- chewbacca/event/SubPacket.cpp 2008/09/23 07:19:54 1.1.1.1 +++ chewbacca/event/SubPacket.cpp 2009/07/29 15:47:24 1.2 @@ -1,6 +1,6 @@ /** @file - * $Author: messineo $ - * $Date: 2008-01-11 17:14:21 $ + * $Author: mocchiut $ + * $Date: 2008/09/23 07:19:54 $ * $Version: 1.1 $ * * Header file for the SubPacket class. @@ -22,14 +22,14 @@ */ SubPacket::SubPacket(std::string name, const PacketType* type, const SubDetector* detector): - SubPacketName(name), Type(type), Detector(detector) { + Type(type), Detector(detector), SubPacketName(name) { } /** * Default constructor. Note that this should never be used; it is here * just for some thumb requirements of ROOT. */ -SubPacket::SubPacket(void): SubPacketName("ERROR"), Type(0), Detector(0) { +SubPacket::SubPacket(void): Type(0), Detector(0), SubPacketName("ERROR") { } ClassImp(SubPacket)