Geant4 Cross Reference |
1 # - G4muons module build definition << 1 #------------------------------------------------------------------------------ >> 2 # sources.cmake >> 3 # Module : G4muons >> 4 # Package: Geant4.src.G4processes.G4electromagnetic.G4muons >> 5 # >> 6 # Sources description for a library. >> 7 # Lists the sources and headers of the code explicitely. >> 8 # Lists include paths needed. >> 9 # Lists the internal granular and global dependencies of the library. >> 10 # Source specific properties should be added at the end. >> 11 # >> 12 # Generated on : 24/9/2010 >> 13 # >> 14 # $Id: sources.cmake 85247 2014-10-27 08:27:24Z gcosmo $ >> 15 # >> 16 #------------------------------------------------------------------------------ 2 17 >> 18 # List external includes needed. >> 19 include_directories(${CLHEP_INCLUDE_DIRS}) >> 20 >> 21 # List internal includes needed. >> 22 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/management/include) >> 23 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/navigation/include) >> 24 include_directories(${CMAKE_SOURCE_DIR}/source/geometry/volumes/include) >> 25 include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPGeometry/include) >> 26 include_directories(${CMAKE_SOURCE_DIR}/source/global/HEPRandom/include) >> 27 include_directories(${CMAKE_SOURCE_DIR}/source/global/management/include) >> 28 include_directories(${CMAKE_SOURCE_DIR}/source/materials/include) >> 29 include_directories(${CMAKE_SOURCE_DIR}/source/particles/bosons/include) >> 30 include_directories(${CMAKE_SOURCE_DIR}/source/particles/hadrons/barions/include) >> 31 include_directories(${CMAKE_SOURCE_DIR}/source/particles/hadrons/mesons/include) >> 32 include_directories(${CMAKE_SOURCE_DIR}/source/particles/leptons/include) >> 33 include_directories(${CMAKE_SOURCE_DIR}/source/particles/management/include) >> 34 include_directories(${CMAKE_SOURCE_DIR}/source/processes/cuts/include) >> 35 include_directories(${CMAKE_SOURCE_DIR}/source/processes/electromagnetic/standard/include) >> 36 include_directories(${CMAKE_SOURCE_DIR}/source/processes/electromagnetic/utils/include) >> 37 include_directories(${CMAKE_SOURCE_DIR}/source/processes/management/include) >> 38 include_directories(${CMAKE_SOURCE_DIR}/source/track/include) >> 39 >> 40 # 3 # Define the Geant4 Module. 41 # Define the Geant4 Module. 4 geant4_add_module(G4muons << 42 # 5 PUBLIC_HEADERS << 43 include(Geant4MacroDefineModule) 6 G4EnergyLossForExtrapolator.hh << 44 GEANT4_DEFINE_MODULE(NAME G4muons 7 G4ErrorEnergyLoss.hh << 45 HEADERS 8 G4ModifiedMephi.hh << 46 G4EnergyLossForExtrapolator.hh 9 G4MuBetheBlochModel.hh << 47 G4ErrorEnergyLoss.hh 10 G4MuBremsstrahlung.hh << 48 G4MuBetheBlochModel.hh 11 G4MuBremsstrahlungModel.hh << 49 G4MuBremsstrahlung.hh 12 G4MuIonisation.hh << 50 G4MuBremsstrahlungModel.hh 13 G4MuMultipleScattering.hh << 51 G4MuIonisation.hh 14 G4MuPairProduction.hh << 52 G4MuMultipleScattering.hh 15 G4MuPairProductionModel.hh << 53 G4MuPairProduction.hh 16 G4MuonToMuonPairProduction.hh << 54 G4MuPairProductionModel.hh 17 G4MuonToMuonPairProductionModel.hh << 55 G4TablesForExtrapolator.hh 18 G4RiGeAngularGenerator.hh << 56 SOURCES 19 G4RiGeMuPairProductionModel.hh << 57 G4EnergyLossForExtrapolator.cc 20 G4TablesForExtrapolator.hh << 58 G4ErrorEnergyLoss.cc 21 G4ePairProduction.hh << 59 G4MuBetheBlochModel.cc 22 SOURCES << 60 G4MuBremsstrahlung.cc 23 G4EnergyLossForExtrapolator.cc << 61 G4MuBremsstrahlungModel.cc 24 G4ErrorEnergyLoss.cc << 62 G4MuIonisation.cc 25 G4ModifiedMephi.cc << 63 G4MuMultipleScattering.cc 26 G4MuBetheBlochModel.cc << 64 G4MuPairProduction.cc 27 G4MuBremsstrahlung.cc << 65 G4MuPairProductionModel.cc 28 G4MuBremsstrahlungModel.cc << 66 G4TablesForExtrapolator.cc 29 G4MuIonisation.cc << 67 GRANULAR_DEPENDENCIES 30 G4MuMultipleScattering.cc << 68 G4baryons 31 G4MuPairProduction.cc << 69 G4bosons 32 G4MuPairProductionModel.cc << 70 G4cuts 33 G4MuonToMuonPairProduction.cc << 71 G4emstandard 34 G4MuonToMuonPairProductionModel.cc << 72 G4emutils 35 G4RiGeAngularGenerator.cc << 73 G4geometrymng 36 G4RiGeMuPairProductionModel.cc << 74 G4globman 37 G4TablesForExtrapolator.cc << 75 G4leptons 38 G4ePairProduction.cc) << 76 G4materials >> 77 G4mesons >> 78 G4navigation >> 79 G4partman >> 80 G4procman >> 81 G4track >> 82 G4volumes >> 83 GLOBAL_DEPENDENCIES >> 84 G4geometry >> 85 G4global >> 86 G4materials >> 87 G4particles >> 88 G4track >> 89 LINK_LIBRARIES >> 90 ) >> 91 >> 92 # List any source specific properties here 39 93 40 geant4_module_link_libraries(G4muons << 41 PUBLIC << 42 G4emutils << 43 G4globman << 44 G4hepgeometry << 45 G4materials << 46 G4procman << 47 PRIVATE << 48 G4baryons << 49 G4bosons << 50 G4cuts << 51 G4emstandard << 52 G4heprandom << 53 G4leptons << 54 G4partman << 55 G4track) <<