SusyNtuple
SusyNtuple/TruthJet.h
00001 // Dear emacs, this is -*- c++ -*-
00002 #ifndef SUSYNTUPLE_TRUTHJET_H
00003 #define SUSYNTUPLE_TRUTHJET_H
00004 
00005 #include "SusyNtuple/Particle.h"
00006 
00007 namespace Susy
00008 {
00010 class TruthJet : public Particle
00011 {
00012 public:
00013     TruthJet(){ clear(); }
00014     virtual ~TruthJet(){};
00015     TruthJet(const TruthJet &);
00017     TruthJet& operator=(const TruthJet &);
00018 
00019     int flavor;
00020 
00021     // Print method
00022     void print() const;
00023 
00024     void clear(){
00025       flavor = 0;
00026       Particle::clear();
00027     }
00028 
00029     ClassDef(TruthJet,1);
00030 };
00031 } // Susy
00032 #endif
 All Classes Functions Variables Typedefs Enumerations Enumerator