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
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4FILLINGSOURCE = \
5 Filling/Cluster.cpp \
6 Filling/ClusterInterface.cpp \
7 Filling/Mesh/CubeMesh.cpp \
8 Filling/Mesh/Mesh.cpp \
9 Filling/Filler.cpp \
10 Filling/Generators/NodeGenerator.cpp \
11 Filling/Inserter/Inserter.cpp \
12 Filling/Inserter/RandomInserter.cpp \
13 Filling/Inserter/SimpleInserter.cpp \
14 Filling/Inserter/SurfaceInserter.cpp \
15 Filling/Inserter/SurfaceRandomInserter.cpp \
16 Filling/Predicates/AnyFillPredicate.cpp \
17 Filling/Predicates/FillPredicate.cpp \
18 Filling/Predicates/IsCloseEnoughToSurface_FillPredicate.cpp \
19 Filling/Predicates/IsInsideDomain_FillPredicate.cpp \
20 Filling/Predicates/IsInsideSurface_FillPredicate.cpp \
21 Filling/Predicates/IsValidInDomain_FillPredicate.cpp \
22 Filling/Predicates/IsVoidNode_FillPredicate.cpp \
23 Filling/Predicates/Ops_FillPredicate.cpp \
24 Filling/Preparators/BaseFillerPreparator.cpp \
25 Filling/Preparators/BoxFillerPreparator.cpp \
26 Filling/Preparators/ShapeSurfaceFillerPreparator.cpp \
27 Filling/Preparators/ShapeVolumeFillerPreparator.cpp
28
29FILLINGHEADER = \
30 Filling/Cluster.hpp \
31 Filling/ClusterInterface.hpp \
32 Filling/Mesh/CubeMesh.hpp \
33 Filling/Mesh/Mesh.hpp \
34 Filling/Mesh/MeshAdaptor.hpp \
35 Filling/Filler.hpp \
36 Filling/Generators/NodeGenerator.hpp \
37 Filling/Inserter/Inserter.hpp \
38 Filling/Inserter/InserterBase.hpp \
39 Filling/Inserter/RandomInserter.hpp \
40 Filling/Inserter/SimpleInserter.hpp \
41 Filling/Inserter/SurfaceInserter.hpp \
42 Filling/Inserter/SurfaceRandomInserter.hpp \
43 Filling/NodeTypes.hpp \
44 Filling/Predicates/AnyFillPredicate.hpp \
45 Filling/Predicates/FillPredicate.hpp \
46 Filling/Predicates/FillPredicateBase.hpp \
47 Filling/Predicates/FillPredicate_impl.hpp \
48 Filling/Predicates/IsCloseEnoughToSurface_FillPredicate.hpp \
49 Filling/Predicates/IsInsideDomain_FillPredicate.hpp \
50 Filling/Predicates/IsInsideSurface_FillPredicate.hpp \
51 Filling/Predicates/IsValidInDomain_FillPredicate.hpp \
52 Filling/Predicates/IsVoidNode_FillPredicate.hpp \
53 Filling/Predicates/Ops_FillPredicate.hpp \
54 Filling/Predicates/Ops_FillPredicate_impl.hpp \
55 Filling/Preparators/BaseFillerPreparator.hpp \
56 Filling/Preparators/BoxFillerPreparator.hpp \
57 Filling/Preparators/ShapeSurfaceFillerPreparator.hpp \
58 Filling/Preparators/ShapeVolumeFillerPreparator.hpp
59
60noinst_LTLIBRARIES += libMolecuilderFilling.la
61libMolecuilderFilling_la_includedir = $(includedir)/MoleCuilder/
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.