Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
tau_commons.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file tau_commons.h
1 namespace tau_commons
2 {
3  /* particle selection */
4  TCut select_true_uds("evtgen_pid!=15 && evtgen_pid!=11");
5  //TCut select_true_uds("evtgen_pid == 11");
6 
7  //TCut select_true_tau("evtgen_pid==15 && sqrt( (evtgen_eta-jet_eta)*(evtgen_eta-jet_eta) + (evtgen_phi-jet_phi)*(evtgen_phi-jet_phi) ) < 0.1");
8  TCut select_true_tau("evtgen_pid==15");
9 
10  TCut select_accept_jet("jet_ptrans > 5");
11 
12  //&& tracks_rmax_r04 < 0.12
13 
14  TCut select_tau("tracks_count_r04 == 3 && tracks_chargesum_r04 == -1 && jet_eta < 0.8 && tracks_vertex > 0.03");
15 }