1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
|
// -*- C++ -*-
//
// MultiEventGenerator.cc is a part of ThePEG - Toolkit for HEP Event Generation
// Copyright (C) 1999-2011 Leif Lonnblad
//
// ThePEG is licenced under version 2 of the GPL, see COPYING for details.
// Please respect the MCnet academic guidelines, see GUIDELINES for details.
//
//
// This is the implementation of the non-inlined, non-templated member
// functions of the MultiEventGenerator class.
//
#include "MultiEventGenerator.h"
#include "ThePEG/Interface/ClassDocumentation.h"
#include "ThePEG/Interface/Command.h"
#include "ThePEG/Repository/BaseRepository.h"
#include "ThePEG/Persistency/PersistentOStream.h"
#include "ThePEG/Persistency/PersistentIStream.h"
#include "ThePEG/Utilities/Rebinder.h"
#include "ThePEG/EventRecord/Event.h"
#include "ThePEG/Config/algorithm.h"
#include "ThePEG/Utilities/StringUtils.h"
#include "ThePEG/Handlers/EventHandler.h"
#include "ThePEG/Repository/CurrentGenerator.h"
#include <ctime>
using namespace ThePEG;
MultiEventGenerator::~MultiEventGenerator() {}
IBPtr MultiEventGenerator::clone() const {
return new_ptr(*this);
}
IBPtr MultiEventGenerator::fullclone() const {
return new_ptr(*this);
}
string MultiEventGenerator::removeInterface(string cmd) {
string noun = StringUtils::car(cmd);
IBPtr ip = BaseRepository::getObjectFromNoun(noun);
const InterfaceBase * ifb = BaseRepository::
FindInterface(ip, BaseRepository::getInterfaceFromNoun(noun));
string posarg = BaseRepository::getPosArgFromNoun(noun);
for ( string::size_type i = 0; i < theObjects.size(); ++i ) {
if ( theObjects[i] == ip && theInterfaces[i] == ifb->name() &&
thePosArgs[i] == posarg ) {
theObjects.erase(theObjects.begin() + i);
theInterfaces.erase(theInterfaces.begin() + i);
thePosArgs.erase(thePosArgs.begin() + i);
theValues.erase(theValues.begin() + i);
return "";
}
}
return "No such object/interface defined for this MultiEventGenerator.";
}
string MultiEventGenerator::addInterface(string cmd) {
breakThePEG();
string noun = StringUtils::car(cmd);
IBPtr ip = BaseRepository::getObjectFromNoun(noun);
const InterfaceBase * ifb = BaseRepository::
FindInterface(ip, BaseRepository::getInterfaceFromNoun(noun));
string posarg = BaseRepository::getPosArgFromNoun(noun);
cmd = StringUtils::cdr(cmd);
if ( cmd.empty() ) return "Error: empty argument list.";
StringVector args;
do {
args.push_back(StringUtils::car(cmd, ","));
cmd = StringUtils::cdr(cmd, ",");
} while ( !cmd.empty() );
string ret;
string oldvalue = ifb->exec(*ip, "get", posarg);
try {
for ( string::size_type i = 0; i < args.size(); ++i )
ifb->exec(*ip, "set", args[i]);
}
catch (const Exception & e) {
e.handle();
ret = "Error: " + e.message();
}
ifb->exec(*ip, "set", posarg + " " + oldvalue);
if ( !ret.empty() ) return ret;
for ( string::size_type i = 0; i < theObjects.size(); ++i ) {
if ( theObjects[i] == ip && theInterfaces[i] == ifb->name() &&
thePosArgs[i] == posarg ) {
theValues[i].insert(theValues[i].end(), args.begin(), args.end());
return "";
}
}
theObjects.push_back(ip);
theInterfaces.push_back(ifb->name());
thePosArgs.push_back(posarg);
theValues.push_back(args);
return "";
}
void MultiEventGenerator::doGo(long next, long maxevent, bool tics) {
if ( theObjects.empty() || next < 0 ) {
EventGenerator::doGo(next, maxevent, tics);
return;
}
if ( maxevent >= 0 ) N(maxevent);
vector<const InterfaceBase *> interfaces;
long nargs = 1;
for ( string::size_type i = 0; i < theObjects.size(); ++i ) {
nargs *= theValues[i].size();
interfaces.push_back(BaseRepository::FindInterface(theObjects[i],
theInterfaces[i]));
}
openOutputFiles();
string baseName = runName();
if ( tics ) tic(next - 1, nargs*N());
for ( long iargs = 0; iargs < nargs; ++iargs ) {
ostringstream subname;
subname << baseName << ":" << iargs + 1;
runName(subname.str());
heading(log(), iargs, interfaces, baseName);
heading(out(), iargs, interfaces, baseName);
reset();
for_each(objects(), mem_fun(&InterfacedBase::reset));
init();
initrun();
ieve = next-1;
try {
while ( shoot() ) {
if ( tics ) tic(ieve + iargs*N(), nargs*N());
}
}
catch ( ... ) {
finish();
throw;
}
finish();
}
runName(baseName);
finally();
}
void MultiEventGenerator::
heading(ostream & os, long iargs,
const vector<const InterfaceBase *> & interfaces,
string baseName) const {
long div = 1;
if ( iargs > 0 ) os << endl;
os << ">> " << baseName << " sub-run number " << iargs + 1
<< " using the following interface values:" << endl;
for ( string::size_type i = 0; i < theObjects.size(); ++i ) {
long iarg = (iargs/div)%theValues[i].size();
interfaces[i]->exec(*theObjects[i], "set",
thePosArgs[i] + " " + theValues[i][iarg]);
os << " set " << theObjects[i]->name() << ":" << theInterfaces[i];
if ( !thePosArgs[i].empty() ) os << "[" << thePosArgs[i] << "]";
os << " " << theValues[i][iarg] << endl;
div *= theValues[i].size();
}
os << endl;
}
void MultiEventGenerator::persistentOutput(PersistentOStream & os) const {
os << theObjects << theInterfaces << thePosArgs << theValues;
}
void MultiEventGenerator::persistentInput(PersistentIStream & is, int) {
is >> theObjects >> theInterfaces >> thePosArgs >> theValues;
}
IVector MultiEventGenerator::getReferences() {
IVector ret = EventGenerator::getReferences();
ret.insert(ret.end(), theObjects.begin(), theObjects.end());
return ret;
}
void MultiEventGenerator::rebind(const TranslationMap & trans)
{
for ( string::size_type i = 0; i < theObjects.size(); ++i )
theObjects[i] = trans.translate(theObjects[i]);
EventGenerator::rebind(trans);
}
ClassDescription<MultiEventGenerator>
MultiEventGenerator::initMultiEventGenerator;
// Definition of the static class description member.
void MultiEventGenerator::Init() {
static ClassDocumentation<MultiEventGenerator> documentation
("The ThePEG::MultiEventGenerator class is derived from the "
"ThePEG::EventGenerator and is capable of making "
"several runs with a pre-defined set of parameter and switch values.");
static Command<MultiEventGenerator> interfaceAddInterface
("AddInterface",
"If arguments are given on the form 'object-name:interface-name arg1, "
"arg2, arg3' or 'object-name:vectorinterface-name[pos] arg1, arg2, arg3' "
"the generator will be run three times with the corresonding interface of "
"the given object set to arg1, arg2, arg3 in each run respectively. If "
"another interface with e.g. 4 different arguments, the generator will "
"be run 12 times once for each combination of arguments. If called with "
"an object and interface wich has already been given in a previous call, "
"the new arguments will be added to the previously specified list without "
"checking if any argument is doubled.",
&MultiEventGenerator::addInterface);
static Command<MultiEventGenerator> interfaceRemoveInterface
("RemoveInterface",
"If arguments are given on the form 'object-name:interface-name' and "
"the same interface and object was previously with an "
"<interface>AddInterface</interface>}, the corresponding arguments are "
"removed and the interfaced will be left unchanged during the generation.",
&MultiEventGenerator::removeInterface);
interfaceAddInterface.rank(10.7);
interfaceRemoveInterface.rank(10.5);
}
|