Changeset 8c3ac78 in git for converters/root2lhco.cpp
- Timestamp:
- Apr 11, 2018, 6:26:41 PM (7 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 58cfe91, 900ad95
- Parents:
- a670493 (diff), b1d948c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Michele Selvaggi <michele.selvaggi@…> (04/11/18 18:26:41)
- git-committer:
- GitHub <noreply@…> (04/11/18 18:26:41)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
converters/root2lhco.cpp
ra670493 r8c3ac78 56 56 { 57 57 public: 58 LHCOWriter(ExRootTreeReader *treeReader, FILE *outputFile );58 LHCOWriter(ExRootTreeReader *treeReader, FILE *outputFile, string JetBranchName); 59 59 ~LHCOWriter(); 60 60 … … 107 107 //------------------------------------------------------------------------------ 108 108 109 LHCOWriter::LHCOWriter(ExRootTreeReader *treeReader, FILE *outputFile ) :109 LHCOWriter::LHCOWriter(ExRootTreeReader *treeReader, FILE *outputFile, string JetBranchName) : 110 110 fTriggerWord(0), fEventNumber(1), fTreeReader(0), fOutputFile(0), 111 111 fBranchEvent(0), fBranchTrack(0), fBranchTower(0), fBranchPhoton(0), … … 128 128 fBranchMuon = fTreeReader->UseBranch("Muon"); 129 129 // reconstructed jets 130 fBranchJet = fTreeReader->UseBranch( "Jet");130 fBranchJet = fTreeReader->UseBranch(JetBranchName.c_str()); 131 131 // missing transverse energy 132 132 fBranchMissingET = fTreeReader->UseBranch("MissingET"); … … 349 349 350 350 counter = 1; 351 351 352 352 /* 353 353 fItTrack->Reset(); … … 436 436 //--------------------------------------------------------------------------- 437 437 438 pair<string,string> stringToOption(string s) { 439 440 string delimiter = "="; 441 442 vector<string> vs; 443 pair<string,string> res; 444 445 size_t pos = 0; 446 string token; 447 while ((pos = s.find(delimiter)) != std::string::npos) { 448 token = s.substr(0, pos); 449 //cout << token << std::endl; 450 vs.push_back(token); 451 s.erase(0, pos + delimiter.length()); 452 } 453 454 //std::cout << s << std::endl; 455 vs.push_back(s); 456 457 if (vs.size()==2){ 458 res.first=vs[0]; 459 res.second=vs[1]; 460 } 461 462 return res; 463 464 } 465 466 438 467 int main(int argc, char *argv[]) 439 468 { … … 445 474 ExRootTreeReader *treeReader = 0; 446 475 Long64_t entry, allEntries; 447 448 if(argc < 2 || argc > 3) 449 { 450 cerr << " Usage: " << appName << " input_file" << " [output_file]" << endl; 476 string JetBranchName="Jet"; 477 478 if(argc < 2 || argc > 4) 479 { 480 cerr << " Usage: " << appName << " input_file" << " [output_file] [--jet-branch=Jet]" << endl; 451 481 cerr << " input_file - input file in ROOT format," << endl; 452 482 cerr << " output_file - output file in LHCO format," << endl; 453 483 cerr << " with no output_file, or when output_file is -, write to standard output." << endl; 484 cerr << " in order to specify the jet-branch name the output_file cannot be omitted." << endl; 454 485 return 1; 455 486 } 487 488 for(int iarg=3; iarg< argc ; iarg++){ 489 490 string argument=argv[iarg]; 491 pair<string,string> option; 492 option=stringToOption(argument); 493 494 if ( option.first == "--jet-branch" ) { 495 JetBranchName = option.second; 496 cout << " Using the jet branch named " << JetBranchName << endl; 497 } 498 } 499 cout << " Using the default jet branch named " << JetBranchName << endl; 500 456 501 457 502 signal(SIGINT, SignalHandler); … … 494 539 { 495 540 // Create LHC Olympics converter: 496 writer = new LHCOWriter(treeReader, outputFile );541 writer = new LHCOWriter(treeReader, outputFile, JetBranchName); 497 542 498 543 ExRootProgressBar progressBar(allEntries - 1); … … 531 576 } 532 577 } 533 534
Note:
See TracChangeset
for help on using the changeset viewer.