Пример #1
0
def make_ntuple_invPixSinglePhot( alg_list, args ) :

    make_ntuple = Filter( 'RunNtupleProcessing' )

    make_ntuple.cut_nph = ' > 0 '
    make_ntuple.cut_hasPixSeed_singlePhot = ' == True '

    alg_list.append( make_ntuple )
Пример #2
0
def make_ntuple_invPixSubl( alg_list, args ) :

    make_ntuple = Filter( 'RunNtupleProcessing' )

    make_ntuple.cut_nph = ' > 1 '
    make_ntuple.cut_hasPixSeed_leadph12 = ' == False '
    make_ntuple.cut_hasPixSeed_sublph12 = ' == True '
    make_ntuple.cut_eleOlap_leadph12 = ' == False '
    make_ntuple.cut_eleOlap_sublph12 = ' == True '


    alg_list.append( make_ntuple )