//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Containing a Lambda candidate an cut parameters // // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Sverre Doerheim(original author) // // // //----------------------------------------------------------- #include "FopiLambdaCand.h" #include "GFTrack.h" #include "TLorentzVector.h" #include "TVector3.h" ClassImp(FopiLambdaCand) FopiLambdaCand::FopiLambdaCand(TLorentzVector state_, TVector3 vertex_):fVertexId(0), fPTrackId(0),fPiTrackId(0) { //,raveVtx(NULL) fstate=state_; fvertex=vertex_; } FopiLambdaCand::FopiLambdaCand(const FopiLambdaCand& cand): fstate(cand.fstate), fvertex(cand.fvertex),fVertexId(0),fPTrackId(0),fPiTrackId(0) { // raveVtx=cand.raveVtx; }