Changeset b9ae4c3 in git for external/fastjet/plugins/SISCone/siscone.cc
- Timestamp:
- Sep 2, 2016, 3:46:14 PM (8 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- fa068d3
- Parents:
- ec5e04b (diff), 23389ff (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:
- Pavel Demin <pavel-demin@…> (09/02/16 15:46:14)
- git-committer:
- GitHub <noreply@…> (09/02/16 15:46:14)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
external/fastjet/plugins/SISCone/siscone.cc
rec5e04b rb9ae4c3 21 21 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA // 22 22 // // 23 // $Revision:: 371$//24 // $Date:: 201 4-09-09 10:05:32 +0200 (Tue, 09 Sep 2014) $//23 // $Revision:: 403 $// 24 // $Date:: 2016-05-19 16:52:05 +0200 (Thu, 19 May 2016) $// 25 25 /////////////////////////////////////////////////////////////////////////////// 26 26 27 //#ifdef HAVE_CONFIG_H28 27 #include "config.h" 29 //#else30 //#define PACKAGE_NAME "SISCone"31 //#define VERSION "3.0.0"32 //#warning "No config.h file available, using preset values"33 //#endif34 35 28 #include "ranlux.h" 36 29 #include "momentum.h" … … 254 247 // print the banner 255 248 if (_banner_ostr != 0){ 249 ios::fmtflags flags_to_restore(_banner_ostr->flags()); 250 256 251 (*_banner_ostr) << "#ooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo" << endl; 257 252 (*_banner_ostr) << "# SISCone version " << setw(28) << left << siscone_version() << "o" << endl; … … 269 264 270 265 _banner_ostr->flush(); 266 _banner_ostr->flags(flags_to_restore); 271 267 } 272 268 } … … 279 275 * return SISCone package name. 280 276 * This is nothing but "SISCone", it is a replacement to the 281 * PACKAGE_NAME string defined in config.h and which is not282 * public by default.277 * SISCONE_PACKAGE_NAME string defined in config.h and which is not 278 * guaranteed to be public. 283 279 * return the SISCone name as a string 284 280 */ 285 281 string siscone_package_name(){ 286 return PACKAGE_NAME;282 return SISCONE_PACKAGE_NAME; 287 283 } 288 284 … … 293 289 */ 294 290 string siscone_version(){ 295 return VERSION;296 } 297 298 } 291 return SISCONE_VERSION; 292 } 293 294 }
Note:
See TracChangeset
for help on using the changeset viewer.