groups

name language licence
TEventList C++ Other
Add multiple files to a TChain C++ Other
TTree aliases C++ Other
TNtuple simple analysis C++ Other
Maximum likelihood, minuit example C++ Other
Merging trees C++ Other
Convert UInt_t to binary C++ Other
Convert string to integer C++ Other

< 1 2 3 4 5 >



language: C++
licence: Other

TEventList

options: view full snippetsend to code collector
TFile *f = new TFile("hawaii/salt_data_2_fol.root");
TTree *t = (TTree*)f->Get("followers_full");

TEventList *list = new TEventList("list");
t->Draw(">>list", cut_common && "m_mp>180");
cout << list->GetSize() << endl;
	
(Continues...)