FairRoot/PandaRoot
Functions | Variables
RhoDoubleErr.cxx File Reference
#include "RhoDoubleErr.h"
#include "TBuffer.h"
#include <math.h>
#include <iostream>

Go to the source code of this file.

Functions

TBuffer & operator>> (TBuffer &buf, RhoDoubleErr *&obj)
 
std::ostreamoperator<< (std::ostream &stream, const RhoDoubleErr &bde)
 

Variables

static const char rscid [] = "$Id: TDoubleErr.cxx,v 1.3 2002-02-01 22:34:57 marcel Exp $"
 

Function Documentation

std::ostream& operator<< ( std::ostream stream,
const RhoDoubleErr bde 
)

Definition at line 109 of file RhoDoubleErr.cxx.

References RhoDoubleErr::Covariance(), and RhoDoubleErr::Value().

110 {
111  stream << "value: " << bde.Value()
112  << " covariance: " << bde.Covariance();
113 
114  return stream;
115 }
Double_t Covariance() const
Definition: RhoDoubleErr.h:55
Double_t Value() const
Definition: RhoDoubleErr.h:52
TBuffer& operator>> ( TBuffer &  buf,
RhoDoubleErr *&  obj 
)

Definition at line 19 of file RhoDoubleErr.cxx.

20 {
21  obj = ( RhoDoubleErr* ) buf.ReadObject ( RhoDoubleErr::Class() );
22  return buf;
23 }

Variable Documentation

const char rscid[] = "$Id: TDoubleErr.cxx,v 1.3 2002-02-01 22:34:57 marcel Exp $"
static

Definition at line 28 of file RhoDoubleErr.cxx.