Skip to content
Snippets Groups Projects
Commit 684978ba authored by Ondrej Penc's avatar Ondrej Penc
Browse files

Clarify the comments from the previous commit

parent a49a45c5
No related branches found
No related tags found
No related merge requests found
Pipeline #6633249 passed
......@@ -59,11 +59,11 @@ namespace TrigConf {
size_t phase() const { return m_phase; }
InputType inputType() const { return m_inputType; }
private:
size_t m_inputNumber; // index
std::string m_name; // trigger threshold name
size_t m_bit; // multiplicity bit (a threshold can have more inputs)
size_t m_phase; // double data rate flag
InputType m_inputType; // input tag (for this class only PIT and DIR are accepted for now)
size_t m_inputNumber; // internal Trigger Menu Compiler index
std::string m_name; // trigger threshold name, a label for input to the CTP
size_t m_bit; // number of multiplicity bits of the threshold (it can typically have multiplicity up to 7, so up to 3 bits)
size_t m_phase; // double data rate flag, a parameter saying if the input comes on the rising or falling edge
InputType m_inputType; // input tag, clarifying the origin or a group of the inputs
};
// Register the CTPCORE inputs to the CTPCORE switch matrix
......@@ -77,10 +77,10 @@ namespace TrigConf {
size_t bit() const { return m_bit; }
InputType inputType() const { return m_inputType; }
private:
size_t m_inputNumber; // index
std::string m_name; // trigger threshold name
size_t m_bit; // multiplicity bit (a threshold can have more inputs)
InputType m_inputType; // input tag (for this class only CTPX is accepted for now)
size_t m_inputNumber; // internal Trigger Menu Compiler index
std::string m_name; // trigger threshold name, a label for input to the CTP
size_t m_bit; // number of multiplicity bits of the threshold (it can typically have multiplicity up to 7, so up to 3 bits)
InputType m_inputType; // input tag, clarifying the origin or a group of the inputs
};
class CTPInCounter {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment