// @(#)root/tmva $Id$ // Author: Andreas Hoecker, Peter Speckmayer, Joerg Stelzer, Helge Voss /********************************************************************************** * Project: TMVA - a Root-integrated toolkit for multivariate data analysis * * Package: TMVA * * Class : Event * * Web : http://tmva.sourceforge.net * * * * Description: * * Event container * * * * Authors (alphabetical): * * Andreas Hoecker - CERN, Switzerland * * Joerg Stelzer - CERN, Switzerland * * Peter Speckmayer - CERN, Switzerland * * Helge Voss - MPI-K Heidelberg, Germany * * * * Copyright (c) 2005: * * CERN, Switzerland * * U. of Victoria, Canada * * MPI-K Heidelberg, Germany * * LAPP, Annecy, France * * * * Redistribution and use in source and binary forms, with or without * * modification, are permitted according to the terms listed in LICENSE * * (http://mva.sourceforge.net/license.txt) * **********************************************************************************/ #ifndef ROOT_TMVA_Event #define ROOT_TMVA_Event #include #include #ifndef ROOT_Rtypes #include "Rtypes.h" #endif #ifndef ROOT_TMVA_Types #include "TMVA/Types.h" #endif class TCut; namespace TMVA { class Event; std::ostream& operator<<( std::ostream& os, const Event& event ); class Event { friend std::ostream& operator<<( std::ostream& os, const Event& event ); public: // constructors Event(); Event( const Event& ); explicit Event( const std::vector& values, const std::vector& targetValues, const std::vector& spectatorValues, UInt_t theClass = 0, Double_t weight = 1.0, Double_t boostweight = 1.0 ); explicit Event( const std::vector& values, const std::vector& targetValues, UInt_t theClass = 0, Double_t weight = 1.0, Double_t boostweight = 1.0 ); explicit Event( const std::vector&, UInt_t theClass, Double_t weight = 1.0, Double_t boostweight = 1.0 ); explicit Event( const std::vector*&, UInt_t nvar ); ~Event(); // accessors Bool_t IsDynamic() const {return fDynamic; } Double_t GetWeight() const { return fWeight*fBoostWeight; } Double_t GetOriginalWeight() const { return fWeight; } Double_t GetBoostWeight() const { return TMath::Max(Double_t(0.0001),fBoostWeight); } UInt_t GetClass() const { return fClass; } UInt_t GetNVariables() const; UInt_t GetNTargets() const; UInt_t GetNSpectators() const; const std::vector* GetVariableArrangement() const { return fVariableArrangement; } Float_t GetValue( UInt_t ivar) const; const std::vector& GetValues() const; Float_t GetTarget( UInt_t itgt ) const { return fTargets.at(itgt); } std::vector& GetTargets() const { return fTargets; } Float_t GetSpectator( UInt_t ivar) const; std::vector& GetSpectators() const { return fSpectators; } void ScaleWeight ( Double_t s ) { fWeight*=s; } void SetWeight ( Double_t w ) { fWeight=w; } void SetBoostWeight ( Double_t w ) { fBoostWeight=w; } void ScaleBoostWeight ( Double_t s ) { fBoostWeight *= s; } void SetClass ( UInt_t t ) { fClass=t; } void SetVal ( UInt_t ivar, Float_t val ); void SetTarget ( UInt_t itgt, Float_t value ); void SetSpectator ( UInt_t ivar, Float_t value ); void SetVariableArrangement( std::vector* const m ) const; static void ClearDynamicVariables(); void CopyVarValues( const Event& other ); void Print ( std::ostream & o ) const; private: mutable std::vector fValues; // the event values mutable std::vector* fValuesDynamic; // the event values mutable std::vector fTargets; // target values for regression mutable std::vector fSpectators; // "visisting" variables which are never used for any calculation mutable std::vector* fVariableArrangement; // needed for MethodCategories, where we can train on other than the main variables UInt_t fClass; // signal or background type: signal=1, background=0 Double_t fWeight; // event weight (product of global and individual weights) Double_t fBoostWeight; // internal weight to be set by boosting algorithm Bool_t fDynamic; // is set when the dynamic values are taken }; } #endif