public cmCell(string cellName, cellVendorType cellVendor)
 {
     this.cellName   = cellName;
     this.cellVendor = cellVendor;
     this.parameters.overShooting         = false;
     this.recommendations.antennaDownTilt = 0;
 }
 //Constructors
 public cmCell()
 {
     this.cellName   = "";
     this.cellVendor = cellVendorType.Ericsson;
     this.parameters.overShooting         = false;
     this.recommendations.antennaDownTilt = 0;
 }