Changeset 776b64 for src/analysis_correlation.cpp
- Timestamp:
- Oct 27, 2009, 4:11:22 PM (16 years ago)
- 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:
- fb73b8
- Parents:
- ad37ab
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/analysis_correlation.cpp
rad37ab r776b64 24 24 * \return Map of doubles with values the pair of the two atoms. 25 25 */ 26 PairCorrelationMap *PairCorrelation( ofstream *out, molecule *mol, element *type1, element *type2 )26 PairCorrelationMap *PairCorrelation( const ofstream *out, const molecule * const mol, const element * const type1, const element * const type2 ) 27 27 { 28 28 PairCorrelationMap *outmap = NULL; … … 61 61 * \return Map of dobules with values as pairs of atom and the vector 62 62 */ 63 CorrelationToPointMap *CorrelationToPoint( ofstream *out, molecule *mol, element *type,Vector *point )63 CorrelationToPointMap *CorrelationToPoint( const ofstream *out, const molecule * const mol, const element * const type, const Vector *point ) 64 64 { 65 65 CorrelationToPointMap *outmap = NULL; … … 76 76 if ((type == NULL) || (Walker->type == type)) { 77 77 distance = Walker->node->Distance(point); 78 outmap->insert ( pair<double, pair<atom *, Vector*> >(distance, pair<atom *,Vector*> (Walker, point) ) );78 outmap->insert ( pair<double, pair<atom *, const Vector*> >(distance, pair<atom *, const Vector*> (Walker, point) ) ); 79 79 } 80 80 } … … 91 91 * \return Map of doubles with values as pairs of atom and the BoundaryTriangleSet that's closest 92 92 */ 93 CorrelationToSurfaceMap *CorrelationToSurface( ofstream *out, molecule *mol, element *type, Tesselation *Surface,LinkedCell *LC )93 CorrelationToSurfaceMap *CorrelationToSurface( ofstream *out, const molecule * const mol, const element * const type, const Tesselation * const Surface, const LinkedCell *LC ) 94 94 { 95 95 … … 124 124 * \param BinStart first bin 125 125 */ 126 double GetBin ( double value, double BinWidth,double BinStart )126 double GetBin ( const double value, const double BinWidth, const double BinStart ) 127 127 { 128 128 double bin =(double) (floor((value - BinStart)/BinWidth)); … … 135 135 * \param *map map to write 136 136 */ 137 void OutputCorrelation( ofstream *file, BinPairMap *map )137 void OutputCorrelation( ofstream *file, const BinPairMap * const map ) 138 138 { 139 139 *file << "# BinStart\tCount" << endl; 140 for (BinPairMap:: iterator runner = map->begin(); runner != map->end(); ++runner) {140 for (BinPairMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) { 141 141 *file << runner->first << "\t" << runner->second << endl; 142 142 } … … 147 147 * \param *map map to write 148 148 */ 149 void OutputPairCorrelation( ofstream *file, PairCorrelationMap *map )149 void OutputPairCorrelation( ofstream *file, const PairCorrelationMap * const map ) 150 150 { 151 151 *file << "# BinStart\tAtom1\tAtom2" << endl; 152 for (PairCorrelationMap:: iterator runner = map->begin(); runner != map->end(); ++runner) {152 for (PairCorrelationMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) { 153 153 *file << runner->first << "\t" << *(runner->second.first) << "\t" << *(runner->second.second) << endl; 154 154 } … … 159 159 * \param *map map to write 160 160 */ 161 void OutputCorrelationToPoint( ofstream *file, CorrelationToPointMap *map )161 void OutputCorrelationToPoint( ofstream *file, const CorrelationToPointMap * const map ) 162 162 { 163 163 *file << "# BinStart\tAtom::x[i]-point.x[i]" << endl; 164 for (CorrelationToPointMap:: iterator runner = map->begin(); runner != map->end(); ++runner) {164 for (CorrelationToPointMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) { 165 165 *file << runner->first; 166 166 for (int i=0;i<NDIM;i++) … … 174 174 * \param *map map to write 175 175 */ 176 void OutputCorrelationToSurface( ofstream *file, CorrelationToSurfaceMap *map )176 void OutputCorrelationToSurface( ofstream *file, const CorrelationToSurfaceMap * const map ) 177 177 { 178 178 *file << "# BinStart\tTriangle" << endl; 179 for (CorrelationToSurfaceMap:: iterator runner = map->begin(); runner != map->end(); ++runner) {179 for (CorrelationToSurfaceMap::const_iterator runner = map->begin(); runner != map->end(); ++runner) { 180 180 *file << runner->first << "\t" << *(runner->second.second) << endl; 181 181 }
Note:
See TracChangeset
for help on using the changeset viewer.