//  
// Author: Oliver Maria Kind <mailto: kind@mail.desy.de>
// Update: $Id: HepElectron.h,v 1.1 2008/11/20 14:58:57 danri Exp $
// Copyright: 2008 (C) Oliver Maria Kind
//
#ifndef HEP_HepElectron
#define HEP_HepElectron
#ifndef HEP_HepParticle
#include <HepParticle.h>
#endif

class HepElectron : public HepParticle {

protected:

public:
    HepElectron();
    HepElectron(Int_t Id, Float_t Px, Float_t Py, Float_t Pz, Float_t E,
       Bool_t IsPositron);
    virtual ~HepElectron();
    virtual void Clear(Option_t *option = "");

    ClassDef(HepElectron,2) // Basic electron class
};
#endif

 HepElectron.h:1
 HepElectron.h:2
 HepElectron.h:3
 HepElectron.h:4
 HepElectron.h:5
 HepElectron.h:6
 HepElectron.h:7
 HepElectron.h:8
 HepElectron.h:9
 HepElectron.h:10
 HepElectron.h:11
 HepElectron.h:12
 HepElectron.h:13
 HepElectron.h:14
 HepElectron.h:15
 HepElectron.h:16
 HepElectron.h:17
 HepElectron.h:18
 HepElectron.h:19
 HepElectron.h:20
 HepElectron.h:21
 HepElectron.h:22
 HepElectron.h:23
 HepElectron.h:24
 HepElectron.h:25
 HepElectron.h:26