Changeset 144 in svn
- Timestamp:
- Jan 7, 2009, 12:49:33 AM (16 years ago)
- Location:
- trunk/paper
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/paper/notes.tex
r143 r144 941 941 \item{\bf The trigger card } 942 942 943 This card contains the definitions of all trigger bits. Cuts can be applied on the transverse momentum $p_T$ of electrons, muons, jets, $\tau$-jets, photons and the missing transverse energy. The following codes should be used so that \textsc{Delphes} can correctly translate the input list of trigger bit into selection algorithms:943 This card contains the definitions of all trigger bits. Cuts can be applied on the transverse momentum $p_T$ of electrons, muons, jets, $\tau$-jets, photons and the missing transverse energy. The following codes should be used so that \textsc{Delphes} can correctly translate the input list of trigger bits into selection algorithms: 944 944 945 945 \begin{quote} … … 955 955 \end{quote} 956 956 957 Each line in the trigger datacard is allocated to exactly one trigger bit and starts with the name of the corresponding trigger. Logical combination of several conditions is also possible. If the trigger bit requires the presence of multiple identical objects, the order of their $p_T$ thresholds is very important: they must be defined in \textit{decreasing} order. Finally, the different requirements on the objects must be separated by a {\verb && } flag. The default trigger card can be found in the data repository of \textsc{Delphes} (\texttt{data/trigger.dat}). An example of trigger table consistent with the previous rules is given here: 957 Each line in the trigger datacard is allocated to exactly one trigger bit and starts with the name of the corresponding trigger. 958 Logical combination of several conditions is also possible. 959 If the trigger bit requires the presence of multiple identical objects, the order of their $p_T$ thresholds is very important: they must be defined in \textit{decreasing} order. Finally, the different requirements on the objects must be separated by a {\verb && } flag. 960 The default trigger card can be found in the data repository of \textsc{Delphes} (\texttt{data/trigger.dat}). 961 An example of trigger table consistent with the previous rules is given here: 958 962 \begin{quote} 959 963 \begin{verbatim} 964 SingleJet >> JET_PT: '200' 960 965 DoubleElec >> ELEC_PT: '20' && ELEC_PT: '10' 961 966 SingleElec and Single Muon >> ELEC_PT: '20' && MUON_PT: '15' 962 967 \end{verbatim} 963 968 \end{quote} 964 965 An example (the default trigger card) can be found in {\verb files/trigger.dat }.966 967 969 \end{enumerate} 968 970 969 971 \subsubsection{Running the code} 970 972 971 Create the above cards (data/mydetector.dat and data/mytrigger.dat). Create a text file containing the list of input files that will be used by \textsc{Delphes} (with extension *.lhe, *.root or *.hep) 972 To run the code, type the following 973 First, create the smearing and trigger cards (\texttt{data/mydetector.dat} and \texttt{data/mytrigger.dat}). \\ 974 Then, create a text file containing the list of input files that will be used by \textsc{Delphes} (with extension \texttt{*.lhe}, \texttt{*.root} or \texttt{*.hep}). 975 To run the code, type the following command (in one line) 973 976 \begin{quote} 974 977 \begin{verbatim} 975 me@mylaptop:~$ ./Delphes inputlist.list OutputRootFileName.root data/mydetector.dat data/mytrigger.dat 978 me@mylaptop:~$ ./Delphes inputlist.list OutputRootFileName.root 979 data/mydetector.dat data/mytrigger.dat 980 \end{verbatim} 981 \end{quote} 982 As a reminder, typing the \texttt{./Delphes} command simply display the correct usage: 983 984 \begin{quote} 985 \begin{verbatim} 986 me@mylaptop:~$ ./Delphes 987 Usage: ./Delphes input_file output_file [detector_card] [trigger_card] 988 input_list - list of files in Ntpl, StdHep of LHEF format, 989 output_file - output file. 990 detector_card - Card containing resolution variables for detector simulation (optional) 991 trigger_card - Card containing the trigger algorithms (optional) 976 992 \end{verbatim} 977 993 \end{quote}
Note:
See TracChangeset
for help on using the changeset viewer.