Upgrade to OpenROADM 7.1.0 network models
[transportpce.git] / common / src / main / java / org / opendaylight / transportpce / common / fixedflex / FixedGridConstant.java
1 /*
2  * Copyright © 2020 Orange, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.transportpce.common.fixedflex;
10
11 /**
12  * Constant class related to fixed grid.
13  * @author Orange
14  *
15  */
16 public final class FixedGridConstant {
17
18     private FixedGridConstant() {
19     }
20
21     public static final double GRANULARITY = 6.25;
22     public static final int EFFECTIVE_BITS = 8;
23     public static final double START_EDGE_FREQUENCY = 191.325;
24     public static final int NB_CHANNELS = 96;
25
26 }