Skip to content

Commit

Permalink
Unneeded comments removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Katerina Kostova committed Jul 31, 2024
1 parent 2cdac5f commit 51e513f
Showing 1 changed file with 1 addition and 41 deletions.
42 changes: 1 addition & 41 deletions k4GaudiPandora/include/CalorimeterHitType.h
Original file line number Diff line number Diff line change
Expand Up @@ -125,44 +125,4 @@ CHT::CaloID caloIDFromString(const std::string& name);
is found, CHT::em is returned.*/
CHT::CaloType caloTypeFromString(const std::string& name);

#endif

// int main(){

// CHT ct( CHT::em , CHT::ecal , CHT::plug , 12 ) ;

// std::cout << ct << std::endl ;

// std::cout << " caloType : " << ct.toInt() << std::endl ;

// std::cout << " caloID " << ct.caloID()
// << " is bcal " << ct.is( CHT::bcal )
// << " is muon " << ct.is( CHT::muon )
// << " layer " << ct.layer()
// << std::endl ;

// int i = CHT( CHT::muon , CHT::ecal , CHT::endcap , 123 ) ;

// std::cout << " type i : " << i << std::endl ;

// std::cout << " layer from int : " << CHT(i).layer() << std::endl ;

// CHT it(i) ;

// std::cout << " caloID " << it.caloID()
// << " is bcal " << it.is( CHT::bcal )
// << " is muon " << it.is( CHT::muon )
// << " is endcap " << it.is( CHT::endcap )
// << " layer " << it.layer()
// << " layout " << it.layout()
// << std::endl ;

// std::cout << it << std::endl ;

// CHT ct2 = 12345678 ;

// std::cout << ct2 << std::endl ;

// std::cout << " sizeof( CHT ) : " << sizeof( it ) << std::endl ;

// }
#endif

0 comments on commit 51e513f

Please sign in to comment.