/****************************************************************************** * $Id: CbmDileptonTrackReal.cxx,v 1.2 2006/01/26 09:58:37 hoehne Exp $ * * Class : CbmDileptonTrackReal * Descripton: This is the class for identified electrons for real data stream. * * Author: Supriya Das * E-mail: S.Das@gsi.de ***************************************************************************** * $Log : CbmDileptonTrackReal.cxx,v $ *****************************************************************************/ #include "CbmDileptonTrackReal.h" ClassImp(CbmDileptonTrackReal) CbmDileptonTrackReal::CbmDileptonTrackReal():CbmDileptonTrack() { indexGlobal = -99; fCharge = -99; // fMomentum.SetXYZ(0,0,0); fChiPrimary = 0; isRICH = kFALSE; isTRD = kFALSE; isTOF = kFALSE; } CbmDileptonTrackReal::CbmDileptonTrackReal(Int_t i, Short_t charge, TVector3 mom, Double_t chi, Bool_t isRich, Bool_t isTrd, Bool_t isTof):CbmDileptonTrack() { indexGlobal = i; fCharge = charge; fMomentum = mom; fChiPrimary = chi; isRICH = isRich; isTRD = isTrd; isTOF = isTof; } CbmDileptonTrackReal::~CbmDileptonTrackReal() { }