//  
// Author: Oliver Maria Kind <mailto: kind@mail.desy.de>
// Update: $Id: AtlMCJet.h,v 1.3 2009/08/04 12:19:48 kind Exp $
// Copyright: 2008 (C) Oliver Maria Kind
//
#ifndef ATLAS_AtlMCJet
#define ATLAS_AtlMCJet
#ifndef ROOT_HepJet
#include <HepJet.h>
#endif

class AtlMCJet : public HepJet {

private:

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

    ClassDef(AtlMCJet,1) // Atlas MC truth jet
};
#endif

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