Will the class TDatime (been saved) work in 1.5 years:
void TDatime::Set(Int_t date, Int_t time)
{
// Set date and time. Data must be in format 980418 and time in, either
// 2246 (min precision) or 224512 (second precision). The date must
// be >= 950101.
if (date < 950101) {
Error("TDatime::Set", "year smaller than 1995");
return;
}
Valery