Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created January 30, 2021 01:12
Show Gist options
  • Save r-ryantm/6fa5530228f5c7c3c16299ab3ce234e2 to your computer and use it in GitHub Desktop.
Save r-ryantm/6fa5530228f5c7c3c16299ab3ce234e2 to your computer and use it in GitHub Desktop.
/nix/store/pm51r1xcnhsmrxdh8p4cr8dx4fhq80xr-hepmc3-3.2.3
├── bin
│   └── HepMC3-config
├── include
│   └── HepMC3
│   ├── AssociatedParticle.h
│   ├── AttributeFeature.h
│   ├── Attribute.h
│   ├── Data
│   │   ├── GenEventData.h
│   │   ├── GenParticleData.h
│   │   ├── GenRunInfoData.h
│   │   └── GenVertexData.h
│   ├── Errors.h
│   ├── Feature.h
│   ├── FilterAttribute.h
│   ├── Filter.h
│   ├── FourVector.h
│   ├── GenCrossSection_fwd.h
│   ├── GenCrossSection.h
│   ├── GenEvent.h
│   ├── GenHeavyIon_fwd.h
│   ├── GenHeavyIon.h
│   ├── GenParticle_fwd.h
│   ├── GenParticle.h
│   ├── GenPdfInfo_fwd.h
│   ├── GenPdfInfo.h
│   ├── GenRunInfo.h
│   ├── GenVertex_fwd.h
│   ├── GenVertex.h
│   ├── HEPEVT_Wrapper.h
│   ├── HepMC3.h
│   ├── LHEFAttributes.h
│   ├── LHEF.h
│   ├── Print.h
│   ├── PrintStreams.h
│   ├── ReaderAscii.h
│   ├── ReaderAsciiHepMC2.h
│   ├── ReaderFactory.h
│   ├── Reader.h
│   ├── ReaderHEPEVT.h
│   ├── ReaderLHEF.h
│   ├── ReaderPlugin.h
│   ├── ReaderRoot.h
│   ├── ReaderRootTree.h
│   ├── Relatives.h
│   ├── Selector.h
│   ├── Setup.h
│   ├── Units.h
│   ├── Version.h
│   ├── WriterAscii.h
│   ├── WriterAsciiHepMC2.h
│   ├── Writer.h
│   ├── WriterHEPEVT.h
│   ├── WriterPlugin.h
│   ├── WriterRoot.h
│   └── WriterRootTree.h
├── lib
│   ├── libHepMC3rootIO_rdict.pcm
│   ├── libHepMC3rootIO.rootmap
│   ├── libHepMC3rootIO.so -> libHepMC3rootIO.so.3
│   ├── libHepMC3rootIO.so.3
│   ├── libHepMC3search.so -> libHepMC3search.so.4
│   ├── libHepMC3search.so.4
│   ├── libHepMC3search-static.a
│   ├── libHepMC3.so -> libHepMC3.so.3
│   ├── libHepMC3.so.3
│   └── libHepMC3-static.a
└── share
├── doc
│   └── HepMC3
│   └── examples
│   ├── BasicExamples
│   │   ├── basic_tree.cc
│   │   ├── CMakeLists.txt
│   │   ├── hepevt_wrapper_example_fortran.f
│   │   ├── hepevt_wrapper_example_main.cc
│   │   ├── HepMC2_reader_example.cc
│   │   └── HepMC3_fileIO_example.cc
│   ├── CMakeLists.txt
│   ├── ConvertExample
│   │   ├── CMakeLists.txt
│   │   ├── cmdline.c
│   │   ├── cmdline.ggo
│   │   ├── cmdline.h
│   │   ├── convert_example.cc
│   │   ├── convert_example_env.sh.in
│   │   ├── include
│   │   │   ├── AnalysisExample.h
│   │   │   ├── gzstream.h
│   │   │   ├── ReaderGZ.h
│   │   │   ├── WriterDOT.h
│   │   │   ├── WriterHEPEVTZEUS.h
│   │   │   └── WriterRootTreeOPAL.h
│   │   └── src
│   │   ├── AnalysisExample.cc
│   │   ├── gzstream.C
│   │   ├── WriterDOT.cc
│   │   ├── WriterHEPEVTZEUS.cc
│   │   └── WriterRootTreeOPAL.cc
│   ├── LHEFExample
│   │   ├── CMakeLists.txt
│   │   ├── LHEF_example_1_cmp.plhe
│   │   ├── LHEF_example_1_out.plhe
│   │   ├── LHEF_example_1.plhe
│   │   ├── LHEF_example_2_cmp.plhe
│   │   ├── LHEF_example_2_out.plhe
│   │   ├── LHEF_example_2.plhe
│   │   ├── LHEF_example_cat.cc
│   │   ├── LHEF_example_cmp.lhe
│   │   ├── LHEF_example_env.sh.in
│   │   └── LHEF_example.lhe
│   ├── Pythia6Example
│   │   ├── CMakeLists.txt
│   │   ├── main63.f
│   │   └── pythia-6.4.28.f
│   ├── Pythia8Example
│   │   ├── cmake
│   │   │   └── Modules
│   │   │   └── FindPythia8.cmake
│   │   ├── CMakeLists.txt
│   │   ├── pythia8_ee_to_Z_to_tautau.conf
│   │   ├── pythia8_example.cc
│   │   ├── pythia8_example_env.sh.in
│   │   └── pythia8_pp_minbias.conf
│   ├── RootIOExample
│   │   ├── CMakeLists.txt
│   │   ├── example.hepmc3
│   │   ├── rootIO_example_env.sh.in
│   │   ├── rootIO_example_read.cc
│   │   └── rootIO_example_write.cc
│   ├── RootIOExample2
│   │   ├── class_example_env.sh.in
│   │   ├── class_example_read.cc
│   │   ├── class_example_write.cc
│   │   ├── CMakeLists.txt
│   │   ├── example.hepmc3
│   │   ├── include
│   │   │   ├── LinkDef.h
│   │   │   ├── myclass_Classes.h
│   │   │   ├── MyClass.h
│   │   │   └── MyRunClass.h
│   │   └── src
│   │   ├── MyClass.cc
│   │   └── MyRunClass.cc
│   ├── RootIOExample3
│   │   ├── CMakeLists.txt
│   │   ├── rootIOTree_example_env.sh.in
│   │   ├── rootIOTree_example_read.cc
│   │   └── rootIOTree_example_write.cc
│   ├── SearchExample
│   │   ├── CMakeLists.txt
│   │   └── src
│   │   └── search_example.cc
│   └── ViewerExample
│   ├── cmake
│   │   └── Modules
│   │   └── FindGraphviz.cmake
│   ├── CMakeLists.txt
│   ├── include
│   │   ├── HepMC3ViewerFrame.h
│   │   └── LinkDef.h
│   └── src
│   ├── HepMC3ViewerFrame.cc
│   └── main.cc
└── HepMC3
└── cmake
├── HepMC3Config.cmake
└── HepMC3Config-version.cmake
32 directories, 136 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment