Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
copy over developments from Hcal into ecal raw decoder
Browse files Browse the repository at this point in the history
  • Loading branch information
tomeichlersmith committed Nov 30, 2021
1 parent c4c5632 commit 99b48ff
Show file tree
Hide file tree
Showing 2 changed files with 286 additions and 207 deletions.
12 changes: 7 additions & 5 deletions include/Ecal/EcalRawDecoder.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef ECAL_ECALRAWDECODER_H_
#define ECAL_ECALRAWDECODER_H_
#ifndef ECAL_ECALRAWDECODER_H_
#define ECAL_ECALRAWDECODER_H_

//----------//
// LDMX //
Expand All @@ -16,12 +16,13 @@ class EcalRawDecoder : public framework::Producer {
/**
* Constructor
*/
EcalRawDecoder(const std::string& name, framework::Process& process);
EcalRawDecoder(const std::string& n, framework::Process& p)
: framework::Producer(n, p) {}

/**
* Destructor
*/
virtual ~EcalRawDecoder();
virtual ~EcalRawDecoder() = default;

/**
*/
Expand All @@ -40,7 +41,8 @@ class EcalRawDecoder : public framework::Producer {
std::string output_name_;
/// version of HGC ROC we are decoding
int roc_version_;

/// should we translate electronic IDs to detector IDs
bool translate_eid_;
};
} // namespace ecal

Expand Down
Loading

0 comments on commit 99b48ff

Please sign in to comment.