C************************************************************************* C* * C* S T A T I S T I C S * C* * C************************************************************************* C--- C--- This file contains the general statistic counters C--- C--- NEVLEV (i) # of events passing the i-th level of analysis C--- NTRTYPE(i) # of trigger of each type C--- NTRMLU(i,j) # of triggers coming from combination i and contributing C--- to MLUj ( MLUj is actually the "OR" of various combinations) C--- C--- Filtering test informations ( **** USER DEFINED !!!! ****) C--- C--- ITEST(i) contains the result of i-th test for each event C--- NPSTEST(i) counts the number of events passing the i-th test C--- INTEGER NEVLEV(NMXLEV) COMMON/STATIS/ NEVLEV INTEGER NTRTYPE(NMXTTYP) COMMON/TRTYPE/NTRTYPE INTEGER NTRMLU(4,4) COMMON/NTRMLU/NTRMLU INTEGER NMXTEST PARAMETER (NMXTEST=100) INTEGER ITEST(NMXTEST),NPSTEST(NMXTEST),IFLTEST(NMXTEST) C COMMON/TEST1/ITEST,NPSTEST,IFLTEST