#ifndef ALIVZERORECONSTRUCTOR_H #define ALIVZERORECONSTRUCTOR_H /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ /* $Id$ */ /////////////////////////////////////////////////////////////////////////////// /// // /// class for VZERO reconstruction // /// // /////////////////////////////////////////////////////////////////////////////// #include "AliReconstructor.h" class AliVZEROReconstructor: public AliReconstructor { public: AliVZEROReconstructor(): AliReconstructor() {}; virtual ~AliVZEROReconstructor() {}; ClassDef(AliVZEROReconstructor, 0) // class for the VZERO reconstruction }; #endif