Changeset aafd77


Ignore:
Timestamp:
Jul 2, 2010, 2:58:40 PM (14 years ago)
Author:
Tillmann Crueger <crueger@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
Children:
fee079
Parents:
962d8d
git-author:
Tillmann Crueger <crueger@…> (07/02/10 14:55:52)
git-committer:
Tillmann Crueger <crueger@…> (07/02/10 14:58:40)
Message:

Removed all inclusions of GSL-Headers from molecule.hpp

Location:
src
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • src/atom_trajectoryparticle.hpp

    r962d8d raafd77  
    2020#include <fstream>
    2121
     22#include <gsl/gsl_inline.h>
    2223#include <gsl/gsl_randist.h>
    2324
  • src/molecule.cpp

    r962d8d raafd77  
    55 */
    66
     7#ifdef HAVE_CONFIG_H
     8#include <config.h>
     9#endif
     10
    711#include "Helpers/MemDebug.hpp"
    812
     
    1014#include <boost/bind.hpp>
    1115#include <boost/foreach.hpp>
     16
     17#include <gsl/gsl_inline.h>
     18#include <gsl/gsl_heapsort.h>
    1219
    1320#include "World.hpp"
  • src/molecule.hpp

    r962d8d raafd77  
    99/*********************************************** includes ***********************************/
    1010
    11 // include config.h
    1211#ifdef HAVE_CONFIG_H
    1312#include <config.h>
    1413#endif
    15 
    16 // GSL headers
    17 #include <gsl/gsl_eigen.h>
    18 #include <gsl/gsl_heapsort.h>
    19 #include <gsl/gsl_linalg.h>
    20 #include <gsl/gsl_matrix.h>
    21 #include <gsl/gsl_multimin.h>
    22 #include <gsl/gsl_vector.h>
    23 #include <gsl/gsl_randist.h>
    2414
    2515//// STL headers
  • src/molecule_dynamics.cpp

    r962d8d raafd77  
    1919#include "Plane.hpp"
    2020#include "ThermoStatContainer.hpp"
     21
     22#include <gsl/gsl_matrix.h>
     23#include <gsl/gsl_vector.h>
     24#include <gsl/gsl_linalg.h>
    2125
    2226/************************************* Functions for class molecule *********************************/
  • src/molecule_geometry.cpp

    r962d8d raafd77  
    55 *      Author: heber
    66 */
     7
     8#ifdef HAVE_CONFIG_H
     9#include <config.h>
     10#endif
    711
    812#include "Helpers/MemDebug.hpp"
     
    2226#include "Box.hpp"
    2327#include <boost/foreach.hpp>
     28
     29#include <gsl/gsl_eigen.h>
     30#include <gsl/gsl_multimin.h>
    2431
    2532
  • src/molecule_graph.cpp

    r962d8d raafd77  
    55 *      Author: heber
    66 */
     7
     8#ifdef HAVE_CONFIG_H
     9#include <config.h>
     10#endif
    711
    812#include "Helpers/MemDebug.hpp"
  • src/moleculelist.cpp

    r962d8d raafd77  
    55 */
    66
     7#ifdef HAVE_CONFIG_H
     8#include <config.h>
     9#endif
     10
    711#include "Helpers/MemDebug.hpp"
    812
    913#include <cstring>
     14
     15#include <gsl/gsl_inline.h>
     16#include <gsl/gsl_heapsort.h>
    1017
    1118#include "World.hpp"
Note: See TracChangeset for help on using the changeset viewer.