Changes in README.md [69da136:9fbcf38] in git
Legend:
- Unmodified
- Added
- Removed
-
README.md
r69da136 r9fbcf38 1 [![C ircleCI](https://circleci.com/gh/delphes/delphes.svg?style=shield)](https://circleci.com/gh/delphes/delphes)1 [![CI](https://github.com/delphes/delphes/actions/workflows/ci.yml/badge.svg)](https://github.com/delphes/delphes/actions/workflows/ci.yml) [![DOI](https://zenodo.org/badge/21390046.svg)](https://zenodo.org/badge/latestdoi/21390046) 2 2 3 3 Delphes … … 14 14 15 15 ``` 16 wget http://cp3.irmp.ucl.ac.be/downloads/Delphes-3. 4.2.tar.gz16 wget http://cp3.irmp.ucl.ac.be/downloads/Delphes-3.5.0.tar.gz 17 17 18 tar -zxf Delphes-3. 4.2.tar.gz18 tar -zxf Delphes-3.5.0.tar.gz 19 19 ``` 20 20 … … 22 22 23 23 ``` 24 cd Delphes-3. 4.224 cd Delphes-3.5.0 25 25 26 26 make … … 30 30 31 31 ``` 32 ./DelphesHepMC 32 ./DelphesHepMC3 33 33 ``` 34 34 … … 36 36 37 37 ``` 38 ./DelphesHepMC config_file output_file [input_file(s)]38 ./DelphesHepMC3 config_file output_file [input_file(s)] 39 39 config_file - configuration file in Tcl format 40 40 output_file - output file in ROOT format, … … 67 67 cd Delphes 68 68 69 source /afs/cern.ch/sw/lcg/external/gcc/4.9.3/x86_64-slc6/setup.sh 70 71 source /afs/cern.ch/sw/lcg/app/releases/ROOT/6.06.00/x86_64-slc6-gcc49-opt/root/bin/thisroot.sh 69 source /cvmfs/sft.cern.ch/lcg/views/LCG_99/x86_64-centos7-gcc10-opt/setup.sh 72 70 73 71 make … … 89 87 90 88 ``` 91 TFile ::Open("delphes_output.root");92 Delphes->Draw("Electron.PT");89 TFile *f = TFile::Open("delphes_output.root"); 90 f->Get("Delphes")->Draw("Electron.PT"); 93 91 TBrowser browser; 94 92 ```
Note:
See TracChangeset
for help on using the changeset viewer.