X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=blobdiff_plain;f=FMD%2FReconstruct.C;fp=FMD%2FAliFMDhit.cxx;h=c8aa8a9ae35c9d9589e83add11587ca4c5bce53a;hp=4d75aa17bd28827e05fe96b488f1e55ee5adeb1d;hb=4347b38ff0813917a92cc4e1e0ee3f9bfef3f1bc;hpb=527a1d3fad36121c2eeef1e6b90a0b2a50219df1;ds=sidebyside diff --git a/FMD/AliFMDhit.cxx b/FMD/Reconstruct.C similarity index 73% rename from FMD/AliFMDhit.cxx rename to FMD/Reconstruct.C index 4d75aa17bd2..c8aa8a9ae35 100644 --- a/FMD/AliFMDhit.cxx +++ b/FMD/Reconstruct.C @@ -12,38 +12,23 @@ * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ -#include "AliFMDhit.h" -ClassImp(AliFMDhit) +/* $Id$ */ -AliFMDhit::AliFMDhit(Int_t shunt, Int_t track, Int_t *vol, Float_t *hits): - AliHit(shunt, track) +// Script to do test the FMD digitization class. + +void +Reconstruct() { -//Normal FMD hit ctor - fVolume = vol[0]; - fNumberOfSector=vol[1]; - fNumberOfRing=vol[2]; - fX=hits[0]; - fY=hits[1]; - fZ=hits[2]; - fPx=hits[3]; - fPy=hits[4]; - fPz=hits[5]; - fEdep=hits[6]; - fParticle=(Int_t)hits[7]; - fTime=hits[8]; + AliReconstruction rec; + rec.SetRunLocalReconstruction("FMD"); + rec.SetRunVertexFinder(kFALSE); + rec.SetRunTracking(kFALSE); + rec.SetFillESD(""); + rec.SetInput("./"); + rec.Run(); } - - - - - - - - - - - - - +// +// EOF +//