Fork me on GitHub

Changeset 144 in svn


Ignore:
Timestamp:
Jan 7, 2009, 12:49:33 AM (16 years ago)
Author:
Xavier Rouby
Message:

on avance dans le manuel

Location:
trunk/paper
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/paper/notes.tex

    r143 r144  
    941941\item{\bf The trigger card }
    942942 
    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:
     943This 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:
    944944 
    945945\begin{quote}
     
    955955\end{quote}
    956956 
    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:
     957Each line in the trigger datacard is allocated to exactly one trigger bit and starts with the name of the corresponding trigger.
     958Logical combination of several conditions is also possible.
     959If 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.
     960The default trigger card can be found in the data repository of \textsc{Delphes} (\texttt{data/trigger.dat}).
     961An example of trigger table consistent with the previous rules is given here:
    958962\begin{quote}
    959963\begin{verbatim}   
     964SingleJet                   >> JET_PT: '200'
    960965DoubleElec                  >> ELEC_PT: '20' && ELEC_PT: '10'   
    961966SingleElec and Single Muon  >> ELEC_PT: '20' && MUON_PT: '15'
    962967\end{verbatim}
    963968\end{quote}
    964  
    965 An example (the default trigger card) can be found in {\verb files/trigger.dat }.
    966  
    967969\end{enumerate}
    968970 
    969971\subsubsection{Running the code}
    970972 
    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
     973First, create the smearing and trigger cards (\texttt{data/mydetector.dat} and \texttt{data/mytrigger.dat}). \\
     974Then, 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}).
     975To run the code, type the following command (in one line)
    973976\begin{quote}
    974977\begin{verbatim}
    975 me@mylaptop:~$ ./Delphes inputlist.list OutputRootFileName.root data/mydetector.dat data/mytrigger.dat
     978me@mylaptop:~$ ./Delphes inputlist.list OutputRootFileName.root
     979                         data/mydetector.dat data/mytrigger.dat
     980\end{verbatim}
     981\end{quote}
     982As a reminder, typing the \texttt{./Delphes} command simply display the correct usage:
     983
     984\begin{quote}
     985\begin{verbatim}
     986me@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)
    976992\end{verbatim}
    977993\end{quote}
Note: See TracChangeset for help on using the changeset viewer.