Code structure changes and syntax
Created by: williamfgc
Added utilities: include/utilities and source/utilities and modified all corresponding inclusions.
utilities/format/bp1 utilities/profiling/iochrono
To be added (by @JasonRuonanWang ): include/utilities/comm/dataman source/utilities/comm/dataman
Passing strings: const std::string& str -> long ( 15 characters) string is common or going to STL container const std::string str -> supposed to be a small string ( <= 15 characters ) std::string& str -> string to be modified std::string str -> rarely (if not) used
Other fixes: Functions must all start with upper case.