Problem 1504 - typo in class G4tgrPlaceParameterisation in operator<< in body << used instead of <
Summary: typo in class G4tgrPlaceParameterisation in operator<< in body << used inst...
Status: RESOLVED FIXED
Alias: None
Product: Geant4
Classification: Unclassified
Component: persistency/ascii (show other problems)
Version: 9.6
Hardware: All All
: P5 normal
Assignee: Pedro.Arce
URL:
Depends on:
Blocks:
 
Reported: 2013-07-26 21:58 CEST by a.ramazani
Modified: 2013-08-16 17:57 CEST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this problem.
Description a.ramazani 2013-07-26 21:58:08 CEST
\source\persistency\ascii\src\G4tgrPlaceParameterisation.cc
std::ostream& operator<<(std::ostream& os,const G4tgrPlaceParameterisation& obj)

Error:
  for( size_t ii = 0; ii << obj.theExtraData.size(); ii++ )


Correct:
  for( size_t ii = 0; ii < obj.theExtraData.size(); ii++ )