update phana tool for USER-PHONON from github
This commit is contained in:
30
tools/phonon/qnodes.cpp
Normal file
30
tools/phonon/qnodes.cpp
Normal file
@ -0,0 +1,30 @@
|
||||
#include "qnodes.h"
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
* Class QNodes stores the high symmetry k-path nodes for a given lattice.
|
||||
* The constructor and the deconstructor simply empties the data.
|
||||
* ---------------------------------------------------------------------------- */
|
||||
QNodes::QNodes()
|
||||
{
|
||||
nodes.clear();
|
||||
ndstr.clear();
|
||||
qs.clear();
|
||||
qe.clear();
|
||||
nqbin.clear();
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
* The constructor and the deconstructor simply empties the data.
|
||||
* ---------------------------------------------------------------------------- */
|
||||
QNodes::~QNodes()
|
||||
{
|
||||
nodes.clear();
|
||||
ndstr.clear();
|
||||
qs.clear();
|
||||
qe.clear();
|
||||
nqbin.clear();
|
||||
|
||||
return;
|
||||
}
|
||||
Reference in New Issue
Block a user