Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,4 @@ add_subdirectory(doc)
# Packaging utility
include(HepMCUseCpack)

install(FILES modulemap/hepmc.modulemap DESTINATION "include")
4 changes: 4 additions & 0 deletions HepMC/PdfInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
// Additional PDF information
//////////////////////////////////////////////////////////////////////////

#include <ostream>
#include <istream>
#include <algorithm>

namespace HepMC {

//! The PdfInfo class stores PDF information
Expand Down
5 changes: 2 additions & 3 deletions HepMC/TempParticleMap.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@
// Used by IO classes
//////////////////////////////////////////////////////////////////////////

#include "HepMC/GenParticle.h"
#include <map>

namespace HepMC {

class GenParticle;
namespace HepMC {

//! TempParticleMap is a temporary GenParticle* container used during input.

Expand Down
6 changes: 6 additions & 0 deletions modulemap/hepmc.modulemap
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module HepMC {
export *
requires cplusplus
umbrella "HepMC"
module * { export *}
}