Page Menu
Home
HEPForge
Search
Configure Global Search
Log In
Files
F19251382
Herwig++.cc
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
973 B
Referenced Files
None
Subscribers
None
Herwig++.cc
View Options
// -*- C++ -*-
//
// Herwig++.cc is a part of Herwig++ - A multi-purpose Monte Carlo event generator
// Copyright (C) 2002-2007 The Herwig Collaboration
//
// Herwig++ is licenced under version 2 of the GPL, see COPYING for details.
// Please respect the MCnet academic guidelines, see GUIDELINES for details.
//
#include
"HerwigRun.h"
#include
<iostream>
#include
"ThePEG/Utilities/Exception.h"
int
main
(
int
argc
,
char
*
argv
[])
{
// HerwigRun's constructor does all the work
try
{
Herwig
::
HerwigRun
hw
(
argc
,
argv
);
return
hw
.
good
()
?
EXIT_SUCCESS
:
EXIT_FAILURE
;
}
catch
(
ThePEG
::
Exception
&
e
)
{
std
::
cerr
<<
argv
[
0
]
<<
": ThePEG::Exception caught. "
<<
"See logfile for details.
\n
"
;
return
EXIT_FAILURE
;
}
catch
(
std
::
exception
&
e
)
{
std
::
cerr
<<
argv
[
0
]
<<
": "
<<
e
.
what
()
<<
'\n'
;
return
EXIT_FAILURE
;
}
catch
(...)
{
std
::
cerr
<<
argv
[
0
]
<<
": Unknown exception caught.
\n
"
;
return
EXIT_FAILURE
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Tue, Sep 30, 5:50 AM (1 d, 12 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
6547400
Default Alt Text
Herwig++.cc (973 B)
Attached To
Mode
rHERWIGHG herwighg
Attached
Detach File
Event Timeline
Log In to Comment