23 #define KVEVENT_PART_INDEX_OOB "Particle index %d out of bounds [1,%d]"
27 #include "TClonesArray.h"
30 #include "TRotation.h"
31 #include "TLorentzRotation.h"
32 #include "KVTemplateParticleCondition.h"
33 #include "KVNameValueList.h"
34 #include "TMethodCall.h"
36 #include <KVFrameTransform.h>
37 #include <KVIntegerList.h>
39 #include <TObjString.h>
90 template <
typename Particle>
147 if (
fType == Type::Bad)
154 return static_cast<Particle*
>(*fIter);
159 fIter(static_cast<TIterator*>(nullptr)),
177 ::Warning(
"KVTemplateEvent::Iterator",
"KVTemplateEvent<%s>::Iterator for %s particles requested for event containing %s particles. Iteration is aborted.",
178 Particle::Class()->GetName(), Particle::Class()->GetName(), e->
GetParticleArray()->GetClass()->GetName());
194 ::Warning(
"KVTemplateEvent::Iterator",
"KVTemplateEvent<%s>::Iterator for %s particles requested for event containing %s particles. Iteration is aborted.",
195 Particle::Class()->GetName(), Particle::Class()->GetName(), e.
GetParticleArray()->GetClass()->GetName());
210 ::Warning(
"KVTemplateEvent::Iterator",
"KVTemplateEvent<%s>::Iterator for %s particles requested for event containing %s particles. Iteration is aborted.",
211 Particle::Class()->GetName(), Particle::Class()->GetName(), e->
GetParticleArray()->GetClass()->GetName());
214 if (
fType == Type::OK) {
219 else if (
fType == Type::Group) {
221 return n->BelongsToGroup(grp);
236 ::Warning(
"KVTemplateEvent::Iterator",
"KVTemplateEvent<%s>::Iterator for %s particles requested for event containing %s particles. Iteration is aborted.",
237 Particle::Class()->GetName(), Particle::Class()->GetName(), e.
GetParticleArray()->GetClass()->GetName());
240 if (
fType == Type::OK) {
245 else if (
fType == Type::Group) {
247 return n->BelongsToGroup(grp);
262 template<
typename Po
interType = Particle>
265 return dynamic_cast<PointerType*
>(
current());
267 template<
typename ReferenceType = Particle>
270 return dynamic_cast<ReferenceType&
>(*
current());
272 template<
typename Po
interType = Particle>
275 return dynamic_cast<const PointerType*
>(
current());
277 template<
typename ReferenceType = Particle>
280 return dynamic_cast<const ReferenceType&
>(*
current());
333 if (t != Type::Null) {
335 if (
fType == Type::OK) {
340 else if (
fType == Type::Group) {
342 return n->BelongsToGroup(grp);
366 :
KVEvent(Particle::Class(), mult)
377 #ifdef __WITHOUT_TCA_CONSTRUCTED_AT
378 Particle* tmp = (Particle*) ConstructedAt(mult,
"C");
380 Particle* tmp = (Particle*)
fParticles->ConstructedAt(mult,
"C");
383 Error(
"AddParticle",
"Allocation failure, Mult=%d", mult);
392 if (npart < 1 || npart >
fParticles->GetEntriesFast()) {
393 Error(
"GetParticle", KVEVENT_PART_INDEX_OOB, npart,
398 return (Particle*)((*fParticles)[npart - 1]);
400 virtual Int_t
GetMult(Option_t* opt =
"")
const
424 if (A > 0)
return (Int_t)
GetSum(
"IsIsotope",
"int,int", Form(
"%d,%d", Z, A), opt);
425 return (Int_t)
GetSum(
"IsElement",
"int", Form(
"%d", Z), opt);
441 std::unique_ptr<TObjArray> spec(species.Tokenize(
", "));
442 Int_t nspec = spec->GetEntries();
443 memset(mult, 0, nspec *
sizeof(Int_t));
445 for (
int i = 0; i < nspec; i++) {
446 if (((TObjString*)(*spec)[i])->String() == (*it).GetSymbol()) mult[i] += 1;
450 Double_t
GetSum(
const Char_t* Nucleus_method, Option_t* opt =
"")
462 mt.InitWithPrototype(Particle::Class(), Nucleus_method,
"");
466 if (mt.ReturnType() == TMethodCall::kLong) {
468 for (; it !=
end(); ++it) {
470 mt.Execute(tmp,
"", ret);
474 else if (mt.ReturnType() == TMethodCall::kDouble) {
476 for (; it !=
end(); ++it) {
478 mt.Execute(tmp,
"", ret);
486 Double_t
GetSum(
const Char_t* Nucleus_method,
const Char_t* method_prototype,
const Char_t* args, Option_t* opt =
"")
497 mt.InitWithPrototype(Particle::Class(), Nucleus_method, method_prototype);
501 if (mt.ReturnType() == TMethodCall::kLong) {
503 for (; it !=
end(); ++it) {
505 mt.Execute(tmp, args, ret);
509 else if (mt.ReturnType() == TMethodCall::kDouble) {
511 for (; it !=
end(); ++it) {
513 mt.Execute(tmp, args, ret);
521 void FillHisto(TH1* h,
const Char_t* Nucleus_method, Option_t* opt =
"")
531 mt.InitWithPrototype(Particle::Class(), Nucleus_method,
"");
535 if (mt.ReturnType() == TMethodCall::kLong) {
537 for (; it !=
end(); ++it) {
539 mt.Execute(tmp,
"", ret);
540 h->Fill((Double_t)ret);
543 else if (mt.ReturnType() == TMethodCall::kDouble) {
545 for (; it !=
end(); ++it) {
547 mt.Execute(tmp,
"", ret);
553 void FillHisto(TH1* h,
const Char_t* Nucleus_method,
const Char_t* method_prototype,
const Char_t* args, Option_t* opt =
"")
562 mt.InitWithPrototype(Particle::Class(), Nucleus_method, method_prototype);
566 if (mt.ReturnType() == TMethodCall::kLong) {
568 for (; it !=
end(); ++it) {
570 mt.Execute(tmp, args, ret);
571 h->Fill((Double_t)ret);
574 else if (mt.ReturnType() == TMethodCall::kDouble) {
576 for (; it !=
end(); ++it) {
578 mt.Execute(tmp, args, ret);
584 virtual void Print(Option_t* t =
"")
const
589 std::cout <<
"\nKVEvent with " <<
GetMult(t) <<
" particles :" << std::endl;
590 std::cout <<
"------------------------------------" << std::endl;
594 virtual void ls(Option_t* t =
"")
const
603 Particle* tmp = (Particle*)
fParticles->FindObject(name);
612 if (!tmp) Warning(
"GetParticle",
"Particle not found: %s", group_name);
659 Bool_t ok_iter = (Opt ==
"OK");
660 Bool_t grp_iter = (!ok_iter && Opt.Length());
663 else if (grp_iter)
fIter =
Iterator(
this, Iterator::Type::Group, Opt);
665 return &(*(
fIter++));
691 void DefineGroup(
const Char_t* groupname,
const Char_t* from =
"")
699 (*it).AddGroup(groupname);
709 if (cond->
Test(it.get_const_pointer()))(*it).AddGroup(groupname, from);
721 for (
auto& part : *
this) {
722 part.SetFrame(frame, ft);
737 for (
auto& part : *
this) {
738 part.SetFrame(newframe, oldframe, ft);
750 for (
auto& part : *
this) {
751 part.ChangeFrame(ft, name);
763 for (
auto& part : *
this) {
764 part.ChangeDefaultFrame(newdef, defname);
775 for (
auto& part : *
this) {
776 part.UpdateAllFrames();
780 template<
typename U = Particle>
781 typename std::enable_if<std::is_base_of<KVNucleus, U>::value>::type
806 template<
typename U = Particle>
807 typename std::enable_if<std::is_base_of<KVNucleus, U>::value>::type
815 for (
Iterator it =
begin(); it !=
end(); ++it) mass[i++] = (*it).GetMassGS();
818 template<
typename U = Particle>
819 typename std::enable_if<std::is_base_of<KVNucleus, U>::value, Double_t>::type
840 for (
int i = 1; i <= M; i++) {
844 return CN.GetMassGS() - sumM;
846 template<
typename U = Particle>
847 typename std::enable_if < !std::is_base_of<KVNucleus, U>::value, Double_t >::type
857 template<
typename U = Particle>
858 typename std::enable_if<std::is_base_of<KVNucleus, U>::value, Double_t>::type
877 for (
int i = 1; i <= M; i++) {
881 return CN.GetMassGS() - sumM;
883 template<
typename U = Particle>
884 typename std::enable_if<std::is_base_of<KVNucleus, U>::value,
KVString>::type
900 TString st = (*it).GetSymbol();
901 Int_t pop = TMath::Max(nvl.
GetIntValue(st.Data()), 0);
905 for (Int_t ii = 0; ii < nvl.
GetEntries(); ii += 1) {
907 if (pop == 1) partition += nvl.
GetNameAt(ii);
908 else partition += Form(
"%s(%d)", nvl.
GetNameAt(ii), pop);
909 if (ii < nvl.
GetEntries() - 1) partition +=
" ";
914 template<
typename U = Particle>
915 typename std::enable_if < !std::is_base_of<KVNucleus, U>::value,
KVString >::type
937 (*it).SetFrameName(name);
951 :
it(event, selection)
954 :
it(event, selection)
994 Bool_t ok_iter = (Opt ==
"OK");
995 Bool_t grp_iter = (!ok_iter && Opt.Length());
Abstract base class container for multi-particle events.
KVNameValueList fParameters
general-purpose list of parameters
TClonesArray * fParticles
array of particles in event
const TClonesArray * GetParticleArray() const
virtual Int_t GetMult(Option_t *opt="") const
void SetParameter(const Char_t *name, ValType value) const
Handle a list of positive integers (partition)
void Add(TArrayI *tab)
void Fill(Double_t* tab,Int_t mult);
void Clear(Option_t *option="")
Classe dérivée de TNamed, Reinitialisation de l'object.
void SetPopulation(Int_t pop)
Initialise la population à "pop".
Handles lists of named parameters with different types, a list of KVNamedParameter objects.
virtual void Print(Option_t *opt="") const
Int_t GetIntValue(const Char_t *name) const
void SetValue(const Char_t *name, value_type value)
const Char_t * GetNameAt(Int_t idx) const
Extension of ROOT TString class which allows backwards compatibility with ROOT v3....
Class used for iterating over particles in events.
const PointerType * get_const_pointer() const
Iterator(const KVEvent *e, const KVTemplateParticleCondition< Particle > &selection)
Bool_t IsIterating() const
Particle & operator*() const
const Iterator & operator++()
std::forward_iterator_tag iterator_category
PointerType * get_pointer() const
Iterator(const Iterator &i)
ReferenceType & get_reference() const
Iterator(const KVEvent &e, Type t=Type::All, TString grp="")
std::ptrdiff_t difference_type
Iterator(const KVEvent &e, const KVTemplateParticleCondition< Particle > &selection)
KVTemplateParticleCondition< Particle > fSelection
Bool_t operator==(const Iterator &it) const
Iterator(const KVEvent *e, Type t=Type::All, TString grp="")
Bool_t operator!=(const Iterator &it) const
Particle * current() const
Bool_t AcceptableIteration()
Iterator & operator=(const Iterator &rhs)
void Reset(Type t=Type::Null, TString grp="")
const ReferenceType & get_const_reference() const
void SetIsIterating(Bool_t on=kTRUE)
Base class for event classes (containers for different types of particle objects)
std::enable_if< !std::is_base_of< KVNucleus, U >::value, KVString >::type get_partition_name()
EventIterator ConditionalIterator(const KVTemplateParticleCondition< Particle > &c)
void ResetGetNextParticle() const
void ChangeFrame(const KVFrameTransform &ft, const KVString &name="")
Particle * GetNextParticle(Option_t *opt="") const
std::enable_if< std::is_base_of< KVNucleus, U >::value >::type GetGSMasses(std::vector< Double_t > &mass)
void GetMasses(std::vector< Double_t > &mass)
virtual void ls(Option_t *t="") const
void DefineGroup(const Char_t *groupname, const Char_t *from="")
Int_t GetMultiplicity(Int_t Z, Int_t A=0, Option_t *opt="")
void SetFrame(const Char_t *newframe, const Char_t *oldframe, const KVFrameTransform &ft)
Particle * GetParticle(Int_t npart) const
Iterator GetNextParticleIterator(Option_t *opt) const
KVString GetPartitionName()
KVTemplateEvent(Int_t mult=50)
internal iterator used by GetNextParticle()
Particle * GetParticle(const Char_t *group_name) const
void FillHisto(TH1 *h, const Char_t *Nucleus_method, const Char_t *method_prototype, const Char_t *args, Option_t *opt="")
Double_t GetSum(const Char_t *Nucleus_method, Option_t *opt="")
std::enable_if< !std::is_base_of< KVNucleus, U >::value, Double_t >::type get_channel_qvalue() const
std::enable_if< std::is_base_of< KVNucleus, U >::value, KVString >::type get_partition_name()
std::enable_if< std::is_base_of< KVNucleus, U >::value, Double_t >::type get_channel_qvalue() const
void SetFrame(const Char_t *frame, const KVFrameTransform &ft)
Particle * GetParticleWithName(const Char_t *name) const
void DefineGroup(const Char_t *groupname, KVTemplateParticleCondition< Particle > *cond, const Char_t *from="")
void SetFrameName(const KVString &name)
std::enable_if< std::is_base_of< KVNucleus, U >::value, Double_t >::type GetGSChannelQValue() const
Double_t GetChannelQValue() const
void GetMultiplicities(Int_t mult[], const TString &species, Option_t *opt="")
std::enable_if< std::is_base_of< KVNucleus, U >::value >::type FillIntegerList(KVIntegerList *IL, Option_t *opt)
void FillHisto(TH1 *h, const Char_t *Nucleus_method, Option_t *opt="")
virtual Int_t GetMult(Option_t *opt="") const
void ChangeDefaultFrame(const Char_t *newdef, const Char_t *defname="")
Double_t GetSum(const Char_t *Nucleus_method, const Char_t *method_prototype, const Char_t *args, Option_t *opt="")
virtual void Print(Option_t *t="") const
Bool_t Test(const ParticleType *nuc) const
void Set(const KVString &name, const LambdaFunc &F)
EventGroupIterator(const KVEvent &event, const TString &grp)
EventGroupIterator(const KVEvent *event, const TString &grp)
EventIterator(const KVEvent &event, typename Iterator::Type t=Iterator::Type::All, const TString &grp="")
EventIterator(const KVEvent *event, typename Iterator::Type t=Iterator::Type::All, const TString &grp="")
EventIterator(const KVEvent *event, const KVTemplateParticleCondition< Particle > &selection)
EventIterator(const KVEvent &event, const KVTemplateParticleCondition< Particle > &selection)
EventOKIterator(const KVEvent &event)
EventOKIterator(const KVEvent *event)