source: src/Filling/Makefile.am@ 4464ef

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_levmar Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 4464ef was df0c80, checked in by Frederik Heber <heber@…>, 9 years ago

FIX: Filling actions did not use minimum distance for tesselated surface.

  • added IsCloseEnoughSurface_FillPredicate which requires a minimum distance to the tesselated surface (but does not care about the sign) and combines it with an additonal IsInsideSurface_FillPredicate.
  • this is now used in regular-grid, surface, and volume fill actions when a non-zero minimum distance is given.
  • TESTFIX: Test is now working.
  • Property mode set to 100644
File size: 4.6 KB
RevLine 
[0d57cbe]1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
[9c2cb3]4FILLINGSOURCE = \
[8f6e2a]5 Filling/Cluster.cpp \
[35ec9c]6 Filling/ClusterInterface.cpp \
[5d81e5]7 Filling/Mesh/CubeMesh.cpp \
[dd3f4f]8 Filling/Mesh/Mesh.cpp \
[d505a3]9 Filling/Filler.cpp \
[595cfd]10 Filling/Generators/NodeGenerator.cpp \
[f61f61]11 Filling/Inserter/Inserter.cpp \
[48ab414]12 Filling/Inserter/RandomInserter.cpp \
[901d87]13 Filling/Inserter/SimpleInserter.cpp \
[93eae36]14 Filling/Inserter/SurfaceInserter.cpp \
[df9f20]15 Filling/Inserter/SurfaceRandomInserter.cpp \
[b00ab1]16 Filling/Predicates/AnyFillPredicate.cpp \
[600a52]17 Filling/Predicates/FillPredicate.cpp \
[df0c80]18 Filling/Predicates/IsCloseEnoughToSurface_FillPredicate.cpp \
[6499b1]19 Filling/Predicates/IsInsideDomain_FillPredicate.cpp \
[7adddc]20 Filling/Predicates/IsInsideSurface_FillPredicate.cpp \
[baac79]21 Filling/Predicates/IsValidInDomain_FillPredicate.cpp \
[83fd7d]22 Filling/Predicates/IsVoidNode_FillPredicate.cpp \
[cae614]23 Filling/Predicates/Ops_FillPredicate.cpp \
24 Filling/Preparators/BaseFillerPreparator.cpp \
[6801f4]25 Filling/Preparators/BoxFillerPreparator.cpp \
[df9f20]26 Filling/Preparators/ShapeSurfaceFillerPreparator.cpp \
[6801f4]27 Filling/Preparators/ShapeVolumeFillerPreparator.cpp
[0d57cbe]28
29FILLINGHEADER = \
[8f6e2a]30 Filling/Cluster.hpp \
[7256a2]31 Filling/ClusterInterface.hpp \
[5d81e5]32 Filling/Mesh/CubeMesh.hpp \
[dd3f4f]33 Filling/Mesh/Mesh.hpp \
[f4cfb6]34 Filling/Mesh/MeshAdaptor.hpp \
[d505a3]35 Filling/Filler.hpp \
[595cfd]36 Filling/Generators/NodeGenerator.hpp \
[901d87]37 Filling/Inserter/Inserter.hpp \
[f61f61]38 Filling/Inserter/InserterBase.hpp \
[48ab414]39 Filling/Inserter/RandomInserter.hpp \
[901d87]40 Filling/Inserter/SimpleInserter.hpp \
[93eae36]41 Filling/Inserter/SurfaceInserter.hpp \
[df9f20]42 Filling/Inserter/SurfaceRandomInserter.hpp \
[9c2cb3]43 Filling/NodeTypes.hpp \
[b00ab1]44 Filling/Predicates/AnyFillPredicate.hpp \
[9c2cb3]45 Filling/Predicates/FillPredicate.hpp \
46 Filling/Predicates/FillPredicateBase.hpp \
[600a52]47 Filling/Predicates/FillPredicate_impl.hpp \
[df0c80]48 Filling/Predicates/IsCloseEnoughToSurface_FillPredicate.hpp \
[6499b1]49 Filling/Predicates/IsInsideDomain_FillPredicate.hpp \
[7adddc]50 Filling/Predicates/IsInsideSurface_FillPredicate.hpp \
[baac79]51 Filling/Predicates/IsValidInDomain_FillPredicate.hpp \
[83fd7d]52 Filling/Predicates/IsVoidNode_FillPredicate.hpp \
53 Filling/Predicates/Ops_FillPredicate.hpp \
[cae614]54 Filling/Predicates/Ops_FillPredicate_impl.hpp \
55 Filling/Preparators/BaseFillerPreparator.hpp \
[6801f4]56 Filling/Preparators/BoxFillerPreparator.hpp \
[df9f20]57 Filling/Preparators/ShapeSurfaceFillerPreparator.hpp \
[6801f4]58 Filling/Preparators/ShapeVolumeFillerPreparator.hpp
[0d57cbe]59
60noinst_LTLIBRARIES += libMolecuilderFilling.la
[214240]61libMolecuilderFilling_la_includedir = $(includedir)/MoleCuilder/
[0d57cbe]62
63nobase_libMolecuilderFilling_la_include_HEADERS = ${FILLINGHEADER}
64
65## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
66## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
67## will therefore be treated as if it were literally part of the target name,
68## and the variable name derived from that.
69## The file extension .cc is recognized by Automake, and makes it produce
70## rules which invoke the C++ compiler to produce a libtool object file (.lo)
71## from each source file. Note that it is not necessary to list header files
72## which are already listed elsewhere in a _HEADERS variable assignment.
73libMolecuilderFilling_la_SOURCES = ${FILLINGSOURCE}
74
75## Instruct libtool to include ABI version information in the generated shared
76## library file (.so). The library ABI version is defined in configure.ac, so
77## that all version information is kept in one place.
78#libMolecuilderFilling_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
79
80## The generated configuration header is installed in its own subdirectory of
81## $(libdir). The reason for this is that the configuration information put
82## into this header file describes the target platform the installed library
83## has been built for. Thus the file must not be installed into a location
84## intended for architecture-independent files, as defined by the Filesystem
85## Hierarchy Standard (FHS).
86## The nodist_ prefix instructs Automake to not generate rules for including
87## the listed files in the distribution on 'make dist'. Files that are listed
88## in _HEADERS variables are normally included in the distribution, but the
89## configuration header file is generated at configure time and should not be
90## shipped with the source tarball.
91#libMolecuilderFilling_libincludedir = $(libdir)/MoleCuilder/include
92#nodist_libMolecuilderFilling_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
93
94## Install the generated pkg-config file (.pc) into the expected location for
95## architecture-dependent package configuration information. Occasionally,
96## pkg-config files are also used for architecture-independent data packages,
97## in which case the correct install location would be $(datadir)/pkgconfig.
98#pkgconfigdir = $(libdir)/pkgconfig
99#pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc
Note: See TracBrowser for help on using the repository browser.