Changeset 986ed3 for src


Ignore:
Timestamp:
Jul 2, 2010, 1:19:32 PM (15 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:
ce3d2b
Parents:
36166d
Message:

COMPILE_SPEEDUP: Replaced all implicit inclusions of iostream with forwards

Location:
src
Files:
30 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/ActionRegistry.hpp

    r36166d r986ed3  
    99#define ACTIONREGISTRY_HPP_
    1010
    11 #include <iostream>
     11#include <iosfwd>
    1212#include <string>
    1313#include <map>
  • src/Actions/AtomsCalculation_impl.hpp

    r36166d r986ed3  
    1111#include "Actions/AtomsCalculation.hpp"
    1212#include "Actions/Calculation_impl.hpp"
    13 
    14 #include <iostream>
    1513
    1614using namespace std;
  • src/Actions/MapOfActions.cpp

    r36166d r986ed3  
    1717#include <boost/optional.hpp>
    1818#include <boost/program_options.hpp>
     19
     20#include <iostream>
    1921
    2022#include "CommandLineParser.hpp"
  • src/ConfigFileBuffer.hpp

    r36166d r986ed3  
    1717#endif
    1818
    19 #include <iostream>
     19#include <iosfwd>
    2020
    2121/****************************************** forward declarations *****************************/
  • src/Exceptions/CustomException.hpp

    r36166d r986ed3  
    1010
    1111#include <exception>
    12 #include <iostream>
     12#include <iosfwd>
     13#include <string>
    1314
    1415/**
  • src/Helpers/Assert.hpp

    r36166d r986ed3  
    1111#include<sstream>
    1212#include<string>
    13 #include<iostream>
     13#include<iosfwd>
    1414#include<vector>
    1515#include<map>
  • src/Matrix.hpp

    r36166d r986ed3  
    1010
    1111#include <gsl/gsl_matrix.h>
    12 #include <iostream>
     12#include <iosfwd>
    1313#include "defs.hpp"
    1414
  • src/Parser/MpqcParser.hpp

    r36166d r986ed3  
    1111#include "FormatParser.hpp"
    1212
    13 #include <iostream>
     13#include <iosfwd>
    1414
    1515/**
  • src/Parser/PcpParser.hpp

    r36166d r986ed3  
    99#define PCPPARSER_HPP_
    1010
    11 #include <iostream>
     11#include <iosfwd>
    1212#include "Parser/FormatParser.hpp"
    1313
  • src/Patterns/Cacheable.hpp

    r36166d r986ed3  
    1212#include <boost/function.hpp>
    1313#include <boost/shared_ptr.hpp>
    14 #include <iostream>
    1514
    1615#include "Helpers/Assert.hpp"
  • src/Plane.hpp

    r36166d r986ed3  
    1111#include <memory>
    1212#include <vector>
    13 #include <iostream>
     13#include <iosfwd>
    1414#include "Space.hpp"
    1515#include "Exceptions/LinearDependenceException.hpp"
  • src/UIElements/Views/StreamStringView.hpp

    r36166d r986ed3  
    1010
    1111#include <boost/function.hpp>
    12 #include <iostream>
     12#include <iosfwd>
    1313
    1414#include "Views/StringView.hpp"
  • src/atom.hpp

    r36166d r986ed3  
    1818#endif
    1919
    20 #include <iostream>
     20#include <iosfwd>
    2121#include <list>
    2222#include <vector>
  • src/atom_particleinfo.hpp

    r36166d r986ed3  
    1818#endif
    1919
    20 #include <iostream>
     20#include <iosfwd>
    2121
    2222/****************************************** forward declarations *****************************/
  • src/bondgraph.hpp

    r36166d r986ed3  
    1818#endif
    1919
    20 #include <iostream>
     20#include <iosfwd>
    2121
    2222/*********************************************** defines ***********************************/
  • src/boundary.cpp

    r36166d r986ed3  
    2525#include "Box.hpp"
    2626
     27#include <iostream>
    2728#include <iomanip>
    2829
  • src/boundary.hpp

    r36166d r986ed3  
    1212
    1313#include <fstream>
    14 #include <iostream>
     14#include <iosfwd>
    1515
    1616// STL headers
  • src/datacreator.hpp

    r36166d r986ed3  
    1010using namespace std;
    1111
    12 #include <iostream>
     12#include <iosfwd>
    1313
    1414/****************************************** forward declarations *****************************/
  • src/element.hpp

    r36166d r986ed3  
    1616#endif
    1717
    18 #include <iostream>
     18#include <iosfwd>
    1919#include <string>
    2020
  • src/errorlogger.cpp

    r36166d r986ed3  
    99
    1010#include <fstream>
     11#include <iostream>
    1112#include "errorlogger.hpp"
    1213#include "verbose.hpp"
  • src/errorlogger.hpp

    r36166d r986ed3  
    99#define ERRORLOGGER_HPP_
    1010
    11 #include <iostream>
     11#include <iosfwd>
    1212
    1313#include "Patterns/Singleton.hpp"
  • src/gslvector.hpp

    r36166d r986ed3  
    1818#endif
    1919
    20 #include <iostream>
     20#include <iosfwd>
    2121#include <gsl/gsl_vector.h>
    2222
  • src/helpers.cpp

    r36166d r986ed3  
    1010#include "verbose.hpp"
    1111#include "log.hpp"
     12
     13#include <iostream>
    1214
    1315/********************************************** helpful functions *********************************/
  • src/logger.cpp

    r36166d r986ed3  
    99
    1010#include <fstream>
     11#include <iostream>
    1112#include "logger.hpp"
    1213#include "verbose.hpp"
  • src/logger.hpp

    r36166d r986ed3  
    99#define LOGGER_HPP_
    1010
    11 #include <iostream>
     11#include <iosfwd>
    1212
    1313#include "Patterns/Singleton.hpp"
  • src/molecule_graph.cpp

    r36166d r986ed3  
    581581    // From OldGraphNr to CurrentGraphNr ranges an disconnected subgraph
    582582    DoLog(0) && (Log() << Verbose(0) << "Disconnected subgraph ranges from " << OldGraphNr << " to " << DFS.CurrentGraphNr << "." << endl);
    583     LeafWalker->Leaf->Output((ofstream *)&cout);
     583    LeafWalker->Leaf->Output((ofstream *)&(Log() << Verbose(0)));
    584584    DoLog(0) && (Log() << Verbose(0) << endl);
    585585
  • src/periodentafel.hpp

    r36166d r986ed3  
    99#endif
    1010
    11 #include <iostream>
     11#include <iosfwd>
    1212#include <map>
    13 #include <iterator>
    1413
    1514#include "unittests/periodentafelTest.hpp"
  • src/tesselationhelpers.hpp

    r36166d r986ed3  
    2626#include <gsl/gsl_vector.h>
    2727
    28 #include <iostream>
     28#include <iosfwd>
    2929
    3030#include "defs.hpp"
  • src/vector.hpp

    r36166d r986ed3  
    1111#endif
    1212
    13 #include <iostream>
     13#include <iosfwd>
    1414#include <gsl/gsl_vector.h>
    1515
  • src/verbose.hpp

    r36166d r986ed3  
    1818#endif
    1919
    20 #include <iostream>
     20#include <iosfwd>
    2121
    2222/************************************* Class Verbose & Binary *******************************/
Note: See TracChangeset for help on using the changeset viewer.