Reading out std::string from a TTree/TFile

When reading a TTree, you MUST use:
std::string *m_chipIDstr = 0;
or:
std::string *m_chipIDstr = new std::string;
After you close your ROOT files, you should:
delete m_chipIDstr;