本文整理汇总了C++中Jet::get_pz方法的典型用法代码示例。如果您正苦于以下问题:C++ Jet::get_pz方法的具体用法?C++ Jet::get_pz怎么用?C++ Jet::get_pz使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Jet
的用法示例。
在下文中一共展示了Jet::get_pz方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: process_event
int PhotonJet::process_event(PHCompositeNode *topnode)
{
cout<<"at event number "<<nevents<<endl;
//get the nodes from the NodeTree
JetMap* truth_jets = findNode::getClass<JetMap>(topnode,"AntiKt_Truth_r04");
JetMap *reco_jets = findNode::getClass<JetMap>(topnode,"AntiKt_Tower_r04");
PHG4TruthInfoContainer* truthinfo = findNode::getClass<PHG4TruthInfoContainer>(topnode,"G4TruthInfo");
RawClusterContainer *clusters = findNode::getClass<RawClusterContainer>(topnode,"CLUSTER_CEMC");
SvtxTrackMap *trackmap = findNode::getClass<SvtxTrackMap>(topnode,"SvtxTrackMap");
JetEvalStack* _jetevalstack = new JetEvalStack(topnode,"AntiKt_Tower_r04","AntiKt_Truth_r04");
PHG4TruthInfoContainer::Range range = truthinfo->GetPrimaryParticleRange();
if(!truth_jets){
cout<<"no truth jets"<<endl;
return 0;
}
if(!reco_jets){
cout<<"no reco jets"<<endl;
return 0;
}
if(!truthinfo){
cout<<"no truth track info"<<endl;
return 0;
}
if(!clusters){
cout<<"no cluster info"<<endl;
return 0;
}
if(!trackmap){
cout<<"no track map"<<endl;
return 0;
}
if(!_jetevalstack){
cout<<"no good truth jets"<<endl;
return 0;
}
JetRecoEval* recoeval = _jetevalstack->get_reco_eval();
/***********************************************
GET THE TRUTH PARTICLES
************************************************/
for( PHG4TruthInfoContainer::ConstIterator iter = range.first; iter!=range.second; ++iter){
PHG4Particle *truth = iter->second;
truthpx = truth->get_px();
truthpy = truth->get_py();
truthpz = truth->get_pz();
truthp = sqrt(truthpx*truthpx+truthpy*truthpy+truthpz*truthpz);
truthenergy = truth->get_e();
TLorentzVector vec;
vec.SetPxPyPzE(truthpx,truthpy,truthpz,truthenergy);
truthpt = sqrt(truthpx*truthpx+truthpy*truthpy);
if(truthpt<0.5)
continue;
truthphi = vec.Phi();
trutheta = vec.Eta();
truthpid = truth->get_pid();
truth_g4particles->Fill();
}
/***********************************************
GET THE EMCAL CLUSTERS
************************************************/
RawClusterContainer::ConstRange begin_end = clusters->getClusters();
RawClusterContainer::ConstIterator clusiter;
for(clusiter = begin_end.first; clusiter!=begin_end.second; ++clusiter){
RawCluster *cluster = clusiter->second;
clus_energy = cluster->get_energy();
clus_eta = cluster->get_eta();
clus_theta = 2.*TMath::ATan((TMath::Exp(-1.*clus_eta)));
clus_pt = clus_energy*TMath::Sin(clus_theta);
clus_phi = cluster->get_phi();
if(clus_pt<0.5)
continue;
//.........这里部分代码省略.........
示例2: GetRecoHadronsAndJets
void PhotonJet::GetRecoHadronsAndJets(RawCluster *trig,
SvtxTrackMap *tracks,
JetMap *jets,
JetRecoEval *recoeval)
{
float trig_phi = trig->get_phi();
float trig_eta = trig->get_eta();
for(SvtxTrackMap::Iter iter = tracks->begin(); iter!=tracks->end(); ++iter){
SvtxTrack *track = iter->second;
_tr_px = track->get_px();
_tr_py = track->get_py();
_tr_pz = track->get_pz();
_tr_pt = sqrt(_tr_px*_tr_px+_tr_py*_tr_py);
if(_tr_pt<0.5)
continue;
_tr_p = sqrt(_tr_px*_tr_px+_tr_py*_tr_py+_tr_pz*_tr_pz);
_tr_phi = track->get_phi();
_tr_eta = track->get_eta();
_charge = track->get_charge();
_chisq = track->get_chisq();
_ndf = track->get_ndf();
_dca = track->get_dca();
_tr_x = track->get_x();
_tr_y = track->get_y();
_tr_z = track->get_z();
haddphi = trig_phi-_tr_phi;
if(haddphi<pi2)
haddphi+=2.*pi;
if(haddphi>threepi2)
haddphi-=2.*pi;
haddeta = trig_eta-_tr_eta;
hadpout = _tr_p*TMath::Sin(haddphi);
isophot_had_tree->Fill();
}
for(JetMap::Iter iter = jets->begin(); iter!=jets->end(); ++iter){
Jet* jet = iter->second;
Jet *truthjet = recoeval->max_truth_jet_by_energy(jet);
_recojetpt = jet->get_pt();
if(_recojetpt<4.0)
continue;
_recojeteta = jet->get_eta();
if(fabs(_recojeteta)>1.)
continue;
_recojetpx = jet->get_px();
_recojetpy = jet->get_py();
_recojetpz = jet->get_pz();
_recojetphi = jet->get_phi();
_recojetmass = jet->get_mass();
_recojetp = jet->get_p();
_recojetenergy = jet->get_e();
_recojetid = jet->get_id();
if(truthjet){
_truthjetid = truthjet->get_id();
_truthjetp = truthjet->get_p();
_truthjetphi = truthjet->get_phi();
_truthjeteta = truthjet->get_eta();
_truthjetpt = truthjet->get_pt();
_truthjetenergy = truthjet->get_e();
_truthjetpx = truthjet->get_px();
_truthjetpy = truthjet->get_py();
_truthjetpz = truthjet->get_pz();
}
else{
_truthjetid = 0;
_truthjetp = 0;
_truthjetphi = 0;
_truthjeteta = 0;
_truthjetpt = 0;
_truthjetenergy = 0;
_truthjetpx = 0;
_truthjetpy = 0;
_truthjetpz = 0;
}
jetdphi = trig_phi-_recojetphi;
if(jetdphi<pi2)
jetdphi+=2.*pi;
if(jetdphi>threepi2)
jetdphi-=2.*pi;
jetdeta = trig_eta-_recojeteta;
jetpout = _recojetpt*TMath::Sin(jetdphi);
//.........这里部分代码省略.........