Skip to content

Commit

Permalink
code-format
Browse files Browse the repository at this point in the history
  • Loading branch information
smuzaffar committed Jul 29, 2021
1 parent c71a589 commit 77f04ba
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CaloOnlineTools/HcalOnlineDb/interface/XMLLUTLoader.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class XMLLUTLoader : public XMLDOMBlock {
XMLLUTLoader();
XMLLUTLoader(XMLProcessor::loaderBaseConfig* config,
std::string templateBase = "HCAL_TRIG_PRIM_LOOKUP_TABLE.XMLloader.template");
XMLLUTLoader(const XMLLUTLoader&) = delete; // stop default
XMLLUTLoader(const XMLLUTLoader&) = delete; // stop default
const XMLLUTLoader& operator=(const XMLLUTLoader&) = delete; // stop default
~XMLLUTLoader() override;

Expand Down
2 changes: 1 addition & 1 deletion EventFilter/GctRawToDigi/src/GctUnpackCollections.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class GctUnpackCollections {
GctUnpackCollections(edm::Event& event);

/// deliberately not implemented!
GctUnpackCollections(const GctUnpackCollections&) = delete; ///< Copy ctor
GctUnpackCollections(const GctUnpackCollections&) = delete; ///< Copy ctor
GctUnpackCollections& operator=(const GctUnpackCollections&) = delete; ///< Assignment op

/// Destructor - the last action of this object is to put the gct collections into the event provided on construction.
Expand Down
1 change: 0 additions & 1 deletion EventFilter/L1TXRawToDigi/interface/UCTAMCRawData.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ class UCTAMCRawData {
UCTAMCRawData(const UCTAMCRawData &) = delete;
const UCTAMCRawData &operator=(const UCTAMCRawData &i) = delete;


virtual ~UCTAMCRawData() { ; }

// Access functions for convenience
Expand Down
2 changes: 1 addition & 1 deletion EventFilter/RctRawToDigi/src/RctUnpackCollections.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class RctUnpackCollections {
RctUnpackCollections(edm::Event& event);

/// deliberately not implemented!
RctUnpackCollections(const RctUnpackCollections&) = delete; ///< Copy ctor
RctUnpackCollections(const RctUnpackCollections&) = delete; ///< Copy ctor
RctUnpackCollections& operator=(const RctUnpackCollections&) = delete; ///< Assignment op

/// Destructor - the last action of this object is to put the rct collections into the event provided on construction.
Expand Down

0 comments on commit 77f04ba

Please sign in to comment.