#ifndef HPAIREXT_H
#define HPAIREXT_H
#include "hpair.h"
#include <hpidparticle.h>
class HPairExt: public HPair {
public:
HPairExt();
HPairExt(HPidParticle*, HPidParticle*);
virtual ~HPairExt();
HPairExt(const HPairExt& source);
virtual void print(void);
HPidParticle* getPidParticle1(void) { return &itsParticle1;}
HPidParticle* getPidParticle2(void) { return &itsParticle2;}
virtual Char_t getCharge(void) const;
virtual void Clear(Option_t *opt = "");
protected:
virtual void reset(void);
HPidParticle itsParticle1;
HPidParticle itsParticle2;
ClassDef(HPairExt,1)
};
#endif // HPAIREXT_H
Last change: Sat May 22 13:06:12 2010
Last generated: 2010-05-22 13:06
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.