Fork me on GitHub

Opened 12 years ago

Closed 12 years ago

#152 closed Bug (fixed)

list of input files read wrongly in Analysis_Ex.cpp

Reported by: schaetzel@… Owned by:
Priority: major Milestone:
Component: Delphes code Version:
Keywords: Cc:

Description

Hello,

In Analysis_Ex.cpp:

  while(1)
  {
    if(!infile.good()) break;
    infile >> buffer;
    chainGen.Add(buffer.c_str());
    chainRec.Add(buffer.c_str());
    chainTrig.Add(buffer.c_str());
  }

the break statement has to go behind the following line, otherwise the last file in the list is added twice to the chains.

Cheers,
Sebastian

Change History (1)

comment:1 by favereau, 12 years ago

Resolution: fixed
Status: newclosed

Thanks for this correction, it is now included in the svn trunk and will be included in the next release.

I don't know if you are already aware of the 'release' of delphes 3 beta. It includes many deep changes and imprvovements (speed, modularity, etc ...). Feedback from users like yourself would be invaluable for us.

Jerome

Note: See TracTickets for help on using tickets.