Changeset a8782e8 in git
- Timestamp:
- Dec 11, 2014, 4:34:30 PM (10 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 14ae668
- Parents:
- 8e602e5
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
README
r8e602e5 ra8782e8 30 30 wget http://cp3.irmp.ucl.ac.be/downloads/z_ee.hep.gz 31 31 gunzip z_ee.hep.gz 32 ./DelphesSTDHEP examples/delphes_card_CMS.tcl delphes_output.root z_ee.hep32 ./DelphesSTDHEP cards/delphes_card_CMS.tcl delphes_output.root z_ee.hep 33 33 34 34 or 35 35 36 curl -s http://cp3.irmp.ucl.ac.be/downloads/z_ee.hep.gz | gunzip | ./DelphesSTDHEP examples/delphes_card_CMS.tcl delphes_output.root36 curl -s http://cp3.irmp.ucl.ac.be/downloads/z_ee.hep.gz | gunzip | ./DelphesSTDHEP cards/delphes_card_CMS.tcl delphes_output.root 37 37 38 38 For more detailed documentation, please visit -
README.md
r8e602e5 ra8782e8 39 39 wget http://cp3.irmp.ucl.ac.be/downloads/z_ee.hep.gz 40 40 gunzip z_ee.hep.gz 41 ./DelphesSTDHEP examples/delphes_card_CMS.tcl delphes_output.root z_ee.hep41 ./DelphesSTDHEP cards/delphes_card_CMS.tcl delphes_output.root z_ee.hep 42 42 ``` 43 43 … … 45 45 46 46 ``` 47 curl -s http://cp3.irmp.ucl.ac.be/downloads/z_ee.hep.gz | gunzip | ./DelphesSTDHEP examples/delphes_card_CMS.tcl delphes_output.root47 curl -s http://cp3.irmp.ucl.ac.be/downloads/z_ee.hep.gz | gunzip | ./DelphesSTDHEP cards/delphes_card_CMS.tcl delphes_output.root 48 48 ``` 49 49 -
README_4LHCb
r8e602e5 ra8782e8 53 53 wget http://cp3.irmp.ucl.ac.be/downloads/pp2bb.hep.tgz 54 54 tar -xzvf pp2bb.hep.tgz 55 ./DelphesSTDHEP examples/delphes_card_prelLHCb.tcl delphes_output.root pp2bb.hep55 ./DelphesSTDHEP cards/delphes_card_prelLHCb.tcl delphes_output.root pp2bb.hep 56 56 57 57 -
examples/DelphesBrowser.C
r8e602e5 ra8782e8 18 18 TObjArray *partonOutputArray = modularDelphes->ExportArray("partons"); 19 19 20 confReader->ReadFile(" examples/delphes_card_CMS.tcl");20 confReader->ReadFile("cards/delphes_card_CMS.tcl"); 21 21 22 22 modularDelphes->SetConfReader(confReader); -
examples/ExternalFastJetBasic.cpp
r8e602e5 ra8782e8 17 17 */ 18 18 19 /* 20 21 First, you need to set DELPHES_DIR, FASTJET_DIR and ROOT_DIR: 22 23 DELPHES_DIR=<path to Delphes installation> 24 FASTJET_DIR=<path to FastJet installation> 25 ROOT_DIR=<path to ROOT installation> 26 27 Then run the following commands to build ExternalFastJetBasic: 28 29 DELPHES_LIB="-L$DELPHES_DIR -lDelphesNoFastJet" 30 31 FASTJET_INC=`$FASTJET_DIR/bin/fastjet-config --cxxflags` 32 FASTJET_LIB=`$FASTJET_DIR/bin/fastjet-config --libs` 33 34 ROOT_INC=`$ROOT_DIR/bin/root-config --incdir` 35 ROOT_LIB=`$ROOT_DIR/bin/root-config --libs` 36 37 CXXFLAGS="$FASTJET_INC -I$ROOT_INC -I$DELPHES_DIR -I$DELPHES_DIR/external" 38 LDFLAGS="$FASTJET_LIB $ROOT_LIB $DELPHES_LIB" 39 40 g++ $CXXFLAGS $LDFLAGS ExternalFastJetBasic.cpp -o ExternalFastJetBasic 41 42 */ 43 19 44 #include <stdexcept> 20 45 #include <iostream> -
examples/ExternalFastJetHepMC.cpp
r8e602e5 ra8782e8 17 17 */ 18 18 19 /* 20 21 First, you need to set DELPHES_DIR, FASTJET_DIR and ROOT_DIR: 22 23 DELPHES_DIR=<path to Delphes installation> 24 FASTJET_DIR=<path to FastJet installation> 25 ROOT_DIR=<path to ROOT installation> 26 27 Then run the following commands to build ExternalFastJetHepMC: 28 29 DELPHES_LIB="-L$DELPHES_DIR -lDelphesNoFastJet" 30 31 FASTJET_INC=`$FASTJET_DIR/bin/fastjet-config --cxxflags` 32 FASTJET_LIB=`$FASTJET_DIR/bin/fastjet-config --libs` 33 34 ROOT_INC=`$ROOT_DIR/bin/root-config --incdir` 35 ROOT_LIB=`$ROOT_DIR/bin/root-config --libs` 36 37 CXXFLAGS="$FASTJET_INC -I$ROOT_INC -I$DELPHES_DIR -I$DELPHES_DIR/external" 38 LDFLAGS="$FASTJET_LIB $ROOT_LIB $DELPHES_LIB" 39 40 g++ $CXXFLAGS $LDFLAGS ExternalFastJetHepMC.cpp -o ExternalFastJetHepMC 41 42 */ 43 19 44 #include <stdexcept> 20 45 #include <iostream> -
modules/Hector.cc
r8e602e5 ra8782e8 90 90 91 91 fBeamLine = new H_BeamLine(fDirection, fBeamLineLength + 0.1); 92 fBeamLine->fill(GetString("BeamLineFile", " examples/LHCB1IR5_5TeV.tfs"), fDirection, GetString("IPName", "IP5"));92 fBeamLine->fill(GetString("BeamLineFile", "cards/LHCB1IR5_5TeV.tfs"), fDirection, GetString("IPName", "IP5")); 93 93 fBeamLine->offsetElements(fOffsetS, fOffsetX); 94 94 fBeamLine->calcMatrix();
Note:
See TracChangeset
for help on using the changeset viewer.