library: libCore
#include "TTime.h"

TTime


class description - header file - source file
viewCVS header - viewCVS source

class TTime

Inheritance Inherited Members Includes Libraries
Class Charts

Function Members (Methods)

Display options:
Show inherited
Show non-public
public:
TTime()
TTime(Long_t msec)
TTime(const TTime& t)
virtual~TTime()
const char*AsString() const
static TClass*Class()
virtual TClass*IsA() const
longoperator long() const
unsigned longoperator unsigned long() const
TTimeoperator*=(const TTime& t)
TTimeoperator+=(const TTime& t)
TTimeoperator-=(const TTime& t)
TTimeoperator/=(const TTime& t)
TTime&operator=(const TTime& t)
virtual voidShowMembers(TMemberInspector& insp, char* parent)
virtual voidStreamer(TBuffer& b)
voidStreamerNVirtual(TBuffer& b)

Data Members

private:
Long_tfMilliSec

Class Description

                                                                      
 TTime                                                                
                                                                      
 Basic time type with millisecond precision.                          
                                                                      

const char * AsString()
 Return the time as a string.
TTime operator+=(const TTime &t)
{ fMilliSec += t.fMilliSec; return *this; }
TTime operator-=(const TTime &t)
{ fMilliSec -= t.fMilliSec; return *this; }
TTime operator*=(const TTime &t)
{ fMilliSec *= t.fMilliSec; return *this; }
TTime operator/=(const TTime &t)
{ fMilliSec /= t.fMilliSec; return *this; }
operator long()
{ return fMilliSec; }
operator unsigned long()
{ return (ULong_t) fMilliSec; }
TTime()
{ }
TTime(Long_t msec)
{ }
TTime(const TTime &t)
{ }
virtual ~TTime()
{ }
TTime& operator=(const TTime &t)

Author: Fons Rademakers 28/11/96
Last update: root/base:$Name: $:$Id: TTime.cxx,v 1.2 2005/11/16 20:04:11 pcanal Exp $
Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *


ROOT page - Class index - Class Hierarchy - 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.