Skip to content

Instantly share code, notes, and snippets.

@cvson
Last active May 6, 2019 08:11
Show Gist options
  • Save cvson/d889addaf0a8d7e4a600 to your computer and use it in GitHub Desktop.
Save cvson/d889addaf0a8d7e4a600 to your computer and use it in GitHub Desktop.
[Create root class] work with tree #ROOT #TTree #utils
void createMakeClass(char* filename="",char* treename="", char* classname=""){
TFile *pfile = new TFile(filename);
TTree *ptree = (TTree*)pfile->Get(treename);
ptree->MakeClass(classname);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment