📄 array.h
字号:
//// array.h//// Copyright (C) 1996 Limit Point Systems, Inc.//// Author: Curtis Janssen <cljanss@limitpt.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.//#ifdef __GNUC__#pragma interface#endif#ifndef _chemistry_qc_intv3_array_h#define _chemistry_qc_intv3_array_h#include <iostream>namespace sc {class IntV3Arraydouble2 { private: int n1_, n2_; double **data_; public: IntV3Arraydouble2(); ~IntV3Arraydouble2(); void set_dim(int n1, int n2); double &operator()(int i,int j) { return data_[i][j]; } void print(std::ostream &); int nbyte() const;};class IntV3Arraydouble3 { private: int n1_, n2_, n3_; double ***data_; public: IntV3Arraydouble3(); ~IntV3Arraydouble3(); void set_dim(int n1, int n2, int n3); double *operator()(int i,int j) { return data_[i][j]; } double &operator()(int i,int j,int k) { return data_[i][j][k]; } void print(std::ostream &); int nbyte() const;};class IntV3Arraydoublep2 { private: int n1_, n2_; double ***data_; public: IntV3Arraydoublep2(); ~IntV3Arraydoublep2(); void set_dim(int n1, int n2); double *&operator()(int i,int j) { return data_[i][j]; } void print(std::ostream &); int nbyte() const;};class IntV3Arraydoublep3 { private: int n1_, n2_, n3_; double ****data_; public: IntV3Arraydoublep3(); ~IntV3Arraydoublep3(); int n1() const { return n1_; } int n2() const { return n2_; } int n3() const { return n3_; } void delete_data(); void set_dim(int n1, int n2, int n3); double *&operator()(int i,int j,int k) { return data_[i][j][k]; } double **operator()(int i,int j) { return data_[i][j]; } double ***operator()(int i) { return data_[i]; } void print(std::ostream &); int nbyte() const;};class IntV3Arraydoublep4 { private: int n1_, n2_, n3_, n4_; double *****data_; public: IntV3Arraydoublep4(); ~IntV3Arraydoublep4(); void set_dim(int n1, int n2, int n3, int n4); double *&operator()(int i,int j,int k,int l) { return data_[i][j][k][l]; } void print(std::ostream &); int nbyte() const; double *****data() { return data_; }};class IntV3Arrayint3 { private: int n1_, n2_, n3_; int ***data_; public: IntV3Arrayint3(); ~IntV3Arrayint3(); void set_dim(int n1, int n2, int n3); int &operator()(int i,int j,int k) { return data_[i][j][k]; } int *operator()(int i,int j) { return data_[i][j]; } int **operator()(int i) { return data_[i]; } void print(std::ostream &); int nbyte() const;};class IntV3Arrayint4 { private: int n1_, n2_, n3_, n4_; int ****data_; public: IntV3Arrayint4(); ~IntV3Arrayint4(); void set_dim(int n1, int n2, int n3, int n4); int &operator()(int i,int j,int k,int l) { return data_[i][j][k][l]; } void print(std::ostream &); int nbyte() const;};}#endif// Local Variables:// mode: c++// c-file-style: "CLJ"// End:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -