//
// Author: Axel Naumann <mailto:axel@fnal.gov>
//
#include "seed/TCaloJet.h"
ClassImp(seed::TCaloJet)
namespace seed {
TCaloJet::TCaloJet(const TLorentzVector & lv,
const Double_t dWidthEta, const Double_t dWidthPhi,
const Double_t dEMF, const Int_t iN90):TJet(lv,
dWidthEta,
dWidthPhi),
fDEMF(dEMF), fIN90(iN90)
{
} TCaloJet & TCaloJet::Set(const TLorentzVector & lv,
const Double_t dWidthEta, const Double_t dWidthPhi,
const Double_t dEMF, const Int_t iN90) {
TJet::Set(lv, dWidthEta, dWidthPhi);
fDEMF = dEMF;
fIN90 = iN90;
return *this;
}
} // namespace seed;
ROOT page - Class index - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.