source: src/Fragmentation/Makefile.am@ 91c409

Candidate_v1.7.0 stable
Last change on this file since 91c409 was 999eaf, checked in by Frederik Heber <frederik.heber@…>, 5 years ago

Added EvaluateStabilityAction to estimate a molecule's stability.

  • removes every bond and checks the energies of the products against the educt equipped with enough hydrogen molecules to compensate for the cut bond times its degree.
  • outputs a CSV file with entries per bond.
  • extended HomologyGraph to allow direct use of AtomIdSet, i.e. atomic ids coming from a selection in the World or from the molecule.
  • DOCU: Added subsection on this action to section homology.
  • TEST: Added regression test case.
  • Property mode set to 100644
File size: 6.4 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4FRAGMENTATIONSOURCE = \
5 Fragmentation/Evaluation/StabilityEvaluator.cpp \
6 Fragmentation/Exporters/ExportGraph_ToAtomFragments.cpp \
7 Fragmentation/Exporters/ExportGraph_ToFiles.cpp \
8 Fragmentation/Exporters/ExportGraph_ToJobs.cpp \
9 Fragmentation/Exporters/ExportGraph.cpp \
10 Fragmentation/Exporters/HydrogenPool.cpp \
11 Fragmentation/Exporters/SaturatedBond.cpp \
12 Fragmentation/Exporters/SaturatedFragment.cpp \
13 Fragmentation/Exporters/SaturationDistanceMaximizer.cpp \
14 Fragmentation/Exporters/SphericalPointDistribution.cpp \
15 Fragmentation/Exporters/SphericalPointDistribution_getConnections.cpp \
16 Fragmentation/Exporters/SphericalPointDistribution_getPoints.cpp \
17 Fragmentation/Homology/AtomFragmentsMap.cpp \
18 Fragmentation/Homology/FragmentEdge.cpp \
19 Fragmentation/Homology/FragmentNode.cpp \
20 Fragmentation/Homology/HomologyContainer.cpp \
21 Fragmentation/Homology/HomologyGraph.cpp \
22 Fragmentation/AdaptivityMap.cpp \
23 Fragmentation/BondsPerShortestPath.cpp \
24 Fragmentation/EnergyMatrix.cpp \
25 Fragmentation/ForceMatrix.cpp \
26 Fragmentation/Fragmentation.cpp \
27 Fragmentation/fragmentation_helpers.cpp \
28 Fragmentation/Graph.cpp \
29 Fragmentation/helpers.cpp \
30 Fragmentation/HessianMatrix.cpp \
31 Fragmentation/Interfragmenter.cpp \
32 Fragmentation/KeySet.cpp \
33 Fragmentation/MatrixContainer.cpp \
34 Fragmentation/PowerSetGenerator.cpp \
35 Fragmentation/SortIndex.cpp \
36 Fragmentation/UniqueFragments.cpp
37
38FRAGMENTATIONHEADER = \
39 Fragmentation/Evaluation/StabilityEvaluator.hpp \
40 Fragmentation/Exporters/ExportGraph_ToAtomFragments.hpp \
41 Fragmentation/Exporters/ExportGraph_ToFiles.hpp \
42 Fragmentation/Exporters/ExportGraph_ToJobs.hpp \
43 Fragmentation/Exporters/ExportGraph.hpp \
44 Fragmentation/Exporters/HydrogenPool.hpp \
45 Fragmentation/Exporters/SaturatedBond.hpp \
46 Fragmentation/Exporters/SaturatedFragment.hpp \
47 Fragmentation/Exporters/SaturationDistanceMaximizer.hpp \
48 Fragmentation/Exporters/SphericalPointDistribution.hpp \
49 Fragmentation/Homology/AtomFragmentsMap.hpp \
50 Fragmentation/Homology/FragmentEdge.hpp \
51 Fragmentation/Homology/FragmentNode.hpp \
52 Fragmentation/Homology/HomologyContainer.hpp \
53 Fragmentation/Homology/HomologyGraph.hpp \
54 Fragmentation/AdaptivityMap.hpp \
55 Fragmentation/AtomMask.hpp \
56 Fragmentation/BondsPerShortestPath.hpp \
57 Fragmentation/defs.hpp \
58 Fragmentation/EdgesPerFragment.hpp \
59 Fragmentation/EnergyMatrix.hpp \
60 Fragmentation/ForceMatrix.hpp \
61 Fragmentation/Fragmentation.hpp \
62 Fragmentation/fragmentation_helpers.hpp \
63 Fragmentation/Graph.hpp \
64 Fragmentation/helpers.cpp \
65 Fragmentation/helpers.hpp \
66 Fragmentation/HessianMatrix.hpp \
67 Fragmentation/HydrogenSaturation_enum.hpp \
68 Fragmentation/Interfragmenter.hpp \
69 Fragmentation/KeySet.hpp \
70 Fragmentation/MatrixContainer.hpp \
71 Fragmentation/Mask.hpp \
72 Fragmentation/MoleculeMask.hpp \
73 Fragmentation/PowerSetGenerator.hpp \
74 Fragmentation/SortIndex.hpp \
75 Fragmentation/UniqueFragments.hpp
76
77lib_LTLIBRARIES += \
78 libMolecuilderFragmentation_KeysetsContainer.la
79noinst_LTLIBRARIES += \
80 libMolecuilderFragmentation.la \
81 libMolecuilderFragmentation_getFromKeyset.la \
82 libMolecuilderFragmentation_getFromKeysetStub.la
83libMolecuilderFragmentation_la_includedir = $(includedir)/MoleCuilder/
84libMolecuilderFragmentation_KeysetsContainer_la_includedir = $(includedir)/MoleCuilder/
85libMolecuilderFragmentation_getFromKeyset_la_includedir = $(includedir)/MoleCuilder/
86libMolecuilderFragmentation_getFromKeysetStub_la_includedir = $(includedir)/MoleCuilder/
87libMolecuilderFragmentation_la_CPPFLAGS = $(AM_CPPFLAGS)
88libMolecuilderFragmentation_la_LDFLAGS = $(AM_LDFLAGS)
89libMolecuilderFragmentation_KeysetsContainer_la_LIBADD = \
90 $(CodePatterns_LIBS)
91libMolecuilderFragmentation_la_LIBADD =
92if CONDJOBMARKET
93libMolecuilderFragmentation_la_CPPFLAGS += ${JobMarket_CFLAGS}
94libMolecuilderFragmentation_la_LDFLAGS += $(JobMarket_LDFLAGS)
95libMolecuilderFragmentation_la_LIBADD += $(JobMarket_LIBS)
96endif
97
98nobase_libMolecuilderFragmentation_la_include_HEADERS = ${FRAGMENTATIONHEADER}
99nobase_libMolecuilderFragmentation_KeysetsContainer_la_include_HEADERS = \
100 Fragmentation/KeySetsContainer.hpp \
101 Fragmentation/parseKeySetFile.hpp
102
103## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
104## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
105## will therefore be treated as if it were literally part of the target name,
106## and the variable name derived from that.
107## The file extension .cc is recognized by Automake, and makes it produce
108## rules which invoke the C++ compiler to produce a libtool object file (.lo)
109## from each source file. Note that it is not necessary to list header files
110## which are already listed elsewhere in a _HEADERS variable assignment.
111libMolecuilderFragmentation_la_SOURCES = ${FRAGMENTATIONSOURCE}
112libMolecuilderFragmentation_KeysetsContainer_la_SOURCES = \
113 Fragmentation/KeySetsContainer.cpp \
114 Fragmentation/parseKeySetFile.cpp
115libMolecuilderFragmentation_getFromKeyset_la_SOURCES = \
116 Fragmentation/Homology/HomologyGraph_getFromKeyset.cpp
117libMolecuilderFragmentation_getFromKeysetStub_la_SOURCES = \
118 Fragmentation/Homology/HomologyGraph_getFromKeysetStub.cpp
119
120## Instruct libtool to include ABI version information in the generated shared
121## library file (.so). The library ABI version is defined in configure.ac, so
122## that all version information is kept in one place.
123libMolecuilderFragmentation_KeysetsContainer_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(MOLECUILDER_SO_VERSION)
124
125## The generated configuration header is installed in its own subdirectory of
126## $(libdir). The reason for this is that the configuration information put
127## into this header file describes the target platform the installed library
128## has been built for. Thus the file must not be installed into a location
129## intended for architecture-independent files, as defined by the Filesystem
130## Hierarchy Standard (FHS).
131## The nodist_ prefix instructs Automake to not generate rules for including
132## the listed files in the distribution on 'make dist'. Files that are listed
133## in _HEADERS variables are normally included in the distribution, but the
134## configuration header file is generated at configure time and should not be
135## shipped with the source tarball.
136libMolecuilderFragmentation_KeysetsContainer_libincludedir = $(libdir)/MoleCuilder/include
137#nodist_libMolecuilderFragmentation_KeysetsContainer_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
Note: See TracBrowser for help on using the repository browser.