// Using MuTyV objects MuTyV s("hello"); // string type value MuTyV x; x = "3.14159626"; // string type value, ASCII representation for Pi double d = x; // x converted to double = 3.141596 x = 314; // x contains the integer value = 314 // Using DVList DVList dvl; dvl("Pi") = 3.14159626; // float value, named Pi dvl("Log2") = 0.30102999; // float value, named Log2 dvl("FileName") = "myfile.fits"; // string value, named myfile.fits // Printing DVList object cout << dvl;