//*-- Author : A.Sadovski (using Anar's Rustamov code as an example) //*-- Last modified : 10/08/2005 by Ilse Koenig //_HADES_CLASS_DESCRIPTION //////////////////////////////////////////////////////////////////////////////////////////////////////////// // // HKickTrack123B // // the output of middle(MDC123M) and high(MDC1234) resolution kicktrack in a new BaseTrack scheme // // // Inline functions (except the ones from HBaseTrack) are: // // void setMetaEloss(Float_t t) - Sets energy loss in META detector // void setOuterHitId( Int_t i) - Sets Id of the hit in meta detector (original KickPlane feature) // void setPMeta(Float_t pm) - Sets momentum estimate from Time-of-Flight measurement // // Float_t getMetaEloss(void) - energy loss in META detector // Int_t getOuterHitId( void) - Id of the hit in meta detector (original KickPlane feature) // Float_t getPMeta(void) - momentum estimate from Time-of-Flight measurement // //////////////////////////////////////////////////////////////////////////////////////////////////////////// #include "hkicktrack123B.h" using namespace std; #include HKickTrack123B::HKickTrack123B() { metaeloss =0.; outherHitId=-1; pMeta =0.; } ClassImp(HKickTrack123B)