31 template <
class ParcelType>
33 KinematicParcel<ParcelType>::propHeader
40 template<
class ParcelType>
56 if (is.format() == IOstream::ASCII)
65 reinterpret_cast<char*>(&T_),
75 "ThermoParcel::ThermoParcel(const Cloud<ParcelType>&, Istream&, bool)"
80 template<
class ParcelType>
109 template<
class ParcelType>
136 template<
class ParcelType>
143 if (os.
format() == IOstream::ASCII)
145 os << static_cast<const KinematicParcel<ParcelType>&>(
p)
146 << token::SPACE <<
p.T()
147 << token::SPACE <<
p.cp();
151 os << static_cast<const KinematicParcel<ParcelType>&>(
p);
154 reinterpret_cast<const char*>(&
p.T_),
155 sizeof(
p.T()) +
sizeof(
p.cp())
162 "Ostream& operator<<(Ostream&, const ThermoParcel<ParcelType>&)"