⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 irrep.cc

📁 大型并行量子化学软件;支持密度泛函(DFT)。可以进行各种量子化学计算。支持CHARMM并行计算。非常具有应用价值。
💻 CC
字号:
//// irrep.cc//// Modifications are// Copyright (C) 1996 Limit Point Systems, Inc.//// Author: Edward Seidl <seidl@janed.com>// Maintainer: LPS//// This file is part of the SC Toolkit.//// The SC Toolkit is free software; you can redistribute it and/or modify// it under the terms of the GNU Library General Public License as published by// the Free Software Foundation; either version 2, or (at your option)// any later version.//// The SC Toolkit is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the// GNU Library General Public License for more details.//// You should have received a copy of the GNU Library General Public License// along with the SC Toolkit; see the file COPYING.LIB.  If not, write to// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.//// The U.S. Government is granted a limited license as per AL 91-7.///* irrep.cc -- implementation of the point group classes * *      THIS SOFTWARE FITS THE DESCRIPTION IN THE U.S. COPYRIGHT ACT OF A *      "UNITED STATES GOVERNMENT WORK".  IT WAS WRITTEN AS A PART OF THE *      AUTHOR'S OFFICIAL DUTIES AS A GOVERNMENT EMPLOYEE.  THIS MEANS IT *      CANNOT BE COPYRIGHTED.  THIS SOFTWARE IS FREELY AVAILABLE TO THE *      PUBLIC FOR USE WITHOUT A COPYRIGHT NOTICE, AND THERE ARE NO *      RESTRICTIONS ON ITS USE, NOW OR SUBSEQUENTLY. * *  Author: *      E. T. Seidl *      Bldg. 12A, Rm. 2033 *      Computer Systems Laboratory *      Division of Computer Research and Technology *      National Institutes of Health *      Bethesda, Maryland 20892 *      Internet: seidl@alw.nih.gov *      June, 1993 */#include <stdlib.h>#include <util/misc/newstring.h>#include <math/symmetry/pointgrp.h>#include <util/misc/formio.h>using namespace std;using namespace sc;/////////////////////////////////////////////////////////////////////////IrreducibleRepresentation::IrreducibleRepresentation() :  g(0), degen(0), nrot_(0), ntrans_(0), complex_(0), symb(0), rep(0), csymb(0){}IrreducibleRepresentation::IrreducibleRepresentation(  int order, int d, const char *lab, const char *clab) :  g(0), degen(0), nrot_(0), ntrans_(0), complex_(0), symb(0), rep(0), csymb(0){  init(order,d,lab,clab);}IrreducibleRepresentation::IrreducibleRepresentation(  const IrreducibleRepresentation& ir) :  g(0), degen(0), nrot_(0), ntrans_(0), complex_(0), symb(0), rep(0), csymb(0){  *this = ir;}IrreducibleRepresentation::~IrreducibleRepresentation(){  init();}IrreducibleRepresentation&IrreducibleRepresentation::operator=(const IrreducibleRepresentation& ir){  init(ir.g,ir.degen,ir.symb,ir.csymb);  nrot_ = ir.nrot_;  ntrans_ = ir.ntrans_;  complex_ = ir.complex_;    for (int i=0; i < g; i++)    rep[i]=ir.rep[i];    return *this;}voidIrreducibleRepresentation::init(int order, int d, const char *lab,                                const char *clab){  g=order;  degen=d;  ntrans_=nrot_=complex_=0;  delete[] symb;  symb = new_string(lab);  delete[] csymb;  if (clab) csymb = new_string(clab);  else csymb = 0;  if (rep) {    delete[] rep;    rep=0;  }  if (g) {    rep = new SymRep[g];    for (int i=0; i < g; i++)      rep[i].set_dim(d);  }}voidIrreducibleRepresentation::print(ostream& os) const{  if (!g)    return;  int i,d;    os << indent << scprintf("%-5s",symb);  for (i=0; i < g; i++)    os << scprintf(" %6.3f",character(i));  os << " | " << ntrans_ << " t, " << nrot_ << " R\n";  for (d=0; d < nproj(); d++) {    os << indent << "     ";    for (i=0; i < g; i++)      os << scprintf(" %6.3f",p(d,i));    os << endl;  }}/////////////////////////////////////////////////////////////////////////////// Local Variables:// mode: c++// c-file-style: "ETS"// End:

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -