mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-05 07:41:11 +00:00
renamed src to source
This commit is contained in:
parent
4dcaf3959b
commit
4d9c5ab2c1
71 changed files with 7 additions and 3 deletions
8
c_source/pruning/CMakeLists.txt
Normal file
8
c_source/pruning/CMakeLists.txt
Normal file
|
@ -0,0 +1,8 @@
|
|||
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
||||
|
||||
SET(pruneVoids_SRCS pruneVoids.cpp)
|
||||
add_genopt(pruneVoids_SRCS pruneVoids.ggo pruneVoids_conf STRUCTNAME pruneVoids_info)
|
||||
add_executable(pruneVoids ${pruneVoids_SRCS})
|
||||
target_link_libraries(pruneVoids ${ZOB_LIBS})
|
||||
|
||||
install(TARGETS pruneVoids DESTINATION ${VIDE_BIN})
|
1213
c_source/pruning/pruneVoids.cpp
Normal file
1213
c_source/pruning/pruneVoids.cpp
Normal file
File diff suppressed because it is too large
Load diff
44
c_source/pruning/pruneVoids.ggo
Normal file
44
c_source/pruning/pruneVoids.ggo
Normal file
|
@ -0,0 +1,44 @@
|
|||
package "removeEdgeVoids"
|
||||
version "alpha"
|
||||
|
||||
|
||||
option "configFile" - "Configuration filename" string optional
|
||||
|
||||
option "partFile" - "Particle file from generateFromCatalog" string required
|
||||
|
||||
option "extraInfo" - "Extra particle file from generateFromCatalog" string required
|
||||
|
||||
option "voidDesc" - "Void list from ZOBOV" string required
|
||||
|
||||
option "void2Zone" - "Zone file from ZOBOV" string required
|
||||
|
||||
option "partVol" - "Particle volume file from ZOBOV" string required
|
||||
|
||||
option "partAdj" - "Adjacency file from ZOBOV" string required
|
||||
|
||||
option "zone2Part" - "Particle file from ZOBOV" string required
|
||||
option "mockIndex" - "Beginning index of mock particles" int required
|
||||
|
||||
option "numVoids" - "Number of voids" int required
|
||||
|
||||
option "isObservation" - "We are working with observational data" flag off
|
||||
|
||||
option "useComoving" - "Void positions are in comoving coordinates" flag off
|
||||
|
||||
option "omegaM" - "Omega_M for redshift convertion" double optional default="0.27"
|
||||
|
||||
option "zMin" - "Minimum redshift of sample" double optional default="0.0"
|
||||
option "zMax" - "Maximum redshift of sample" double optional default="10.0"
|
||||
|
||||
option "rMin" - "Minimum allowable void radius" double optional default="0.0"
|
||||
|
||||
option "outputDir" - "Directory to place outputs" string required
|
||||
option "sampleName" - "unique string to assign to outputs" string required
|
||||
|
||||
option "periodic" - "Set of edges which are periodic" string optional default="xy"
|
||||
|
||||
option "tolerance" - "Fraction of void width to consider edge" double optional default="1.0"
|
||||
|
||||
option "centralRadFrac" - "Fraction of void radii to consider central region" double optional default="4"
|
||||
|
||||
option "maxCentralDen" - "Maximum central density to accept as a void" double optional default="0.2"
|
Loading…
Add table
Add a link
Reference in a new issue