#ifndef PHYSENDRUN_EVENT_H
#define PHYSENDRUN_EVENT_H

#include "event/SubPacket.h"
#include "event/endrun/CaloEndRun.h"
#include "event/endrun/TBEndRun.h"

namespace pamela {
  /**
   * Information events about the PhysEndRun.
   */
  class PhysEndRunEvent: public pamela::SubPacket {
  private:
  
  public:

  
  
    PhysEndRunEvent(void);
    
    //----Calorimeter sections-----
    CaloEndRun  CALO_ENDRUN[4];
    TBEndRun    TB_ENDRUN;

    //----Calorimeter sections-----
    
    ClassDef(PhysEndRunEvent, 1)
  };
}

#endif /* PHYSENDRUN_EVENT_H */