coherent WaveBurst
Library Reference Guide
home
cWB_docker
git
cWB
library
tools
gwat
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
38
gnetcluster
() :
netcluster
() {
Init
();}
39
gnetcluster
(
netcluster
& nc);
40
virtual
~gnetcluster
();
41
42
// operators
43
gnetcluster
&
operator =
(
const
gnetcluster
& nc){
netcluster::operator=
(nc);
return
*
this
;}
44
gnetcluster
&
operator =
(
const
netcluster
& nc){
netcluster::operator=
(nc);
return
*
this
;}
45
46
private
:
47
48
void
Init
();
49
50
ClassDef(
gnetcluster
,1)
51
};
52
53
#endif
gnetcluster::Init
void Init()
Definition:
gnetcluster.cc:38
gnetcluster::~gnetcluster
virtual ~gnetcluster()
Definition:
gnetcluster.cc:33
netcluster
Definition:
netcluster.hh:101
gnetcluster::operator=
gnetcluster & operator=(const gnetcluster &nc)
Definition:
gnetcluster.hh:43
gnetcluster
Definition:
gnetcluster.hh:32
netcluster::operator=
netcluster & operator=(const netcluster &)
Definition:
netcluster.cc:236
gwavearray.hh
netcluster.hh
gnetcluster::gnetcluster
gnetcluster()
Definition:
gnetcluster.hh:38