Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:12:51

0001 namespace emid_commons
0002 {
0003   /* particle selection */
0004   /* select true electron */
0005   TCut select_true_ele("(em_evtgen_pid == 11)");
0006 
0007   /* select charged pions */
0008   TCut select_true_cpi("(abs(em_evtgen_pid) == 211)");
0009 
0010   /* select candidates with matching track found */
0011   TCut select_match("em_track_cluster_dr == em_track_cluster_dr");
0012 
0013   /* selectrion of reconstructed electron */
0014   TCut select_electron("em_cluster_prob > 0.01");
0015 }