FairRoot/PandaRoot
Functions
RhoEventSelectorBase.cxx File Reference
#include <stdlib.h>
#include "RhoBase/RhoEventSelectorBase.h"
#include "RhoBase/RhoCandidate.h"
#include <iostream>

Go to the source code of this file.

Functions

TBuffer & operator>> (TBuffer &buf, RhoEventSelectorBase *&obj)
 
std::ostreamoperator<< (std::ostream &o, const RhoEventSelectorBase &a)
 

Function Documentation

std::ostream& operator<< ( std::ostream o,
const RhoEventSelectorBase a 
)

Definition at line 48 of file RhoEventSelectorBase.cxx.

References RhoEventSelectorBase::PrintOn().

49 {
50  a.PrintOn ( o );
51  return o;
52 }
virtual void PrintOn(std::ostream &o=std::cout) const
TBuffer& operator>> ( TBuffer &  buf,
RhoEventSelectorBase *&  obj 
)

Definition at line 20 of file RhoEventSelectorBase.cxx.

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