Logo coherent WaveBurst  
Library Reference Guide
Logo
gnetcluster.hh
Go to the documentation of this file.
1 /*
2 # Copyright (C) 2019 Gabriele Vedovato
3 #
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <https://www.gnu.org/licenses/>.
16 */
17 
18 
19 /**********************************************************
20  * Package: graphic wat Class Library
21  * File name: gnecluster.hh
22  * Author: Gabriele Vedovato (vedovato@lnl.infn.it)
23  **********************************************************/
24 
25 
26 #ifndef GNETCLUSTER_HH
27 #define GNETCLUSTER_HH
28 
29 #include "gwavearray.hh"
30 #include "netcluster.hh"
31 
32 class gnetcluster : public netcluster
33 {
34 
35 public:
36 
37  // Constructors
40  virtual ~gnetcluster();
41 
42  // operators
45 
46 private:
47 
48  void Init();
49 
50  ClassDef(gnetcluster,1)
51 };
52 
53 #endif
void Init()
Definition: gnetcluster.cc:38
virtual ~gnetcluster()
Definition: gnetcluster.cc:33
gnetcluster & operator=(const gnetcluster &nc)
Definition: gnetcluster.hh:43
netcluster & operator=(const netcluster &)
Definition: netcluster.cc:236