Belle II Software development
Chi2BasedEventTimeExtractor Class Referencefinalabstract

Event time extraction based on the principle of arXiv:0810.2241. More...

#include <Chi2BasedEventTimeExtractor.h>

Inheritance diagram for Chi2BasedEventTimeExtractor:
BaseEventTimeExtractor< RecoTrack * > Findlet< AIOTypes... > CompositeProcessingSignalListener ProcessingSignalListener

Public Types

using IOTypes
 Types that should be served to apply on invocation.
 
using IOTypes
 Types that should be served to apply on invocation.
 
using IOVectors
 Vector types that should be served to apply on invocation.
 
using IOVectors
 Vector types that should be served to apply on invocation.
 

Public Member Functions

void apply (std::vector< RecoTrack * > &) override final
 Timing extraction for this findlet.
 
void exposeParameters (ModuleParamList *moduleParamList, const std::string &prefix) override final
 Expose parameters.
 
bool wasSuccessful () const
 Returns true if the last run t0 extraction was successful.
 
bool wasSuccessful () const
 Returns true if the last run t0 extraction was successful.
 
virtual void initialize () override
 Initialize the event t0 store obj ptr.
 
virtual void initialize () override
 Initialize the event t0 store obj ptr.
 
virtual void beginEvent () override
 Create the event t0 store obj ptr.
 
virtual void beginEvent () override
 Create the event t0 store obj ptr.
 
virtual std::string getDescription ()
 Brief description of the purpose of the concrete findlet.
 
virtual std::string getDescription ()
 Brief description of the purpose of the concrete findlet.
 
virtual void apply (ToVector< AIOTypes > &... ioVectors)=0
 Main function executing the algorithm.
 
void beginRun () override
 Receive and dispatch signal for the beginning of a new run.
 
void endRun () override
 Receive and dispatch signal for the end of the run.
 
void terminate () override
 Receive and dispatch Signal for termination of the event processing.
 

Protected Types

using ToVector
 Short hand for ToRangeImpl.
 
using ToVector
 Short hand for ToRangeImpl.
 

Protected Member Functions

void resetEventT0 () const
 Reset the t0 value to cached value if it exists or clear it otherwise.
 
void resetEventT0 () const
 Reset the t0 value to cached value if it exists or clear it otherwise.
 
void addProcessingSignalListener (ProcessingSignalListener *psl)
 Register a processing signal listener to be notified.
 
int getNProcessingSignalListener ()
 Get the number of currently registered listeners.
 

Protected Attributes

StoreObjPtr< EventT0m_eventT0
 Pointer to the storage of the eventwise T0 estimation in the data store.
 
StoreObjPtr< EventT0m_eventT0
 Pointer to the storage of the eventwise T0 estimation in the data store.
 
bool m_wasSuccessful
 Variable to show that the execution was successful.
 
bool m_wasSuccessful
 Variable to show that the execution was successful.
 

Private Types

using Super = BaseEventTimeExtractor<RecoTrack*>
 Type of the base class.
 

Private Attributes

double m_param_maximalExtractedT0 = 100
 Hard cut on this value of extracted times in the positive as well as the negative direction.
 
bool m_param_overwriteExistingEstimation
 Parameter if it is fine to overwrite the current EventT0.
 
bool m_param_overwriteExistingEstimation
 Parameter if it is fine to overwrite the current EventT0.
 
std::optional< EventT0::EventT0Componentm_eventT0Before
 Storage for the event t0 before this module ran.
 
std::optional< EventT0::EventT0Componentm_eventT0Before
 Storage for the event t0 before this module ran.
 
std::vector< ProcessingSignalListener * > m_subordinaryProcessingSignalListeners
 References to subordinary signal processing listener contained in this findlet.
 
bool m_initialized
 Flag to keep track whether initialization happened before.
 
bool m_terminated
 Flag to keep track whether termination happened before.
 
std::string m_initializedAs
 Name of the type during initialisation.
 

Detailed Description

Event time extraction based on the principle of arXiv:0810.2241.

Will set a single candidate and the event t0, if successful. Assumes the tracks to already be fitted with the current event0. Will assume an eventt0 of 0, if none is set.

Definition at line 25 of file Chi2BasedEventTimeExtractor.h.

Member Typedef Documentation

◆ IOTypes [1/2]

using IOTypes
inherited

Types that should be served to apply on invocation.

Definition at line 30 of file Findlet.h.

◆ IOTypes [2/2]

using IOTypes
inherited

Types that should be served to apply on invocation.

Definition at line 30 of file Findlet.h.

◆ IOVectors [1/2]

using IOVectors
inherited

Vector types that should be served to apply on invocation.

Definition at line 53 of file Findlet.h.

◆ IOVectors [2/2]

using IOVectors
inherited

Vector types that should be served to apply on invocation.

Definition at line 53 of file Findlet.h.

◆ Super

Type of the base class.

Definition at line 28 of file Chi2BasedEventTimeExtractor.h.

◆ ToVector [1/2]

using ToVector
protectedinherited

Short hand for ToRangeImpl.

Definition at line 49 of file Findlet.h.

◆ ToVector [2/2]

using ToVector
protectedinherited

Short hand for ToRangeImpl.

Definition at line 49 of file Findlet.h.

Member Function Documentation

◆ addProcessingSignalListener()

void addProcessingSignalListener ( ProcessingSignalListener * psl)
protectedinherited

Register a processing signal listener to be notified.

Definition at line 53 of file CompositeProcessingSignalListener.cc.

56{
58}
Class to extract the event t0.

◆ apply()

void apply ( std::vector< RecoTrack * > & recoTracks)
finaloverride

Timing extraction for this findlet.

Definition at line 26 of file Chi2BasedEventTimeExtractor.cc.

27{
28 m_wasSuccessful = false;
29
30 // Attention: We do *not* set the dirty flag here! We will assume that the last fit has happened with the current event t0.
31 const auto& derivatives = TimeExtractionUtils::getExtractedTimeAndUncertaintyWithFit(recoTracks, false);
32 double extractedDeltaT0 = derivatives.first;
33 double uncertainty = derivatives.second;
34
35 if (std::isnan(extractedDeltaT0)) {
36 B2DEBUG(25, "Extracted delta t0 is nan. Aborting");
37 return;
38 }
39
40 if (m_eventT0->hasEventT0()) {
41 extractedDeltaT0 += m_eventT0->getEventT0();
42 const double oldUncertainty = m_eventT0->getEventT0Uncertainty();
43 uncertainty = std::sqrt(uncertainty * uncertainty + oldUncertainty * oldUncertainty);
44 }
45
46 if (std::abs(extractedDeltaT0) > m_param_maximalExtractedT0) {
47 B2DEBUG(25, "Extracted t0 of " << extractedDeltaT0 << " is too large");
48 return;
49 }
50
51 EventT0::EventT0Component eventT0Component(extractedDeltaT0, uncertainty, Const::CDC, "chi2");
52 m_eventT0->setEventT0(eventT0Component);
53 m_wasSuccessful = true;
54 B2DEBUG(25, "Chi2 gave a result of " << extractedDeltaT0);
55}
double m_param_maximalExtractedT0
Hard cut on this value of extracted times in the positive as well as the negative direction.
static std::pair< double, double > getExtractedTimeAndUncertaintyWithFit(const std::vector< RecoTrack * > &recoTracks, bool setDirtyFlag)
Fit the tracks and extract the chi2 derivatives.

◆ beginEvent() [1/2]

virtual void beginEvent ( )
overridevirtualinherited

Create the event t0 store obj ptr.

Reimplemented from ProcessingSignalListener.

◆ beginEvent() [2/2]

void beginEvent ( )
overridevirtualinherited

Create the event t0 store obj ptr.

Reimplemented from ProcessingSignalListener.

Definition at line 39 of file BaseEventTimeExtractor.icc.h.

46 {
47 Super::beginEvent();
48
49 m_wasSuccessful = false;
50
51 if (not m_eventT0.isValid()) {
52 m_eventT0.create();
53 }
54
55 m_eventT0Before = m_eventT0->getEventT0Component();
56 }

◆ beginRun()

void beginRun ( )
overrideinherited

Receive and dispatch signal for the beginning of a new run.

Definition at line 33 of file CompositeProcessingSignalListener.cc.

◆ endRun()

void endRun ( )
overrideinherited

Receive and dispatch signal for the end of the run.

Definition at line 39 of file CompositeProcessingSignalListener.cc.

◆ exposeParameters()

void exposeParameters ( ModuleParamList * moduleParamList,
const std::string & prefix )
finaloverridevirtual

Expose parameters.

Reimplemented from BaseEventTimeExtractor< RecoTrack * >.

Definition at line 19 of file Chi2BasedEventTimeExtractor.cc.

20{
21 moduleParamList->addParameter(prefixed(prefix, "maximalExtractedT0"), m_param_maximalExtractedT0,
22 "Hard cut on this value of extracted times in the positive as well as the negative direction.",
24}
void addParameter(const std::string &name, T &paramVariable, const std::string &description, const T &defaultValue)
Adds a new parameter to the module list.

◆ getDescription() [1/2]

virtual std::string getDescription ( )
inlinevirtualinherited

Brief description of the purpose of the concrete findlet.

Definition at line 60 of file Findlet.h.

61 {
62 return "(no description)";
63 }

◆ getDescription() [2/2]

virtual std::string getDescription ( )
inlinevirtualinherited

Brief description of the purpose of the concrete findlet.

Definition at line 60 of file Findlet.h.

61 {
62 return "(no description)";
63 }

◆ getNProcessingSignalListener()

int getNProcessingSignalListener ( )
protectedinherited

Get the number of currently registered listeners.

Definition at line 56 of file CompositeProcessingSignalListener.cc.

61{
63}

◆ initialize() [1/2]

virtual void initialize ( )
overridevirtualinherited

Initialize the event t0 store obj ptr.

Reimplemented from ProcessingSignalListener.

◆ initialize() [2/2]

void initialize ( )
overridevirtualinherited

Initialize the event t0 store obj ptr.

Reimplemented from ProcessingSignalListener.

Definition at line 36 of file BaseEventTimeExtractor.icc.h.

39 {
40 Super::initialize();
41 m_eventT0.registerInDataStore();
42 }

◆ resetEventT0()

void resetEventT0 ( ) const
protectedinherited

Reset the t0 value to cached value if it exists or clear it otherwise.

Definition at line 43 of file BaseEventTimeExtractor.icc.h.

60 {
61 if (m_eventT0Before) {
62 m_eventT0->setEventT0(*m_eventT0Before);
63 } else {
64 m_eventT0->clearEventT0();
65 }
66 }

◆ terminate()

void terminate ( )
overrideinherited

Receive and dispatch Signal for termination of the event processing.

Definition at line 42 of file CompositeProcessingSignalListener.cc.

48{
50 psl->terminate();
51 }
53}
void terminate() override
Receive and dispatch Signal for termination of the event processing.

◆ wasSuccessful()

bool wasSuccessful ( ) const
inherited

Returns true if the last run t0 extraction was successful.

Definition at line 30 of file BaseEventTimeExtractor.icc.h.

22 {
23 return m_wasSuccessful;
24 }

Member Data Documentation

◆ m_eventT0 [1/2]

StoreObjPtr<EventT0> m_eventT0
protectedinherited

Pointer to the storage of the eventwise T0 estimation in the data store.

Definition at line 46 of file BaseEventTimeExtractor.dcl.h.

◆ m_eventT0 [2/2]

StoreObjPtr<EventT0> m_eventT0
protectedinherited

Pointer to the storage of the eventwise T0 estimation in the data store.

Definition at line 46 of file BaseEventTimeExtractor.dcl.h.

◆ m_eventT0Before [1/2]

std::optional<EventT0::EventT0Component> m_eventT0Before
privateinherited

Storage for the event t0 before this module ran.

Definition at line 56 of file BaseEventTimeExtractor.dcl.h.

◆ m_eventT0Before [2/2]

std::optional<EventT0::EventT0Component> m_eventT0Before
privateinherited

Storage for the event t0 before this module ran.

Definition at line 56 of file BaseEventTimeExtractor.dcl.h.

◆ m_initialized

bool m_initialized
privateinherited

Flag to keep track whether initialization happened before.

Definition at line 52 of file ProcessingSignalListener.h.

◆ m_initializedAs

std::string m_initializedAs
privateinherited

Name of the type during initialisation.

Definition at line 58 of file ProcessingSignalListener.h.

◆ m_param_maximalExtractedT0

double m_param_maximalExtractedT0 = 100
private

Hard cut on this value of extracted times in the positive as well as the negative direction.

Definition at line 39 of file Chi2BasedEventTimeExtractor.h.

◆ m_param_overwriteExistingEstimation [1/2]

bool m_param_overwriteExistingEstimation
privateinherited

Parameter if it is fine to overwrite the current EventT0.

Definition at line 53 of file BaseEventTimeExtractor.dcl.h.

◆ m_param_overwriteExistingEstimation [2/2]

bool m_param_overwriteExistingEstimation
privateinherited

Parameter if it is fine to overwrite the current EventT0.

Definition at line 53 of file BaseEventTimeExtractor.dcl.h.

◆ m_subordinaryProcessingSignalListeners

std::vector<ProcessingSignalListener*> m_subordinaryProcessingSignalListeners
privateinherited

References to subordinary signal processing listener contained in this findlet.

Definition at line 60 of file CompositeProcessingSignalListener.h.

◆ m_terminated

bool m_terminated
privateinherited

Flag to keep track whether termination happened before.

Definition at line 55 of file ProcessingSignalListener.h.

◆ m_wasSuccessful [1/2]

bool m_wasSuccessful
protectedinherited

Variable to show that the execution was successful.

Definition at line 49 of file BaseEventTimeExtractor.dcl.h.

◆ m_wasSuccessful [2/2]

bool m_wasSuccessful
protectedinherited

Variable to show that the execution was successful.

Definition at line 49 of file BaseEventTimeExtractor.dcl.h.


The documentation for this class was generated from the following files: