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

class HepPhoton : public HepParticle {

protected:

public:
    HepPhoton();
    HepPhoton(Int_t Id, Float_t Px, Float_t Py, Float_t Pz, Float_t E);
    virtual ~HepPhoton();
    virtual void Clear(Option_t *option = "");
    virtual void Print(Option_t *option = "");
    static void PrintHeader();
    static void PrintFooter();

    ClassDef(HepPhoton,1) // Basic photon class
};
#endif

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