Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
emid_commons.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file emid_commons.h
1 namespace emid_commons
2 {
3  /* particle selection */
4  /* select true electron */
5  TCut select_true_ele("(em_evtgen_pid == 11)");
6 
7  /* select charged pions */
8  TCut select_true_cpi("(abs(em_evtgen_pid) == 211)");
9 
10  /* select candidates with matching track found */
11  TCut select_match("em_track_cluster_dr == em_track_cluster_dr");
12 
13  /* selectrion of reconstructed electron */
14  TCut select_electron("em_cluster_prob > 0.01");
15 }