diff --git a/src/Elements/OpalCyclotron.cpp b/src/Elements/OpalCyclotron.cpp
index 0f1a2fa8bcd1cbaffef0181854f8713951e6483f..7f7f09458f528bb976a73381049326cfce2c8135 100644
--- a/src/Elements/OpalCyclotron.cpp
+++ b/src/Elements/OpalCyclotron.cpp
@@ -80,9 +80,6 @@ OpalCyclotron::OpalCyclotron():
     itsAttr[RFPHI]    = Attributes::makeRealArray
                         ("RFPHI", "Initial phase(s) of the electric field map(s) [deg]");
 
-    itsAttr[TYPE]     = Attributes::makeUpperCaseString
-                        ("TYPE", "Used to identify special cyclotron types");
-
     itsAttr[MINZ]     = Attributes::makeReal
                         ("MINZ","Minimal vertical extent of the machine [mm]",-10000.0);
 
diff --git a/src/Elements/OpalCyclotron.h b/src/Elements/OpalCyclotron.h
index 9b43e685348c6c38b8e015010062cd7d1ee1cec4..7e86a79fc1e6e40700af456d45496fe997d72ab6 100644
--- a/src/Elements/OpalCyclotron.h
+++ b/src/Elements/OpalCyclotron.h
@@ -27,42 +27,37 @@ class OpalCyclotron: public OpalElement {
 public:
 
     /// The attributes of class OpalCyclotron.
-    /// Need to remove common, old TYPE = COMMON, prevents the identification of the fieldmap type in the Cyclotron
-    /// element issue #84
     enum {
-        TYPE,
-        GEOMETRY,  // geometry of boundary
-        CYHARMON,  // The harmonic number of the cyclotron
-        SYMMETRY,  // The symetry of the field
-        RINIT,     // The initial radius [mm]
-        PRINIT,    // The initial radial momentum [pr/p0] []
-        PHIINIT,   // The initial phase [deg]
-        ZINIT,     // The initial z coordinate [mm]
-        PZINIT,    // The initial vertical momentum [pz/p0] []
-        RFFREQ,    // First hamonic of the RF system [MHz]
-        FMAPFN,    // The filename of the mid-plane fieldmap
-        RFMAPFN,   // The filename(s) of the RF fieldmap
-        RFFCFN,    // The filename(s) of coefficients for RF frequency function f(t)
-        RFVCFN,    // The filename(s) of coefficients for RF voltage function v(t)
-        BSCALE,    // A scalar to scale the B-field
-        ESCALE,    // A scalar to scale the RF field
-        RFPHI,     // the initial phase of RF field
-        SUPERPOSE, // whether the electric field map are superposed or not
-        MINZ,      // minimal vertical extend of the machine
-        MAXZ,      // maximal vertical extend of the machine
-        MINR,      // minimal radial extend of the machine
-        MAXR,      // maximal radial extend of the machine
-        FMLOWE,    // minimal energy of the field map
-        FMHIGHE,   // maximal energy of the field map
-        SPIRAL,    // flag whether or not this is a spiral inflector simulation
-        TRIMCOILTHRESHOLD, // minimum B-field for which trim coils are applied
-        TRIMCOIL,  // list of trim coils
+        GEOMETRY = COMMON,  // geometry of boundary
+        CYHARMON,           // The harmonic number of the cyclotron
+        SYMMETRY,           // The symetry of the field
+        RINIT,              // The initial radius [mm]
+        PRINIT,             // The initial radial momentum [pr/p0] []
+        PHIINIT,            // The initial phase [deg]
+        ZINIT,              // The initial z coordinate [mm]
+        PZINIT,             // The initial vertical momentum [pz/p0] []
+        RFFREQ,             // First hamonic of the RF system [MHz]
+        FMAPFN,             // The filename of the mid-plane fieldmap
+        RFMAPFN,            // The filename(s) of the RF fieldmap
+        RFFCFN,             // The filename(s) of coefficients for RF frequency function f(t)
+        RFVCFN,             // The filename(s) of coefficients for RF voltage function v(t)
+        BSCALE,             // A scalar to scale the B-field
+        ESCALE,             // A scalar to scale the RF field
+        RFPHI,              // the initial phase of RF field
+        SUPERPOSE,          // whether the electric field map are superposed or not
+        MINZ,               // minimal vertical extend of the machine
+        MAXZ,               // maximal vertical extend of the machine
+        MINR,               // minimal radial extend of the machine
+        MAXR,               // maximal radial extend of the machine
+        FMLOWE,             // minimal energy of the field map
+        FMHIGHE,            // maximal energy of the field map
+        SPIRAL,             // flag whether or not this is a spiral inflector simulation
+        TRIMCOILTHRESHOLD,  // minimum B-field for which trim coils are applied
+        TRIMCOIL,           // list of trim coils
         SIZE
     };
 
 
-
-    /// Exemplar constructor.
     OpalCyclotron();
 
     virtual ~OpalCyclotron();
@@ -86,4 +81,4 @@ private:
 
 };
 
-#endif // OPAL_OpalCyclotron_HH
\ No newline at end of file
+#endif // OPAL_OpalCyclotron_HH