- Timestamp:
- Jun 2, 2010, 10:51:38 AM (15 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:
- 0c7ed8
- Parents:
- d466f0
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/vector.cpp
rd466f0 rd690fa 23 23 Vector::Vector() 24 24 { 25 content[0]=content[1]=content[2]=0; 25 content = gsl_vector_calloc (NDIM); 26 gsl_vector_set(content,0,0); 27 gsl_vector_set(content,1,0); 28 gsl_vector_set(content,2,0); 26 29 }; 27 30 … … 32 35 Vector::Vector(const Vector& src) 33 36 { 34 content[0]=src[0]; 35 content[1]=src[1]; 36 content[2]=src[2]; 37 content = gsl_vector_alloc(NDIM); 38 gsl_vector_set(content,0,src[0]); 39 gsl_vector_set(content,1,src[1]); 40 gsl_vector_set(content,2,src[2]); 37 41 } 38 42 … … 41 45 Vector::Vector(const double x1, const double x2, const double x3) 42 46 { 43 content[0]=x1; 44 content[1]=x2; 45 content[2]=x3; 47 content = gsl_vector_alloc(NDIM); 48 gsl_vector_set(content,0,x1); 49 gsl_vector_set(content,1,x2); 50 gsl_vector_set(content,2,x3); 46 51 }; 47 52 … … 52 57 // check for self assignment 53 58 if(&src!=this){ 54 content[0]=src[0];55 content[1]=src[1];56 content[2]=src[2];59 gsl_vector_set(content,0,src[0]); 60 gsl_vector_set(content,1,src[1]); 61 gsl_vector_set(content,2,src[2]); 57 62 } 58 63 return *this; … … 62 67 */ 63 68 Vector::~Vector() { 69 gsl_vector_free(content); 64 70 }; 65 71 … … 365 371 double& Vector::operator[](size_t i){ 366 372 ASSERT(i<=NDIM && i>=0,"Vector Index out of Range"); 367 return content[i];373 return *gsl_vector_ptr (content, i); 368 374 } 369 375 370 376 const double& Vector::operator[](size_t i) const{ 371 377 ASSERT(i<=NDIM && i>=0,"Vector Index out of Range"); 372 return content[i];378 return *gsl_vector_ptr (content, i); 373 379 } 374 380 … … 382 388 383 389 double* Vector::get(){ 384 return content; 390 static double res[NDIM]; 391 res[0]=gsl_vector_get(content,0); 392 res[1]=gsl_vector_get(content,1); 393 res[2]=gsl_vector_get(content,2); 394 return res; 385 395 } 386 396 -
src/vector.hpp
rd466f0 rd690fa 104 104 105 105 private: 106 double content[NDIM];106 gsl_vector* content; 107 107 108 108 };
Note:
See TracChangeset
for help on using the changeset viewer.