Last active
August 29, 2015 14:19
-
-
Save nsahoo/136dc28d8a7baeba0925 to your computer and use it in GitHub Desktop.
how to access/read only selected branches in ROOT
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
To read only selected branches, | |
fChain->SetBranchStatus("*",0); //disable all other branches | |
fChain->SetBranchStatus("genQ2", 1); //activate this branch name | |
fChain->SetBranchStatus("genCosTheta*", 1); //activate this branch name | |
fChain->SetBranchStatus("genMu*", 1); //activate this branch name | |
fChain->SetBranchAddress("genQ2", &gQ2); | |
fChain->SetBranchAddress("genCosThetaK", &gCosThetaK); | |
fChain->SetBranchAddress("genCosThetaL", &gCosThetaL); | |
fChain->SetBranchAddress("genMupPt", &gmuppt); | |
fChain->SetBranchAddress("genMupEta", &gmupeta); | |
fChain->SetBranchAddress("genMumPt", &gmumpt); | |
fChain->SetBranchAddress("genMumEta", &gmumeta); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment