#include "TFndDate.h"

ClassImp(TFndDate);

 TFndDate::TFndDate(){
     fDay    = 0;
     fMonth  = 0;
     fYear   = 0;
     fHour   = 0;
     fMinute = 0;
     fSecond = 0;
     }

 TFndDate::~TFndDate(){ }


 TFndDate::TFndDate(UInt_t *prdt){
     fYear   = ((*(prdt+5))>>16)&0xFF; 
     fMonth  = 1+((*(prdt+5))>>8)&0xFF;
     fDay    = (*(prdt+5))&0xFF;
     fHour   = ((*(prdt+6))>>16)&0xFF;
     fMinute = ((*(prdt+6))>>8)&0xFF;
     fSecond = (*(prdt+6))&0xFF;
     }




ROOT page - Class index - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.