本文整理汇总了C++中Jet::getMaxRHDepth方法的典型用法代码示例。如果您正苦于以下问题:C++ Jet::getMaxRHDepth方法的具体用法?C++ Jet::getMaxRHDepth怎么用?C++ Jet::getMaxRHDepth使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Jet
的用法示例。
在下文中一共展示了Jet::getMaxRHDepth方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: fillPlots
//.........这里部分代码省略.........
double ee015_energy = jet.getEEEnergy(0, 15);
double ee1631_energy = jet.getEEEnergy(16, 31);
double hef_energy = jet.getHEFEnergy();
double heb_energy = jet.getHEBEnergy();
double all_energy = ee_energy + hef_energy + heb_energy;
double hef11_energy = jet.getHEFEnergy(1, 1);
double hef22_energy = jet.getHEFEnergy(2, 2);
double hef34_energy = jet.getHEFEnergy(3, 4);
double hef56_energy = jet.getHEFEnergy(5, 6);
double hef712_energy = jet.getHEFEnergy(7,12);
double likelihood = l.getLikelihood ( likelihood_variables );
if ( isQuarkJet ){
quark_th1[0] -> Fill ( jet.NSubJettiness() );
quark_th1[1] -> Fill ( jet.TrimmedMass(index) * 1000. );
quark_th1[2] -> Fill ( jet.TrimmedNSubjets(index) );
quark_th1[3] -> Fill ( jet.getNPFCandidates() );
quark_th1[4] -> Fill ( jet.getWidth() );
quark_th1[5] -> Fill ( jet.getChargedWidth() );
quark_th1[6] -> Fill ( jet.getNeutralWidth() );
quark_th1[7] -> Fill ( weighted_depth );
quark_th1[8] -> Fill ( weighted_depth_noEE );
quark_th1[9] -> Fill ( jet.getPTD() );
quark_th1[10] -> Fill ( likelihood );
quark_th1[11] -> Fill ( ee_energy / all_energy );
quark_th1[12] -> Fill ( ee015_energy / all_energy );
quark_th1[13] -> Fill ( ee1631_energy / all_energy );
quark_th1[14]-> Fill ( heb_energy / all_energy );
quark_th1[15]-> Fill ( hef_energy / all_energy );
quark_th1[16]-> Fill ( hef11_energy / all_energy );
quark_th1[17]-> Fill ( hef22_energy / all_energy );
quark_th1[18]-> Fill ( hef34_energy / all_energy );
quark_th1[19]-> Fill ( hef56_energy / all_energy );
quark_th1[20]-> Fill ( hef712_energy / all_energy );
for (int i_radius = 0; i_radius < n_radii; ++i_radius){
quark_th1[21] -> Fill(radii[i_radius], profile[i_radius]);
}
quark_th1[22] -> Fill ( profile50 );
quark_th1[23] -> Fill ( profile90 );
quark_th1[24] -> Fill ( profile95 );
quark_th1[25] -> Fill ( profile99 );
quark_th1[26] -> Fill ( n_core_jets );
quark_th1[27] -> Fill ( lead_core_jet_dr );
quark_th1[28] -> Fill ( core_over_total_pt );
quark_th1[29] -> Fill ( clusterVolume );
quark_th1[30] -> Fill ( clusterLength );
quark_th2[0] -> Fill ( jet.Pt(), weighted_depth );
quark_th2[1] -> Fill ( jet.Pt(), jet.getMaxRHDepth());
quark_th2[2] -> Fill ( jet.getNPFCandidates(), jet.TrimmedNSubjets(index) );
}
if ( isGluonJet ){
gluon_th1[0] -> Fill ( jet.NSubJettiness() );
gluon_th1[1] -> Fill ( jet.TrimmedMass(index) * 1000. );
gluon_th1[2] -> Fill ( jet.TrimmedNSubjets(index) );
gluon_th1[3] -> Fill ( jet.getNPFCandidates() );
gluon_th1[4] -> Fill ( jet.getWidth() );
gluon_th1[5] -> Fill ( jet.getChargedWidth() );
gluon_th1[6] -> Fill ( jet.getNeutralWidth() );
gluon_th1[7] -> Fill ( weighted_depth );
gluon_th1[8] -> Fill ( weighted_depth_noEE );
gluon_th1[9] -> Fill ( jet.getPTD() );
gluon_th1[10] -> Fill ( likelihood );
gluon_th1[11] -> Fill ( ee_energy / all_energy );
gluon_th1[12] -> Fill ( ee015_energy / all_energy );
gluon_th1[13] -> Fill ( ee1631_energy / all_energy );
gluon_th1[14]-> Fill ( heb_energy / all_energy );
gluon_th1[15]-> Fill ( hef_energy / all_energy );
gluon_th1[16]-> Fill ( hef11_energy / all_energy );
gluon_th1[17]-> Fill ( hef22_energy / all_energy );
gluon_th1[18]-> Fill ( hef34_energy / all_energy );
gluon_th1[19]-> Fill ( hef56_energy / all_energy );
gluon_th1[20]-> Fill ( hef712_energy / all_energy );
for (int i_radius = 0; i_radius < n_radii; ++i_radius){
gluon_th1[21] -> Fill(radii[i_radius], profile[i_radius]);
}
gluon_th1[22] -> Fill ( profile50 );
gluon_th1[23] -> Fill ( profile90 );
gluon_th1[24] -> Fill ( profile95 );
gluon_th1[25] -> Fill ( profile99 );
gluon_th1[26] -> Fill ( n_core_jets );
gluon_th1[27] -> Fill ( lead_core_jet_dr );
gluon_th1[28] -> Fill ( core_over_total_pt );
gluon_th1[29] -> Fill ( clusterVolume );
gluon_th1[30] -> Fill ( clusterLength );
gluon_th2[0] -> Fill ( jet.Pt(), weighted_depth );
gluon_th2[1] -> Fill ( jet.Pt(), jet.getMaxRHDepth());
gluon_th2[2] -> Fill ( jet.getNPFCandidates(), jet.TrimmedNSubjets(index) );
}
}
}