Belle II Software development
CDCTriggerMLPInput Class Reference

Class to hold some intermediate information for the monitoring of the neurotrigger. More...

#include <CDCTriggerMLPInput.h>

Inheritance diagram for CDCTriggerMLPInput:

Public Member Functions

 CDCTriggerMLPInput ()
 default constructor
 
 CDCTriggerMLPInput (std::vector< float > &input, unsigned sector)
 explicit constructor
 
 ~CDCTriggerMLPInput ()
 destructor, empty because we don't allocate memory explicitly.
 
std::vector< float > getInput ()
 get the input vector
 
unsigned getSector ()
 get the sector index
 

Protected Member Functions

 ClassDef (CDCTriggerMLPInput, 1)
 Needed to make the ROOT object storable.
 

Protected Attributes

std::vector< float > m_input
 input vector to go into the MLP
 
unsigned m_sector
 sector index to identify the MLP
 

Detailed Description

Class to hold some intermediate information for the monitoring of the neurotrigger.

Definition at line 20 of file CDCTriggerMLPInput.h.

Constructor & Destructor Documentation

◆ CDCTriggerMLPInput() [1/2]

CDCTriggerMLPInput ( )
inline

default constructor

Definition at line 23 of file CDCTriggerMLPInput.h.

23{};

◆ CDCTriggerMLPInput() [2/2]

CDCTriggerMLPInput ( std::vector< float > &  input,
unsigned  sector 
)
inline

explicit constructor

Definition at line 26 of file CDCTriggerMLPInput.h.

26 :
27 m_input(input), m_sector(sector)
28 {};
std::vector< float > m_input
input vector to go into the MLP
unsigned m_sector
sector index to identify the MLP

◆ ~CDCTriggerMLPInput()

~CDCTriggerMLPInput ( )
inline

destructor, empty because we don't allocate memory explicitly.

Definition at line 31 of file CDCTriggerMLPInput.h.

31{ };

Member Function Documentation

◆ getInput()

std::vector< float > getInput ( )
inline

get the input vector

Definition at line 34 of file CDCTriggerMLPInput.h.

35 {
36 return m_input;
37 }

◆ getSector()

unsigned getSector ( )
inline

get the sector index

Definition at line 39 of file CDCTriggerMLPInput.h.

40 {
41 return m_sector;
42 }

Member Data Documentation

◆ m_input

std::vector<float> m_input
protected

input vector to go into the MLP

Definition at line 46 of file CDCTriggerMLPInput.h.

◆ m_sector

unsigned m_sector
protected

sector index to identify the MLP

Definition at line 48 of file CDCTriggerMLPInput.h.


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