A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
spectrum-model.h
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2009 CTTC
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
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, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Nicola Baldo <nbaldo@cttc.es>
19  */
20 
21 #ifndef SPECTRUM_MODEL_H
22 #define SPECTRUM_MODEL_H
23 
24 #include <ns3/simple-ref-count.h>
25 #include <vector>
26 
27 namespace ns3 {
28 
45 struct BandInfo
46 {
47  double fl;
48  double fc;
49  double fh;
50 };
51 
52 
53 typedef std::vector<BandInfo> Bands;
54 typedef uint32_t SpectrumModelUid_t;
55 
63 class SpectrumModel : public SimpleRefCount<SpectrumModel>
64 {
65 public:
66  friend bool operator== (const SpectrumModel& lhs, const SpectrumModel& rhs);
67 
79  SpectrumModel (std::vector<double> centerFreqs);
80 
81 
90  SpectrumModel (Bands bands);
91 
96  size_t GetNumBands () const;
97 
98 
103  SpectrumModelUid_t GetUid () const;
104 
105 
106  Bands::const_iterator Begin () const;
107  Bands::const_iterator End () const;
108 
109 private:
110  Bands m_bands;
111  SpectrumModelUid_t m_uid;
113  static SpectrumModelUid_t m_uidCount;
114 };
115 
116 
117 } // namespace ns3
118 
119 #endif /* SPECTRUM_MODEL_H */
size_t GetNumBands() const
SpectrumModelUid_t m_uid
unique id for a given set of frequencies
SpectrumModelUid_t GetUid() const
double fc
center frequency
static SpectrumModelUid_t m_uidCount
counter to assign m_uids
double fl
lower limit of subband
double fh
upper limit of subband
SpectrumModel(std::vector< double > centerFreqs)
A template-based reference counting class.