@@ -28,7 +28,7 @@ Cylinder::valid_keys = {
2828 " rcylmin" ,
2929 " rcylmax" ,
3030 " acyl" ,
31- " afac " ,
31+ " bias " ,
3232 " hcyl" ,
3333 " sech2" ,
3434 " hexp" ,
@@ -108,7 +108,7 @@ Cylinder::Cylinder(Component* c0, const YAML::Node& conf, MixtureBasis *m) :
108108 ncylr = 2000 ;
109109
110110 acyl = 0.01 ;
111- afac = 1.0 ;
111+ bias = 1.0 ;
112112 lmaxfid = 128 ;
113113 nmaxfid = 64 ;
114114 mmax = 6 ;
@@ -182,7 +182,7 @@ Cylinder::Cylinder(Component* c0, const YAML::Node& conf, MixtureBasis *m) :
182182 // Make the empirical orthogonal basis instance
183183 //
184184 ortho = std::make_shared<CylEXP>
185- (nmaxfid, lmaxfid, mmax, nmax, afac *acyl, hcyl, ncylodd, cachename);
185+ (nmaxfid, lmaxfid, mmax, nmax, bias *acyl, hcyl, ncylodd, cachename);
186186
187187 // Set azimuthal harmonic order restriction?
188188 //
@@ -339,7 +339,7 @@ Cylinder::Cylinder(Component* c0, const YAML::Node& conf, MixtureBasis *m) :
339339 << std::endl << sep << " rcylmin=" << rcylmin
340340 << std::endl << sep << " rcylmax=" << rcylmax
341341 << std::endl << sep << " acyl=" << acyl
342- << std::endl << sep << " afac =" << afac
342+ << std::endl << sep << " bias =" << bias
343343 << std::endl << sep << " hcyl=" << hcyl
344344 << std::endl << sep << " precond=" << precond
345345 << std::endl << sep << " pcavar=" << pcavar
@@ -369,7 +369,7 @@ Cylinder::Cylinder(Component* c0, const YAML::Node& conf, MixtureBasis *m) :
369369 << std::endl << sep << " rcylmin=" << rcylmin
370370 << std::endl << sep << " rcylmax=" << rcylmax
371371 << std::endl << sep << " acyl=" << acyl
372- << std::endl << sep << " afac =" << afac
372+ << std::endl << sep << " bias =" << bias
373373 << std::endl << sep << " hcyl=" << hcyl
374374 << std::endl << sep << " precond=" << precond
375375 << std::endl << sep << " pcavar=" << pcavar
@@ -426,7 +426,7 @@ void Cylinder::initialize()
426426 if (conf[" rcylmax" ]) rcylmax = conf[" rcylmax" ].as <double >();
427427
428428 if (conf[" acyl" ]) acyl = conf[" acyl" ].as <double >();
429- if (conf[" afac " ]) afac = conf[" afac " ].as <double >();
429+ if (conf[" bias " ]) bias = conf[" bias " ].as <double >();
430430 if (conf[" hcyl" ]) hcyl = conf[" hcyl" ].as <double >();
431431 if (conf[" sech2" ]) sech2 = conf[" sech2" ].as <bool >();
432432 if (conf[" hexp" ]) hexp = conf[" hexp" ].as <double >();
@@ -1880,7 +1880,7 @@ void Cylinder::writeCovarH5Params(HighFive::File& file)
18801880 file.createAttribute <double >(" rcylmin" , HighFive::DataSpace::From (rcylmin)).write (rcylmin);
18811881 file.createAttribute <double >(" rcylmax" , HighFive::DataSpace::From (rcylmax)).write (rcylmax);
18821882 file.createAttribute <double >(" acyl" , HighFive::DataSpace::From (acyl)).write (acyl);
1883- file.createAttribute <double >(" afac " , HighFive::DataSpace::From (afac )).write (afac );
1883+ file.createAttribute <double >(" bias " , HighFive::DataSpace::From (bias )).write (bias );
18841884 file.createAttribute <double >(" hcyl" , HighFive::DataSpace::From (hcyl)).write (hcyl);
18851885}
18861886
0 commit comments