Newer
Older
//************************************************************************//
// //
// Copyright 2013 Bertram Kopf (bertram@ep1.rub.de) //
// Julian Pychy (julian@ep1.rub.de) //
// - Ruhr-Universität Bochum //
// //
// This file is part of Pawian. //
// //
// Pawian is free software: you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation, either version 3 of the License, or //
// (at your option) any later version. //
// //
// Pawian is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with Pawian. If not, see <http://www.gnu.org/licenses/>. //
// //
//************************************************************************//
// EvtDataBaseList class definition file. -*- C++ -*-
// Copyright 2012 Bertram Kopf
#include "qft++/topincludes/relativistic-quantum-mechanics.hh"
#include <map>
#include "Utils/PawianCollectionUtils.hh"
#include "PwaUtils/DataUtils.hh"
Julian Pychy
committed
#include "PwaUtils/AbsChannelEnv.hh"
typedef std::map<unsigned short, std::map<Id3StringType, complex<double> > > mapShortInt3Complex;
typedef std::map<unsigned short, std::map<Id1StringType, complex<double> > > mapShortInt1Complex;
typedef std::map<unsigned short, double> mapShortDouble;
typedef std::map<unsigned short, Vector4<double> > mapShort4Vec;
typedef std::map<unsigned short, map<Id2StringType, complex<double> > > mapShortInt2Complex;
Bertram Kopf
committed
typedef std::map<unsigned short, map<unsigned short, map<Id3StringType, complex<double> > > > mapShortShortInt3Complex;
mapShortInt3Complex WignerDIdId3;
mapShortInt1Complex WignerDIdId1;
mapShortDouble DoubleId;
mapShortDouble DoubleMassId;
mapShort4Vec FourVecsId;
mapShortInt2Complex Complex2Spin;
mapShortShortInt3Complex ComplexLS3Spin;
Bertram Kopf
committed
mapShortShortInt3Complex ComplexN3Spin;
class EvtDataBaseList {
public:
Julian Pychy
committed
EvtDataBaseList(ChannelID channelID);
virtual ~EvtDataBaseList();
void read(EventList& evtListData, EventList& evtListMc);
const std::vector<EvtData*> getDataVecs() const { return _evtDataList; }
const std::vector<EvtData*> getMcVecs() const { return _mcDataList; }
double NoOfWeightedDataEvts() const {return _noOfWeightedDataEvts;}
double NoOfWeightedMcEvts() const {return _noOfWeightedMcEvts;}
virtual void read4Vecs(EventList& evtList, std::vector<EvtData*>& theEvtList, double& evtWeightSum, int maxEvts, int startNo);
virtual EvtData* convertEvent(Event* theEvent, int evtNo=1);
static double noOfWeightedEvts(EventList& evtList, ChannelID channelID, int maxEvts, int startNo);
Julian Pychy
committed
ChannelID _channelID;
std::vector<EvtData*> _evtDataList;
std::vector<EvtData*> _mcDataList;
virtual std::string getName(std::vector<Particle*>& theVec);
double _noOfWeightedDataEvts;
double _noOfWeightedMcEvts;
std::vector<Particle*> _finalStateParticles;