about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/BNT/potentials/@cgpot/cg_mom_to_can.m
blob: 61aa053fa4df223907d1cf08af8cd0337044061d (plain)
1
2
3
4
5
6
7
8
9
10
function pot = cg_mom_to_can(pot)
% CG_MOM_TO_CAN Convert a CG potential from moment to canonical form, if necessary.
% pot = cg_mom_to_can(pot)

if pot.subtype ~= 'c'
  for i=1:pot.dsize
    pot.can{i} = mpot_to_cpot(pot.mom{i});
  end
  pot.subtype = 'c';
end