groups

name language licence
Untitled Snippet Other Other
Command line arguments C++ Other
Read data from a file C++ Other
Merging trees using a TChain C++ Other
Sort a tree C++ Other
TTree Scan column size Other Other
Untitled Snippet Other Other
Event processed Other Other

< 1 2 3 4 5 >



language: C++
licence: Other

Command line arguments

options: view full snippetsend to code collector

	if ( argc != 3 ) {
  		cout << "usage: process.exe <data_file> <run_list>" << endl;
  		return 1;	
	}

	TString data_file = argv[1];
	TString run_list = argv[2];	

	
(Continues...)