Magento – how to check if a product is a simple product and not a child of a configurable product

configurable-productmagento-1.8simple-product

I know how to check if a product is configurable or not. But anyone tell me how to check if a product is pure simple product that means I want to check those products which I created as Attribute set= 'Default' and Product type= 'Simple Product' not attribute set= 'Default' and Product type= 'configurable Product'.

Best Answer

Simply I did: (Magento 1.8)

if($_product->isConfigurable()) {
   echo 'config'; 
}